body {
    margin: 0;
    background: #F5EFEA;
    font-family: 'Inter', sans-serif;
    color: #2C1B1B;
}

h1,
h2 {
    font-family: 'Playfair Display', serif;
    margin: 0 0 16px;
}

.btn {
    background: #6B0F1A;
    color: #F5EFEA;
    border: none;
    padding: 14px 32px;
    font-size: 0.9rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:hover {
    background: #4D0B14;
    transform: translateY(-2px);
}


.navbar {
    background: #F5EFEA;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid #E2D7D2;
}

.navbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.nav-links {
    display: none;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: #2C1B1B;
    font-weight: 500;
    position: relative;
    transition: 0.3s ease;
}


.nav-links a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background: #6B0F1A;
    transition: 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}



.nav-icons {
    display: flex;
    gap: 16px;
}

.icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    transition: transform 0.3s ease;
}

.icon-btn:hover {
    transform: scale(1.15);
}

.nav-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    display: block;
}

.hamburger {
    display: block;
}

.hero {
    margin-top: 80px;
    height: 85vh;

    background-image: url("images/hero-image.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #F5EFEA;
    padding: 24px;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(45, 15, 20, 0.55);
}

.hero-content {
    position: relative;
    z-index: 1;
}

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


.hero p {
    margin-bottom: 24px;
}



.fragrance-section {
    padding: 64px 24px;
}

.fragrance-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

.fragrance-card {
    background: #FFFFFF;
    padding: 32px;
    text-align: left;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
}

.fragrance-card:hover {
    transform: translateY(-6px);
}

.fragrance-card img {
    width: 100%;
    max-width: 240px;
    height: auto;
    margin: 0 auto 24px;
    display: block;
}

.fragrance-card p {
    font-size: 0.95rem;
    margin-bottom: 24px;
    line-height: 1.5;
}


@media(min-width:900px) {

    .nav-links {
        display: flex;
    }

    .hamburger {
        display: none;
    }

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

    .fragrance-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 64px;
        padding: 0 120px;
    }

    .fragrance-card {
        text-align: left;
    }

}