/* ================= GLOBAL ================= */

body {
    margin: 0;
    background: #f7ecef;
    font-family: 'The Seasons', serif;
}

a {
    text-decoration: none;
    color: #000;
}


/* ================= TOPBAR ================= */

.topbar {
    background: #b88a8f;
    color: #000;
    text-align: center;
    font-size: 14px;
    padding: 8px 10px;
    letter-spacing: 0.5px;
}


/* ================= STICKY WRAP ================= */

.sticky-wrap {
    position: sticky;
    top: 0;
    z-index: 1000;
}


/* ================= HEADER ================= */

header {
    background: #f7ecef;
    padding: 55px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    top: 60px;
}


/* LEFT NAV */

.nav-left {
    display: flex;
    gap: 25px;
    padding-left: 130px;
}


/* LOGO CENTER */

.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.logo img {
    height: 100px;
    width: auto;
    display: block;
}


/* RIGHT ICONS */

.nav-right {
    display: flex;
    gap: 35px;
    padding-right: 130px;
}

.icon {
    width: 22px;
    height: 22px;
    fill: #000;
    cursor: pointer;
}


/* HAMBURGER */

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #000;
}


/* ================= MOBILE MENU ================= */

.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: #b88a8f;
    padding: 30px;
    transition: 0.4s;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-menu a {
    font-size: 20px;
}


/* ================= HERO SECTION ================= */

.hero {
    height: 100vh;
    background: url("images/hero2.png") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
}

.hero-content {
    position: relative;
    text-align: center;
    color: #fff;
    animation: fadeUp 1.2s ease;
}

.hero-content h1 {
    font-size: 52px;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 25px;
}

.hero-btn {
    padding: 14px 35px;
    background: #fff;
    color: #000;
    font-size: 14px;
    letter-spacing: 1px;
    transition: 0.3s;
}

.hero-btn:hover {
    background: #b88a8f;
    color: #fff;
}


/* ================= FOOTER ================= */

footer {
    background: #b88a8f;
    color: #fff;
    text-align: center;
    padding: 25px;
    margin-top: 60px;
}


/* ================= ANIMATION ================= */

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
    .topbar {
        font-size: 12px;
        padding: 6px 8px;
    }
    header {
        padding: 15px 20px;
        top: auto;
        position: relative;
    }
    .nav-left {
        display: none;
    }
    .nav-right {
        display: flex;
        justify-content: flex-end;
        padding-right: 0;
        gap: 20px;
    }
    .hamburger {
        display: flex;
    }
    .logo {
        position: static;
        transform: none;
        margin: auto;
    }
    .logo img {
        height: 60px;
        padding: 10px;
    }
    .hero {
        height: 90vh;
    }
    .hero-content h1 {
        font-size: 34px;
    }
    .hero-content p {
        font-size: 15px;
    }
}