:root {
    --primary-color: #2C2C2C;
    --secondary-color: #8B4513;
    --accent-color: #141414;
    --text-color: #2A2A2A;
    --light-bg: #F8F4F1;
    --white: #FFFFFF;
    --wood-texture: url('https://images.unsplash.com/photo-1541233349642-6e425fe6190e?ixlib=rb-1.2.1&auto=format&fit=crop&w=2000&q=80');
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    font-family: "DM Sans", serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-bg);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #141414;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 0.8rem 2rem;
    background: #141414;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #fcb804;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    transition: var(--transition);
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
}

.logo:hover::after {
    width: 100%;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: #fcb804;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition);
}

.nav-links a::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--accent-color);
    visibility: hidden;
    transform: scaleX(0);
    transition: all 0.3s ease-in-out;
}

.nav-links a:hover::before {
    visibility: visible;
    transform: scaleX(1);
}

.nav-links a:hover {
    color: var(--accent-color);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1000;
}

.bar {
    width: 30px;
    height: 2px;
    background-color: var(--white);
    transition: var(--transition);
}

.menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                url(images/bg03.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--wood-texture);
    opacity: 0.1;
    pointer-events: none;
}

.hero-content {
    max-width: 900px;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1rem;
    animation: fadeInDown 1.2s ease;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    letter-spacing: 3px;
}

.hero p {
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 1.2s ease 0.5s both;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
#home {
    display: flex;
    justify-content: center;
    align-items: center; 
    height: 100vh; 
  }
  
  .hero-content img {
    max-width: 60%; 
    height: auto; 
  }

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: #fcb804;
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
    transition: var(--transition);
    animation: fadeInUp 1.2s ease 1s both;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background-color: #fcb804;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.about {
    padding: 8rem 2rem;
    background: var(--light-bg);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--wood-texture);
    opacity: 0.05;
    pointer-events: none;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.about h2 {
    text-align: center;
    color: #141414;
    margin-bottom: 4rem;
    font-size: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.about h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent-color);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    font-size: 1.1rem;
    position: relative;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-image {
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: 15px;
    bottom: 15px;
    border: 3px solid var(--accent-color);
    border-radius: 10px;
    z-index: 0;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.about-image:hover img {
    transform: scale(1.03) translateY(-10px);
}

.menu {
    padding: 8rem 2rem;
    background: var(--white);
    position: relative;
}

.menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--wood-texture);
    opacity: 0.05;
    pointer-events: none;
}

.menu h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 4rem;
    font-size: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.menu h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent-color);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.menu-item {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: var(--transition);
}

.menu-item:hover::before {
    opacity: 1;
}

.menu-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.menu-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: var(--transition);
}

.menu-item:hover img {
    transform: scale(1.1);
}

.menu-item-content {
    padding: 1.5rem;
    position: relative;
    background: var(--white);
}

.menu-item h3 {
    color: #141414;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.menu-item h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
}

.menu-item:hover h3::after {
    width: 60px;
}

.menu-item p {
    color: #141414;
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.6;
}

.menu-item .price {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 25px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: var(--transition);
}

.menu-item:hover .price {
    transform: scale(1.1);
    background: #141414;
}

/* Features Section */
.features {
    padding: 8rem 2rem;
    background: var(--light-bg);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--wood-texture);
    opacity: 0.05;
    pointer-events: none;
}

.features h2 {
    text-align: center;
    color: #141414;
    margin-bottom: 4rem;
    font-size: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.features h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-item {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--accent-color);
    transform: scaleX(0);
    transition: var(--transition);
}

.feature-item:hover::before {
    transform: scaleX(1);
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: var(--transition);
}

.feature-item:hover .feature-icon {
    transform: scale(1.2) rotate(10deg);
}

.feature-item h3 {
    color: #141414;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.feature-item p {
    color: #141414;
    font-size: 1rem;
    line-height: 1.6;
}

/* Location Section */
.location {
    padding: 8rem 2rem;
    background: var(--white);
    position: relative;
}

.location::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--wood-texture);
    opacity: 0.05;
    pointer-events: none;
}

.location h2 {
    text-align: center;
    color: #141414;
    margin-bottom: 4rem;
    font-size: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.location h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent-color);
}

.location-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
}

.location-info {
    padding: 2.5rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    position: relative;
}

.location-info::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: 15px;
    bottom: 15px;
    border: 3px solid var(--accent-color);
    border-radius: 15px;
    z-index: 0;
}

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

.location-info h3 {
    color: #141414;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.location-info p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.hours {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--light-bg);
}

.hours h4 {
    color: #141414;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.hours p {
    font-size: 1.1rem;
}

.location-map {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    position: relative;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    min-height: 450px;
    border: none;
}

/* Footer */
.footer {
    background-color: #141414;
    color: var(--white);
    padding: 6rem 2rem 2rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--wood-texture);
    opacity: 0.05;
    pointer-events: none;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    position: relative;
}

.footer-info h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.footer-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
}

.footer-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.button-container {
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
    align-items: center; 
}

.ifood-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color:#af1620;
    color: white;
    padding: 16px 32px;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.5rem;
    transition: background-color 0.3s;
    box-shadow: 0 4px 6px rgba(234, 29, 44, 0.2);
}


.ifood-button:hover {
    background-color: #8E1600;
}

.ifood-logo {
    height: 24px;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
}

.footer-social i{
    font-size: 2.4rem;
    color: aliceblue;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: #141414;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 2rem;
        transition: var(--transition);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.2rem;
        margin: 1rem 0;
    }

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

    .hero p {
        font-size: 1.3rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .location-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-info h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .feature-item {
        padding: 2rem 1.5rem;
    }

    .menu-item {
        margin: 0 1rem;
    }
}

.animate {
    animation: fadeIn 1s ease forwards;
}

.menu-item.animate {
    animation: fadeInUp 0.8s ease forwards;
}

.feature-item.animate {
    animation: fadeInUp 0.8s ease forwards;
}

img.loaded {
    animation: fadeIn 0.5s ease forwards;
}