/* ==========================================
   RESET & BASE STYLES
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    color: #2c2c2c;
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #f5f1ed;
}

/* ==========================================
   TYPOGRAPHY
   ========================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    color: #3a2417;
}

/* ==========================================
   NAVIGATION
   ========================================== */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(58, 36, 23, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 15px 0;
    transition: all 0.3s ease;
}

#navbar.scrolled {
    background: rgba(58, 36, 23, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    padding: 10px 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 8px 16px;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
    flex-shrink: 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #d4724e;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 80%;
}

.nav-link:hover {
    color: #d4724e;
}

.logo-link {
    padding: 0 !important;
}

.logo-link::after {
    display: none;
}

.logo-placeholder {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 900;
    color: #fff;
    text-align: center;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.logo-placeholder span {
    display: block;
    font-size: 14px;
    letter-spacing: 6px;
    font-weight: 400;
    margin-top: -5px;
}

.logo-placeholder.small {
    font-size: 24px;
}

.logo-placeholder.small span {
    font-size: 12px;
    letter-spacing: 4px;
}

.nav-logo {
    height: 50px;
    width: auto;
    display: block;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5));
    transition: all 0.3s ease;
}

#navbar.scrolled .nav-logo {
    height: 45px;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    display: block;
    margin: 0 auto;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.4)),
                url('./hero.JPG') top center/cover no-repeat;
    background-attachment: fixed;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(58, 36, 23, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 0 20px;
}

.hero-logo {
    max-width: 500px;
    width: 100%;
    height: auto;
    margin-bottom: 30px;
    filter: drop-shadow(4px 4px 8px rgba(0, 0, 0, 0.7));
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 72px;
    font-weight: 900;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 28px;
    font-weight: 300;
    margin-bottom: 40px;
    color: #fff;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    animation: fadeInUp 1s ease 0.2s both;
}

.cta-button {
    display: inline-block;
    padding: 18px 45px;
    background: #d4724e;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 114, 78, 0.4);
    animation: fadeInUp 1s ease 0.4s both;
}

.cta-button:hover {
    background: #b85d3d;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(212, 114, 78, 0.6);
}

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

/* ==========================================
   SECTIONS
   ========================================== */
.section {
    padding: 100px 20px;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #3a2417;
}

.section-title.light-text {
    color: #fff;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #d4724e, transparent);
    margin: 0 auto;
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about-section {
    background: #f5f1ed;
    background-image: 
        repeating-linear-gradient(90deg, rgba(58, 36, 23, 0.03) 0px, transparent 1px, transparent 40px, rgba(58, 36, 23, 0.03) 41px),
        repeating-linear-gradient(0deg, rgba(58, 36, 23, 0.03) 0px, transparent 1px, transparent 40px, rgba(58, 36, 23, 0.03) 41px);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text .lead-text {
    font-size: 24px;
    font-weight: 300;
    color: #d4724e;
    margin-bottom: 25px;
    line-height: 1.5;
}

.about-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.about-image .image-placeholder,
.events-image .image-placeholder {
    background: linear-gradient(135deg, #8b6f47, #6b5538);
    height: 400px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    color: rgba(255, 255, 255, 0.6);
    font-size: 18px;
    letter-spacing: 1px;
}

/* ==========================================
   SERVICES SECTION
   ========================================== */
.services-section {
    background: linear-gradient(rgba(58, 36, 23, 0.9), rgba(58, 36, 23, 0.9)),
                url('https://images.unsplash.com/photo-1565299624946-b28f40a0ae38?w=1920&q=80') center/cover no-repeat;
    background-attachment: fixed;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.service-card {
    background: rgba(245, 241, 237, 0.95);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.service-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #3a2417;
}

.service-card p {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.6;
}

/* ==========================================
   MENU SECTION
   ========================================== */
.menu-section {
    background: #f5f1ed;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(212, 114, 78, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 111, 71, 0.05) 0%, transparent 50%);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.menu-item {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 4px solid #d4724e;
}

.menu-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.menu-item h3 {
    font-size: 24px;
    color: #3a2417;
}

.price {
    font-size: 22px;
    font-weight: 700;
    color: #d4724e;
}

.menu-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
}

.menu-note {
    text-align: center;
    font-style: italic;
    color: #666;
    font-size: 14px;
}

/* ==========================================
   EVENTS SECTION
   ========================================== */
.events-section {
    background: linear-gradient(rgba(139, 111, 71, 0.9), rgba(107, 85, 56, 0.9)),
                url('https://images.unsplash.com/photo-1555939594-58d7cb561ad1?w=1920&q=80') center/cover no-repeat;
    background-attachment: fixed;
}

.events-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.events-text {
    color: #fff;
}

.events-text h3 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #fff;
}

.events-text p {
    font-size: 18px;
    margin-bottom: 25px;
    line-height: 1.7;
}

.events-list {
    list-style: none;
    margin: 30px 0;
}

.events-list li {
    font-size: 18px;
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
}

.events-list li::before {
    content: '🍕';
    position: absolute;
    left: 0;
    font-size: 18px;
}

.events-highlight {
    font-size: 20px !important;
    font-weight: 700;
    color: #d4724e;
    margin-top: 30px !important;
}

/* ==========================================
   CONTACT SECTION
   ========================================== */
.contact-section {
    background: #3a2417;
    color: #fff;
}

.contact-section .section-title {
    color: #fff;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    margin-top: 60px;
}

.contact-info h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #fff;
}

.contact-info p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.7;
}

