* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #f6f6f6;
    font-family: 'Afacad Flux', sans-serif;
}

/* ANIMATION */
.fade-in {
    animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* NAVBAR */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    background: #d63a33;
    padding: 20px 50px;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 12px 50px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.logo {
    height: 80px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.08);
}

.navbar.scrolled .logo {
    height: 60px;
}

nav {
    display: flex;
    margin-left: 30px;
}

.review-link {
    margin-left: auto;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 18px;
    position: relative;
    transition: 0.3s;
}

nav a:hover {
    color: #ffe0c2;
}

nav a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: #ffe0c2;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

nav a:hover::after,
nav .active::after {
    width: 100%;
}

.review-btn {
    background: white;
    color: #d63a33;
    border: none;
    padding: 8px 18px;
    border-radius: 20px;
    cursor: pointer;
    transition: 0.3s;
}

.review-btn:hover {
    box-shadow: 0 4px 15px rgba(255, 224, 194, 0.6),
                0 0 10px rgba(255, 224, 194, 0.8);
}

/* HERO */
.hero {
    height: 720px;
    background: url('../GRAPHIC/ENVIRONMENT/hero-100.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: flex-start;
    padding: 80px 60px;
}

.hero-content h1 {
    font-family: "acumin-variable", sans-serif;
    font-weight: 900;
    font-size: 100px;
    line-height: 0.95;
    color: #d63a33;
}

.hero-content p {
    color: white;
    font-size: 24px;
    margin-top: 25px;
    line-height: 1.4;
}

.hero-btn {
    display: inline-block;
    margin-top: 20px;
    background: #d63a33;
    color: white;
    text-decoration: none;
    padding: 10px 24px;
    border-radius: 20px;
    font-weight: 600;
}

/* ABOUT */
.about-section {
    background: url('../GRAPHIC/ENVIRONMENT/IMG_6660.jpg') center/cover no-repeat;
    min-height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 10%;
}

.about-overlay {
    background: rgba(255,255,255,0.82);
    width: 100%;
    max-width: 1200px;
    padding: 80px;
    text-align: center;
}

.about-overlay h2 {
    font-family: "acumin-variable", sans-serif;
    font-weight: 900;
    font-size: 72px;
    color: #1f1620;
    margin-bottom: 30px;
}

.about-overlay p {
    font-size: 22px;
    line-height: 1.8;
    color: #222;
    max-width: 1000px;
    margin: auto;
}

.dark-btn {
    display: inline-block;
    margin-top: 35px;
    background: #1f1620;
    color: white;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 25px;
}

/* GALLERY */
.gallery-section {
    padding: 90px 50px;
    text-align: center;
}

.gallery-section h2 {
    font-family: "acumin-variable", sans-serif;
    font-weight: 900;
    font-size: 72px;
    color: #e58b3b;
    margin-bottom: 50px;
}

.gallery-preview {
    display: flex;
    justify-content: center;
    gap: 35px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.gallery-preview img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    transition: 0.3s;
}

.gallery-preview img:hover {
    transform: scale(1.05);
}

.orange-btn {
    display: inline-block;
    background: #e58b3b;
    color: white;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 25px;
}

/* MENU */
.menu-section {
    background: #d63a33;
    padding: 90px 50px;
    text-align: center;
}

.menu-section h2 {
    font-family: "acumin-variable", sans-serif;
    font-weight: 900;
    font-size: 72px;
    color: white;
    margin-bottom: 50px;
}

.menu-grid {
    display: flex;
    justify-content: center;
    gap: 45px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.menu-card {
    background: white;
    width: 300px;
    overflow: hidden;
    transition: 0.3s;
}

.menu-card:hover {
    transform: translateY(-10px);
}

.menu-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.menu-card p {
    padding: 18px;
    color: #d63a33;
    font-size: 28px;
    font-weight: 600;
}

.white-btn {
    display: inline-block;
    background: white;
    color: #d63a33;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 25px;
    font-weight: 600;
}

/* LOCATION */
.location-home {
    display: flex;
    min-height: 600px;
    flex-wrap: wrap;
}

.location-left {
    flex: 1;
    background: #e58b3b;
    padding: 80px;
}

.location-left h2 {
    font-family: "acumin-variable", sans-serif;
    font-weight: 900;
    font-size: 70px;
    color: white;
    line-height: 1.05;
    margin-bottom: 40px;
}

.address-box {
    background: white;
    padding: 35px;
    border-radius: 25px;
    font-size: 20px;
    color: #e58b3b;
    line-height: 1.6;
}

.location-buttons {
    display: flex;
    gap: 20px;
    margin-top: 35px;
}

.white-btn-small {
    background: white;
    color: #e58b3b;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 20px;
    font-weight: 600;
}

.location-map {
    flex: 1;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* FOOTER */
.footer {
    background: linear-gradient(to right, #2b1e1e, #1a1414);
    color: white;
    text-align: center;
    padding: 50px 20px;
}

.footer-title {
    font-size: 22px;
    margin-bottom: 15px;
}

.footer-nav {
    margin-bottom: 25px;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    margin: 0 12px;
    font-size: 14px;
    opacity: 0.9;
    transition: 0.3s;
}

.footer-nav a:hover {
    opacity: 0.6;
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 20px;
}

.footer-socials img {
    width: 35px;
    transition: 0.3s;
}

.footer-socials img:hover {
    transform: translateY(-5px) scale(1.05);
    opacity: 0.7;
}

.footer-copy {
    font-size: 12px;
    opacity: 0.7;
}

/* BACK TO TOP */
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #d63a33;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: none;
    z-index: 999;
}

/* HAMBURGER */
.menu-toggle {
    display: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
    margin-left: auto;
}

/* MOBILE */
@media (max-width: 768px) {

    .menu-toggle {
        display: block;
    }

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #d63a33;
        flex-direction: column;
        align-items: center;
        max-height: 0;
        overflow: hidden;
        transition: 0.3s;
        margin-left: 0;
    }

    nav.active {
        max-height: 300px;
    }

    nav a {
        margin: 15px 0;
    }

    .review-link {
        display: none;
    }

    .hero-content h1,
    .about-overlay h2,
    .gallery-section h2,
    .menu-section h2,
    .location-left h2 {
        font-size: 42px;
    }

    .hero {
        height: auto;
        padding: 50px 20px;
    }

    .hero-content p,
    .about-overlay p {
        font-size: 16px;
    }

    .location-left {
        padding: 40px 20px;
    }

    .address-box {
        font-size: 16px;
    }

    .location-buttons {
        flex-direction: column;
    }

    .footer-nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
}