@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Lato:wght@300;400;700&display=swap');

:root {
    --primary: #E91E63;
    --secondary: #F8F9FA;
    --accent: #1A1A1A;
    --text: #333;
    --light-text: #666;
    --bg: #FFFFFF;
    --transition: all 0.4s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--text);
    line-height: 1.7;
    background-color: var(--bg);
}

h1,
h2,
h3,
.brand {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
}

/* Header & Nav */
header {
    background: #fff;
    padding: 1.5rem 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.brand {
    font-size: 2.2rem;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: 1px;
}

nav ul {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

nav a {
    text-decoration: none;
    color: var(--text);
    font-weight: 400;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

nav a:hover,
nav a.active {
    color: var(--primary);
}

/* Hero Section */
.hero {
    height: 70vh;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../images/hero.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.btn {
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
}

.btn-primary:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

/* Sections */
section {
    padding: 6rem 10%;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

/* Grid Layout */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.card {
    text-align: center;
    transition: var(--transition);
}

.card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border-radius: 5px;
}

.card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

/* Flex Stacking for Mobile */
.flex-responsive {
    display: flex;
    gap: 4rem;
    align-items: center;
}

/* Footer */
footer {
    background: var(--secondary);
    padding: 5rem 10% 2rem;
    text-align: center;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    text-align: left;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1005;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--accent);
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* Responsive */
@media (max-width: 768px) {
    header {
        padding: 1.5rem 5%;
    }

    .menu-toggle {
        display: flex;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: #fff;
        padding: 7rem 10%;
        transition: 0.4s cubic-bezier(0.19, 1, 0.22, 1);
        z-index: 1000;
        box-shadow: -10px 0 20px rgba(0, 0, 0, 0.05);
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    nav a {
        font-size: 1.8rem;
    }

    .flex-responsive {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    section {
        padding: 4rem 5%;
    }

    .card img {
        height: 280px;
    }

    header>.btn-primary {
        display: none;
        /* Hide on mobile to prioritize menu */
    }
}