.contact-details {
    margin-top: 40px;
}

.contact-item {
    font-size: 18px;
    margin-bottom: 20px;
    padding-left: 10px;
    border-left: 3px solid #d4724e;
}

.contact-item strong {
    color: #d4724e;
    display: block;
    margin-bottom: 5px;
}

.contact-form {
    background: rgba(245, 241, 237, 0.1);
    padding: 40px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(245, 241, 237, 0.3);
    background: rgba(245, 241, 237, 0.95);
    border-radius: 5px;
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    transition: all 0.3s ease;
    color: #3a2417;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4724e;
    background: #fff;
}

.form-group textarea {
    resize: vertical;
}

.submit-button {
    width: 100%;
    padding: 18px;
    background: #d4724e;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 114, 78, 0.4);
}

.submit-button:hover {
    background: #b85d3d;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 114, 78, 0.6);
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: #2a1810;
    color: #fff;
    padding: 40px 20px;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer p {
    margin: 10px 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-tagline {
    font-style: italic;
    color: #d4724e;
    font-size: 16px !important;
}

/* ==========================================
   PARALLAX EFFECT
   ========================================== */
.parallax-section {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 1024px) {
    .nav-container {
        padding: 0 20px;
        gap: 30px;
    }
    
    .nav-link {
        font-size: 14px;
        padding: 8px 12px;
    }
    
    .nav-logo {
        height: 45px;
    }
    
    .footer-logo-img {
        height: 40px;
    }
    
    .hero-logo {
        max-width: 400px;
    }
    
    .hero-title {
        font-size: 56px;
    }
    
    .hero-subtitle {
        font-size: 22px;
    }
    
    .about-content,
    .events-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        padding: 0 20px;
    }
    
    .nav-link {
        font-size: 14px;
        padding: 8px 12px;
    }
    
    .logo-link {
        order: -1;
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
        padding: 0 !important;
    }
    
    .nav-logo {
        height: 50px;
        margin: 0 auto;
    }
    
    .footer-logo-img {
        height: 35px;
    }
    
    .hero-logo {
        max-width: 300px;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .section {
        padding: 60px 20px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .parallax-section {
        background-attachment: scroll;
    }
}

@media (max-width: 480px) {
    .nav-container {
        gap: 15px;
        padding: 0 15px;
    }
    
    .nav-link {
        font-size: 12px;
        padding: 6px 10px;
    }
    
    .nav-logo {
        height: 40px;
    }
    
    .hero-logo {
        max-width: 250px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .cta-button {
        padding: 14px 30px;
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .about-text .lead-text {
        font-size: 20px;
    }
    
    .contact-form {
        padding: 25px;
    }
}

