/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    background-color: #FAFAFA;
    color: #1C1C1C;
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Button */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #D84315;
    color: white;
}

.btn-primary:hover {
    background: #BF360C;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(216, 67, 21, 0.3);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 60px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: white;
    font-weight: 400;
    position: relative;
    transition: color 0.3s ease;
}

.navbar.scrolled .nav-links a {
    color: #1C1C1C;
}

.nav-links a:hover {
    color: #D84315;
}

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

.nav-links a:hover::after {
    width: 100%;
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.lang-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    transition: color 0.3s ease;
}

.navbar.scrolled .lang-btn {
    color: #5C5C5C;
}

.lang-btn.active,
.lang-btn:hover {
    color: #D84315;
}

.lang-divider {
    color: rgba(255, 255, 255, 0.4);
}

.navbar.scrolled .lang-divider {
    color: #E5E5E5;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
}

.navbar.scrolled .mobile-menu-btn span {
    background: #1C1C1C;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    inset: 0;
}

.hero-video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-video.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.5), rgba(0,0,0,0.6));
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 2rem;
    animation: fadeInUp 0.8s ease-out;
}

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

.hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.hero-title {
    color: white;
    font-size: 4rem;
    margin-bottom: 1rem;
}

.hero-tagline {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 0.5rem;
}

.hero-license {
    color: #D84315;
    font-weight: 500;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.hero-since {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.video-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 20;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #D84315;
    transform: scale(1.2);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.6);
    animation: bounce 2s infinite;
    z-index: 20;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* Info Section */
.info-section {
    padding: 4rem 0;
    background: white;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.info-card {
    background: #FAFAFA;
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.card-icon {
    width: 48px;
    height: 48px;
    background: #3A5A40;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.card-header h3 {
    font-size: 1.5rem;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    color: #5C5C5C;
}

.hours-row span:first-child {
    font-weight: 500;
}

.contact-card {
    background: #3A5A40;
    color: white;
}

.contact-card h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    transition: color 0.3s ease;
}

.contact-item:hover {
    color: #D84315;
}

.contact-item svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.image-card {
    padding: 0;
    overflow: hidden;
    grid-row: span 2;
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-card:hover img {
    transform: scale(1.05);
}

.delivery-card {
    grid-column: span 2;
}

.delivery-card h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.delivery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.delivery-item {
    background: white;
    border: 1px solid #E5E5E5;
    border-radius: 0.75rem;
    padding: 1rem;
}

.delivery-label {
    color: #5C5C5C;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.delivery-price {
    color: #D84315;
    font-weight: 600;
    font-size: 1.25rem;
}

.delivery-note {
    color: #5C5C5C;
    font-size: 0.875rem;
    margin-top: 1rem;
}

/* About Section */
.about-section {
    padding: 4rem 0;
    background: #FAFAFA;
}

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

.about-images {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.restaurant-image {
    border-radius: 1rem;
    overflow: hidden;
}

.restaurant-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.about-image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.about-image {
    border-radius: 1rem;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-description {
    color: #5C5C5C;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.about-points {
    list-style: none;
    margin-bottom: 1.5rem;
}

.about-points li {
    color: #5C5C5C;
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 1rem;
}

.about-points li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    background: #D84315;
    border-radius: 50%;
}

.about-text {
    color: #5C5C5C;
    margin-bottom: 1rem;
}

/* Menu Section */
.menu-section {
    position: relative;
    padding: 6rem 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.menu-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.menu-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.menu-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

/* Delivery Areas */
.delivery-areas-section {
    padding: 4rem 0;
    background: white;
    text-align: center;
}

.delivery-areas-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.delivery-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.delivery-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: white;
    border: 1px solid #E5E5E5;
    border-radius: 50px;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.delivery-pill svg {
    color: #3A5A40;
}

.delivery-pill:hover {
    background: #3A5A40;
    color: white;
    border-color: #3A5A40;
}

.delivery-pill:hover svg {
    color: white;
}

/* Allergen Section */
.allergen-section {
    padding: 3rem 0;
    background: #FAFAFA;
}

.allergen-card {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, #FFF8E7, #FFFBF0);
    border-left: 4px solid #D84315;
    border-radius: 0.75rem;
    padding: 1.5rem 2rem;
}

.allergen-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.allergen-card p {
    color: #5C5C5C;
    margin-bottom: 0.75rem;
}

.allergen-small {
    font-size: 0.875rem;
}

/* Footer */
.footer {
    background: #1A2E20;
    color: white;
    padding: 4rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 3rem;
}

.footer-logo {
    height: 60px;
    margin-bottom: 1.5rem;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact a,
.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #D84315;
}

.footer-contact svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-col h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.footer-map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.social-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #D84315;
    transform: translateY(-3px);
}

.oiva-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    color: #1C1C1C;
    font-weight: 500;
    transition: all 0.3s ease;
}

.oiva-badge:hover {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 1024px) {
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .image-card {
        grid-row: span 1;
    }
    
    .delivery-card {
        grid-column: span 2;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-map-col {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .lang-switcher {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-tagline {
        font-size: 1.1rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .delivery-card {
        grid-column: span 1;
    }
    
    .delivery-grid {
        grid-template-columns: 1fr;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content h2 {
        font-size: 2rem;
    }
    
    .menu-section {
        background-attachment: scroll;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-map-col {
        grid-column: span 1;
    }
}

/* Mobile Menu */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: white;
    z-index: 200;
    padding: 2rem;
    transition: right 0.3s ease;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
}

.mobile-nav.open {
    right: 0;
}

.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 199;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-nav-overlay.open {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.mobile-nav-header img {
    height: 48px;
}

.mobile-nav-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-links a {
    font-size: 1.1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #E5E5E5;
    color: #1C1C1C;
}

.mobile-lang-switcher {
    display: flex;
    gap: 0.5rem;
    margin-top: 2rem;
}

.mobile-lang-switcher button {
    padding: 0.5rem 1rem;
    border-radius: 50px;
    border: none;
    background: #E5E5E5;
    color: #5C5C5C;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-lang-switcher button.active {
    background: #3A5A40;
    color: white;
}
