/* Font Definitions */
@font-face {
    font-family: 'Monument';
    src: url('assets/fonts/GTFAdieuTRIAL-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Monument';
    src: url('assets/fonts/GTFAdieuTRIAL-Bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Satoshi';
    src: url('assets/fonts/Satoshi-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Satoshi';
    src: url('assets/fonts/Satoshi-Bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

/* Variables */
:root {
    --primary: #ACF49F;
    --bg: #FFFFFF;
    --text: #000000;
    --gray-light: #f9f9f9;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Satoshi', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: 'Monument', sans-serif;
    text-transform: uppercase;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn-primary {
    background-color: var(--text);
    color: var(--bg);
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid var(--text);
    white-space: nowrap;
}

.btn-primary:hover {
    background-color: var(--primary);
    color: var(--text);
    border-color: var(--text);
    transform: translateY(-2px);
    box-shadow: 4px 4px 0px rgba(0, 0, 0, 1);
}

.btn-store {
    background: var(--text);
    color: var(--bg);
    border: 2px solid var(--text);
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    white-space: nowrap;
}

.btn-store span {
    font-size: 1.2rem;
}

.btn-store:hover {
    background: var(--primary);
    color: var(--text);
    box-shadow: 4px 4px 0px rgba(0, 0, 0, 1);
    transform: translateY(-2px);
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid var(--text);
}

.logo img {
    height: 30px;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.nav-links a:not(.btn-primary):hover {
    color: var(--primary);
    background: var(--text);
    padding: 2px 5px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 140px 8% 60px;
    background: var(--bg);
}

.hero-content {
    flex: 1;
    max-width: 600px;
    padding-right: 50px;
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #444;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.hero-image img {
    max-height: 700px;
    border: 2px solid var(--text);
    box-shadow: 10px 10px 0px rgba(0, 0, 0, 1);
    transition: transform 0.5s ease;
}

.hero-image:hover img {
    transform: translate(-5px, -5px);
    box-shadow: 15px 15px 0px var(--primary);
}

/* Intro Section */
.intro-section {
    padding: 80px 0;
    background-color: var(--gray-light);
}

.intro-text {
    font-size: 1.2rem;
    color: #444;
    max-width: 800px;
    margin: 0 auto 20px;
    text-align: center;
    line-height: 1.8;
}

/* Showcase Section */
.showcase {
    padding: 100px 0;
    background-color: var(--bg);
}

.showcase-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 120px;
    gap: 60px;
}

.showcase-row.reverse {
    flex-direction: row-reverse;
}

.showcase-text {
    flex: 1;
}

.showcase-text h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.showcase-text p {
    font-size: 1.2rem;
    color: #444;
    max-width: 500px;
    margin-bottom: 15px;
}

.showcase-text .cta-text {
    font-weight: bold;
    color: var(--text);
    margin-top: 20px;
}

.showcase-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.showcase-image img {
    max-height: 600px;
    border: 2px solid var(--text);
    box-shadow: 8px 8px 0px var(--primary);
    transition: transform 0.3s ease;
}

.showcase-image:hover img {
    transform: translate(-2px, -2px);
    box-shadow: 12px 12px 0px var(--text);
}

/* Cairo Section */
.cairo-section {
    padding: 100px 0;
    background-color: var(--gray-light);
    text-align: center;
}

.cairo-section h2 {
    font-size: 3rem;
    margin-bottom: 30px;
}

.cairo-section p {
    font-size: 1.2rem;
    color: #444;
    max-width: 800px;
    margin: 0 auto 20px;
    line-height: 1.8;
}

/* Footer */
.footer {
    background-color: var(--text);
    color: var(--bg);
    padding: 80px 0 40px;
    text-align: center;
}

.footer h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.app-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.footer-contact {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    font-size: 1rem;
}

.footer-contact p {
    margin: 0;
    color: var(--bg);
}

.footer-contact a {
    color: var(--primary);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--bg);
}

.footer-contact span {
    color: var(--bg);
    opacity: 0.7;
}

.footer-bottom {
    margin-top: 40px;
    opacity: 0.6;
    font-size: 0.9rem;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-1-5 {
    animation-delay: 0.3s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 968px) {
    .hero {
        flex-direction: column;
        padding-top: 100px;
        text-align: center;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 60px;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .showcase-row {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .showcase-row.reverse {
        flex-direction: column;
    }

    .showcase-text p {
        margin: 0 auto;
    }

    .nav-links {
        display: none;
    }

    .footer-contact {
        font-size: 0.9rem;
        flex-direction: column;
        gap: 5px;
    }

    .footer-contact span {
        display: none;
    }
}