* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f3e5d2;
    overflow-x: hidden;
    position: relative;
    z-index: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    background-color: #f3e5d2;
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
}

.nav-link {
    font-family: 'Pacifico', cursive;
    font-size: 24px;
    color: #9d6c4f;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    transform: translateY(-2px);
    color: #7a5440;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #daac65, #9d6c4f);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #daac65 0%, #c49955 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="80" cy="80" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="40" cy="60" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-family: 'Pacifico', cursive;
    font-size: 4.5rem;
    color: #9d6c4f;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.4rem;
    color: #f3e5d2;
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #9d6c4f 0%, #7a5440 100%);
    color: #f3e5d2;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(157, 108, 79, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(157, 108, 79, 0.4);
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.hero-image img {
    width: 100%;
    max-width: none;
    height: auto;
    border-radius: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}


.hero-image:hover img {
    transform: perspective(1000px) rotateY(0deg) scale(1.05);
}


.about {
    background: linear-gradient(135deg, #daac65 0%, #c49955 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="80" cy="80" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="40" cy="60" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.about-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transform: perspective(1000px) rotateY(5deg);
    transition: transform 0.3s ease;
}

.about-image:hover img {
    transform: perspective(1000px) rotateY(0deg) scale(1.05);
}

.about-text h1 {
    font-family: 'Pacifico', cursive;
    font-size: 4.5rem;
    color: #9d6c4f;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    line-height: 1.2;
}

.about-text p {
    font-size: 1.4rem;
    color: #f3e5d2;
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 40px;
    line-height: 1.8;
    text-align: justify;
}

.footer {
    background: #F3E5D2;
    padding: 40px 0;
    position: relative;
}

.footer-content {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 40px;
    color: #9D6C4F;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: 500;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(243, 229, 210, 0.1);
    border-radius: 50%;
    color: #9D6C4F;
    text-decoration: none;
    font-size: 1.4rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-link:hover {
    background: rgba(243, 229, 210, 0.2);
    transform: translateY(-3px);
    border-color: #daac65;
}

.floating-bread {
    position: absolute;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.floating-bread:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-bread:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-bread:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-text h1,
.about-text p {
    animation: fadeInUp 0.8s ease forwards;
}

.about-text p {
    animation-delay: 0.2s;
}

html {
    scroll-behavior: smooth;
}

@media (max-width: 768px) {
    .nav-container {
        gap: 30px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-link {
        font-size: 18px;
    }

    .about {
        padding: 100px 0 60px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .about-text h1 {
        font-size: 3rem;
    }

    .about-text p {
        font-size: 1.1rem;
        text-align: center;
    }

}

@media (max-width: 480px) {
    .about-text h1 {
        font-size: 2.5rem;
    }

    .nav-container {
        gap: 20px;
    }

    .nav-link {
        font-size: 16px;
    }

}


.contact-section {
    background: linear-gradient(135deg, #daac65 0%, #c49955 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="80" cy="80" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="40" cy="60" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.contact-info {
    text-align: left;
}

.contact-info h1 {
    font-family: 'Pacifico', cursive;
    font-size: 4.5rem;
    color: #9d6c4f;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    line-height: 1.2;
}

.contact-info p {
    font-size: 1.3rem;
    color: #f3e5d2;
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 40px;
    line-height: 1.6;
}

.qr-code {
    width: 280px;
    height: 280px;
    margin-bottom: 30px;
}

.qr-code img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.phone-mockup {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 30px;
    /* box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3); */
    /* transform: perspective(1000px) rotateY(-10deg); */
    transition: transform 0.3s ease;
}

.phone-mockup:hover img {
    transform: perspective(1000px) rotateY(0deg) scale(1.05);
}


.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(157, 108, 79, 0.1);
    border-radius: 50%;
    color: #9D6C4F;
    text-decoration: none;
    font-size: 1.4rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-link:hover {
    background: rgba(157, 108, 79, 0.2);
    transform: translateY(-3px);
    border-color: #daac65;
}


@media (max-width: 768px) {
    .nav-container {
        gap: 30px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-link {
        font-size: 18px;
    }

    .contact-section {
        padding: 100px 0 60px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .contact-info h1 {
        font-size: 3rem;
    }

    .contact-info p {
        font-size: 1.1rem;
    }

    .qr-code {
        width: 250px;
        height: 250px;
        margin: 0 auto 30px;
    }
}

@media (max-width: 480px) {
    .contact-info h1 {
        font-size: 2.5rem;
        text-align: center;
    }

    .nav-container {
        gap: 20px;
    }

    .nav-link {
        font-size: 16px;
    }

    .qr-code {
        width: 220px;
        height: 220px;
    }
}

html {
    scroll-behavior: smooth;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-info h1,
.contact-info p,
.qr-code {
    animation: fadeInUp 0.8s ease forwards;
}

.contact-info p {
    animation-delay: 0.2s;
}

.qr-code {
    animation-delay: 0.4s;
}


.menu-section {
    background: linear-gradient(135deg, #daac65 0%, #c49955 100%);
    min-height: 100vh;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.menu-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="80" cy="80" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="40" cy="60" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.menu-grid {
    display: grid;
    gap: 80px;
    position: relative;
    z-index: 2;
}

.menu-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    /* background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease; */
}

.menu-item:hover {
    transform: translateY(-10px);
}

.menu-item:nth-child(even) {
    direction: rtl;
}

.menu-item:nth-child(even) .menu-content {
    direction: ltr;
}

.menu-content h2 {
    font-family: 'Pacifico', cursive;
    font-size: 3.5rem;
    color: #F3E5D2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    line-height: 1.2;
}

.menu-content p {
    font-size: 1.2rem;
    color: #f3e5d2;
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 30px;
    line-height: 1.6;
}

.order-button {
    display: inline-block;
    background: linear-gradient(135deg, #9d6c4f 0%, #7a5440 100%);
    color: #f3e5d2;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(157, 108, 79, 0.3);
    position: relative;
    overflow: hidden;
}

.order-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.order-button:hover::before {
    left: 100%;
}

.order-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(157, 108, 79, 0.4);
}

.menu-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu-image img {
    width: 100%;
    max-width: 400px;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.menu-image:hover img {
    transform: scale(1.05);
}


@media (max-width: 768px) {
    .nav-container {
        gap: 30px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-link {
        font-size: 18px;
    }

    .menu-section {
        padding: 100px 0 60px;
    }

    .menu-grid {
        gap: 60px;
    }

    .menu-item {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px;
        text-align: center;
    }

    .menu-item:nth-child(even) {
        direction: ltr;
    }

    .menu-content h2 {
        font-size: 2.5rem;
    }

    .menu-content p {
        font-size: 1rem;
    }

    .order-button {
        font-size: 1rem;
        padding: 12px 28px;
    }

    .contact-info {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .menu-content h2 {
        font-size: 2rem;
    }

    .nav-container {
        gap: 20px;
    }

    .nav-link {
        font-size: 16px;
    }

    .contact-item {
        font-size: 1rem;
    }

    .menu-item {
        padding: 20px;
    }
}

html {
    scroll-behavior: smooth;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu-item {
    animation: fadeInUp 0.8s ease forwards;
}

.menu-item:nth-child(2) {
    animation-delay: 0.2s;
}

.menu-item:nth-child(3) {
    animation-delay: 0.4s;
}
@media (max-width: 768px) {
   .footer {
       padding: 30px 0;
   }
   
   .footer-content {
       flex-direction: column;
       gap: 25px;
       justify-content: center;
       text-align: center;
   }
   
   .contact-item {
       font-size: 1.1rem;
       justify-content: center;
   }
   
   .social-link {
       width: 55px;
       height: 55px;
       font-size: 1.5rem;
       box-shadow: 0 4px 15px rgba(157, 108, 79, 0.15);
   }
   
   .social-link:hover {
       transform: translateY(-5px) scale(1.05);
       box-shadow: 0 8px 25px rgba(157, 108, 79, 0.25);
   }
}

@media (max-width: 480px) {
   .footer {
       padding: 25px 0;
   }
   
   .footer-content {
       gap: 20px;
       padding: 0 15px;
   }
   
   .contact-item {
       font-size: 1rem;
       gap: 8px;
   }
   
   .social-link {
       width: 50px;
       height: 50px;
       font-size: 1.3rem;
       background: linear-gradient(135deg, rgba(243, 229, 210, 0.15), rgba(218, 172, 101, 0.1));
       backdrop-filter: blur(10px);
       border: 1px solid rgba(157, 108, 79, 0.1);
   }
   
   .social-link:hover {
       background: linear-gradient(135deg, rgba(243, 229, 210, 0.25), rgba(218, 172, 101, 0.15));
       transform: translateY(-3px) scale(1.08);
       box-shadow: 0 6px 20px rgba(157, 108, 79, 0.2);
       border-color: rgba(218, 172, 101, 0.3);
   }
}

@media (max-width: 320px) {
   .footer-content {
       gap: 15px;
       padding: 0 10px;
   }
   
   .contact-item {
       font-size: 0.9rem;
       gap: 6px;
   }
   
   .social-link {
       width: 45px;
       height: 45px;
       font-size: 1.2rem;
   }
}
@media (max-width: 768px) {
   .hero {
       padding: 120px 0 80px;
       min-height: auto;
   }
   
   .hero-content {
       grid-template-columns: 1fr;
       gap: 50px;
       text-align: center;
   }
   
   .hero-text h1 {
       font-size: 3.2rem;
       margin-bottom: 25px;
   }
   
   .hero-text p {
       font-size: 1.2rem;
       line-height: 1.7;
       margin-bottom: 35px;
   }
   
   .cta-button {
       padding: 16px 35px;
       font-size: 1.2rem;
   }
   
   .hero-image {
       order: -1;
       max-width: 90%;
       margin: 0 auto;
   }
   
   .hero-image img {
       border-radius: 25px;
       box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
       min-height: 300px;
       object-fit: cover;
   }
}

@media (max-width: 480px) {
   .hero {
       padding: 100px 0 60px;
   }
   
   .hero-content {
       gap: 40px;
   }
   
   .hero-text h1 {
       font-size: 2.8rem;
       margin-bottom: 20px;
   }
   
   .hero-text p {
       font-size: 1.1rem;
       margin-bottom: 30px;
       padding: 0 10px;
   }
   
   .cta-button {
       padding: 14px 30px;
       font-size: 1.1rem;
   }
   
   .hero-image {
       max-width: 95%;
   }
   
   .hero-image img {
       border-radius: 20px;
       min-height: 280px;
       width: 100%;
       object-fit: cover;
   }
}

@media (max-width: 320px) {
   .hero-text h1 {
       font-size: 2.4rem;
   }
   
   .hero-text p {
       font-size: 1rem;
       padding: 0 5px;
   }
   
   .cta-button {
       padding: 12px 25px;
       font-size: 1rem;
   }
   
   .hero-image img {
       min-height: 250px;
       border-radius: 18px;
   }
}