/* Font Face Declarations */
@font-face {
    font-family: 'Alex Brush';
    src: url('fonts/alex-brush/AlexBrush-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Petit Formal Script';
    src: url('fonts/petit-formal-script/petit-formal-script-v1.1/PetitFormalScript-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #1a3d0e;
    --secondary-green: #2d5a1a;
    --light-green: #4a7c2a;
    --accent-green: #6b9a4a;
    --cream: #f5f5e8;
    --brown: #6b4423;
    --text-dark: #2c2c2c;
    --text-light: #666;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background-color: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    font-size: 18px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
    letter-spacing: 1px;
}

.logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-green);
    transition: all 0.3s;
}

.nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: var(--white);
    flex-direction: column;
    padding: 2rem 0;
    transition: left 0.3s;
    list-style: none;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}

.nav-menu.active {
    left: 0;
}

.nav-menu li {
    margin: 1rem 0;
}

.nav-menu a {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s;
    border-left: 3px solid transparent;
}

.nav-menu a:hover {
    color: var(--primary-green);
    border-left-color: var(--primary-green);
    background: rgba(45, 80, 22, 0.05);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 70px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    text-align: center;
    color: var(--white);
    padding: 2rem 1.2rem;
    z-index: 1;
    max-width: 90%;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 20px;
}

.hero-title {
    font-family: 'Alex Brush', cursive;
    font-size: 4.5rem;
    font-weight: normal;
    margin-bottom: 0.7rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
}

.hero-title .glow-text {
    text-shadow: 
        0 0 8px var(--primary-green),
        0 0 12px var(--primary-green),
        0 0 16px var(--light-green),
        2px 2px 4px rgba(0, 0, 0, 0.5);
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.75rem;
    margin-bottom: 0.4rem;
    font-weight: 300;
    font-family: 'Alex Brush', cursive;
}

.hero-location {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--light-green);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    background: var(--secondary-green);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Container */
.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 4rem 1.5rem;
    overflow-x: hidden;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-family: 'Petit Formal Script', cursive;
    font-size: 3.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-weight: 600;
}

.divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--light-green), var(--secondary-green));
    margin: 0 auto;
    border-radius: 2px;
}

/* About Section */
.about {
    background: var(--white);
    padding: 4rem 0;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-image {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.about-text h3 {
    font-family: 'Petit Formal Script', cursive;
    font-size: 2.8rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-weight: normal;
}

.about-text p {
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.2rem;
}

.features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(168, 213, 163, 0.2);
    border-radius: 10px;
    font-weight: 500;
    color: var(--primary-green);
    font-size: 1.2rem;
}

.feature-icon {
    font-size: 2rem;
}

/* Menu Section */
.menu {
    background-image: url('foto/new-background-image.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 4rem 0;
    position: relative;
}

.menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    z-index: 0;
}

.menu .container {
    position: relative;
    z-index: 1;
}

.menu .section-header h2 {
    text-shadow: 
        0 0 8px rgba(255, 255, 255, 0.8),
        0 0 12px rgba(255, 255, 255, 0.6),
        0 0 16px rgba(255, 255, 255, 0.4);
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.menu-item {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.menu-item:hover {
    transform: translateY(-5px);
}

.menu-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.menu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-content {
    padding: 1.5rem;
}

.menu-content h3 {
    font-family: 'Petit Formal Script', cursive;
    font-size: 2.2rem;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    font-weight: normal;
}

.menu-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 1.15rem;
}

.price {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: var(--light-green);
    color: var(--white);
    border-radius: 20px;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Gallery Section */
.gallery {
    background: var(--white);
    padding: 4rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.gallery-item {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(135deg, rgba(168, 213, 163, 0.1), rgba(127, 176, 105, 0.1));
    padding: 4rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.testimonial-item {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.testimonial-image {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--light-green);
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stars {
    color: #ffc107;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-content p {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.8;
    font-size: 1.15rem;
}

.testimonial-content h4 {
    color: var(--primary-green);
    font-weight: 600;
    font-size: 1.2rem;
}

/* Contact Section */
.contact {
    background: var(--white);
    padding: 4rem 0;
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item h3 {
    font-family: 'Petit Formal Script', cursive;
    font-size: 2.2rem;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    font-weight: normal;
}

.info-item p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.2rem;
}

.info-item a {
    color: var(--primary-green);
    text-decoration: none;
    transition: color 0.3s;
}

.info-item a:hover {
    color: var(--secondary-green);
    text-decoration: underline;
}

.map-link {
    display: inline-block;
    margin-top: 0.5rem;
    color: var(--light-green);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.map-link:hover {
    color: var(--secondary-green);
}

.contact-map {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, rgba(168, 213, 163, 0.2), rgba(127, 176, 105, 0.2));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
    text-align: center;
    color: var(--primary-green);
}

.map-placeholder p {
    font-size: 1.4rem;
    margin: 0.5rem 0;
}

.map-link-button {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.8rem 1.5rem;
    background: var(--light-green);
    color: var(--white);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.map-link-button:hover {
    background: var(--secondary-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
    background: var(--primary-green);
    color: var(--white);
    padding: 2rem 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Petit Formal Script', cursive;
    font-size: 1.5rem;
    font-weight: normal;
}

.footer-logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.footer p {
    opacity: 0.9;
    font-size: 1.1rem;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.zoom-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.zoom-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Tablet Styles */
@media (min-width: 768px) {
    .hero-title {
        font-size: 5.5rem;
    }

    .hero-subtitle {
        font-size: 2rem;
    }

    .container {
        max-width: 90%;
        padding: 5rem 2rem;
    }

    .about-content {
        flex-direction: row;
        align-items: center;
    }

    .about-image {
        flex: 1;
    }

    .about-image img {
        height: 400px;
    }

    .about-text {
        flex: 1;
    }

    .features {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item img {
        height: 300px;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-content {
        flex-direction: row;
    }

    .contact-info {
        flex: 1;
    }

    .contact-map {
        flex: 1;
        height: 400px;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .nav-container {
        max-width: 1200px;
    }

    .menu-toggle {
        display: none;
    }

    .nav-menu {
        position: static;
        width: auto;
        height: auto;
        background: transparent;
        flex-direction: row;
        padding: 0;
        box-shadow: none;
        display: flex;
    }

    .nav-menu li {
        margin: 0 0.5rem;
    }

    .nav-menu a {
        padding: 0.5rem 1rem;
        border-left: none;
        border-bottom: 2px solid transparent;
        font-size: 1.1rem;
    }

    .nav-menu a:hover {
        border-left: none;
        border-bottom-color: var(--primary-green);
        background: transparent;
    }

    .container {
        max-width: 1200px;
    }

    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Prevent Horizontal Scrolling */
body, html {
    max-width: 100vw;
    overflow-x: hidden;
}

*, *::before, *::after {
    max-width: 100%;
}

img {
    max-width: 100%;
    height: auto;
}

