body {
    background-color: #f7f5f2;
    color: #1a1a1a;
    font-family: "inter", sans-serif;

    margin: 0;
}

h1 {
    font-size: 64px;
}

p {
    font-size: 18px;
}

button {
    padding: 14px 24px;
    border: 1px solid #1a1a1a;
    background-color: transparent;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 30px 60px;

    border-bottom: 1px solid #d8d4cf;
}.nav-left,
.nav-right {
    display: flex;
    gap: 30px;
}.navbar a {
    color: #1a1a1a;
    text-decoration: none;

    font-size: 12px;
    font-weight: 400;

    text-transform: uppercase;
    letter-spacing: 1.5px;
}.logo img {
    width: 180px;
    height: auto;
    display: block;
}.hero {
    height: 75vh;

    display: flex;
    justify-content: center;
    align-items: center;

    text-align: center;

    background-image: url("assets/images/hero.jpg");
    background-size: cover;
    background-position: center 25%;

    color: white;

    position: relative;
}
.hero::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background-color: rgba(0, 0, 0, 0.35);
}.hero-content {
    max-width: 900px;

    position: relative;
    z-index: 1;
}.hero-label {
    font-size: 12px;
    letter-spacing: 3px;
    margin-bottom: 25px;
}.hero h1 {
    font-family: "Cormorant Garamond", serif;

    font-size: 96px;
    font-weight: 400;
    line-height: 0.9;

    margin: 0;
}.hero-description {
    font-size: 16px;

    margin-top: 30px;
    margin-bottom: 40px;
}.hero-button {
    display: inline-block;

    color: white;
    text-decoration: none;

    border-bottom: 1px solid white;

    padding-bottom: 5px;

    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}.categories {
    padding: 140px 60px 160px;

    text-align: center;
}

.section-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.categories h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: 64px;
    font-weight: 400;

    margin-top: 15px;
    margin-bottom: 60px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 28px;

    max-width: 1500px;
    margin: 0 auto;
}

.category-image {
    height: 520px;

    overflow: hidden;
}.category-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;
    transition: transform 0.8s ease;
}.category-card:hover .category-image img {
    transform: scale(1.04);
}

.category-card h3 {
    font-family: "Cormorant Garamond", serif;

    font-size: 36px;
    font-weight: 400;

    margin: 24px 0 8px;
}

.category-card a {
    color: #1a1a1a;
    text-decoration: none;

    font-size: 10px;
    font-weight: 500;

    text-transform: uppercase;
    letter-spacing: 1.8px;

    border-bottom: 1px solid #1a1a1a;

    padding-bottom: 4px;
}.bridal-card img {
    object-position: center 45%;
}

.couture-card img {
    object-position: center 35%;
}

.rental-card img {
    object-position: center 25%;
}.menu-toggle {
    display: none;
}

.mobile-menu {
    display: none;
}body.menu-open {
    overflow: hidden;
}
@media (max-width: 1100px) and (min-width: 769px) {

    .navbar {
        padding: 24px 30px;
    }

    .nav-left,
    .nav-right {
        gap: 18px;
    }

    .navbar a {
        font-size: 11px;
        letter-spacing: 1px;
    }

    .logo img {
        width: 125px;
    }


    .hero {
        height: 72vh;
    }

    .hero-content {
        max-width: 760px;
        padding: 0 30px;
    }

    .hero h1 {
        font-size: 76px;
    }

    .hero-description {
        font-size: 15px;
    }


    .categories {
        padding: 110px 35px 130px;
    }

    .categories h2 {
        font-size: 58px;
    }

    .category-grid {
        gap: 18px;
    }

    .category-image {
        height: 430px;
    }

}
@media (max-width: 768px) {

    .navbar {
        padding: 20px;
        justify-content: center;
    }

    .nav-left,
    .nav-right {
        display: none;
    }

    .logo img {
        width: 115px;
    }    .hero {
        height: 78vh;
        background-position: center top;
    }

    .hero-content {
        max-width: 100%;
        padding: 0 24px;
    }

    .hero h1 {
        font-size: 54px;
        line-height: 0.95;
    }

    .hero-label {
        font-size: 10px;
        letter-spacing: 2px;
        margin-bottom: 20px;
    }

    .hero-description {
        font-size: 14px;
        line-height: 1.5;

        margin-top: 24px;
        margin-bottom: 30px;
    }

    .hero-button {
        font-size: 10px;
        letter-spacing: 1.5px;
    }
        .categories {
        padding: 90px 20px 110px;
    }

    .categories h2 {
        font-size: 48px;

        margin-bottom: 50px;
    }

    .category-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .category-image {
        height: auto;
        aspect-ratio: 4 / 5;
    }

    .category-card h3 {
        font-size: 34px;
        margin-top: 18px;
    }    .navbar {
        position: relative;
    }

    .menu-toggle {
        display: flex;

        flex-direction: column;
        gap: 5px;

        position: absolute;
        left: 22px;

        background: none;
        border: none;

        padding: 8px;

        cursor: pointer;
    }

    .menu-toggle span {
        width: 22px;
        height: 1px;

        background-color: #1a1a1a;

        display: block;
    }    .mobile-menu {
        display: flex;

        position: fixed;
        top: 0;
        left: 0;

        width: 100%;
        height: 100vh;

        background-color: #f7f5f2;

        z-index: 1000;

        justify-content: center;
        align-items: center;

        transform: translateX(-100%);

        transition: transform 0.5s ease;
        overflow-y: auto;
    }

    .mobile-menu.open {
        transform: translateX(0);
    }    .mobile-menu-links {
        display: flex;
        flex-direction: column;

        text-align: center;

        gap: 28px;
    }

    .mobile-menu-links a {
        color: #1a1a1a;
        text-decoration: none;

        font-family: "Cormorant Garamond", serif;

        font-size: 38px;
        font-weight: 400;
    }    .menu-close {
        position: absolute;

        top: 25px;
        right: 25px;

        background: none;
        border: none;

        color: #1a1a1a;

        font-size: 32px;
        font-weight: 300;

        cursor: pointer;
    }

}