/*
Theme Name: Yalla Mediterranean
Theme URI: https://yallamediterranean.com
Description: A beautiful one-page landing theme for Yalla Mediterranean restaurant featuring Middle Eastern cuisine.
Version: 1.0.0
Author: Yalla Mediterranean
Text Domain: yalla-mediterranean
*/

:root {
    --primary-gold: #C9A227;
    --primary-dark: #1A1A1A;
    --accent-terracotta: #C75D3B;
    --cream: #F5F0E8;
    --olive: #6B7B3C;
    --warm-brown: #8B6914;
    --text-dark: #2D2D2D;
    --text-light: #F5F5F5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--cream);
}

/* Typography */
h1, h2, h3, h4 {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-weight: 400;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.2;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    font-size: 1.1rem;
}

/* Navigation */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    transition: all 0.3s ease;
}

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

.logo {
    font-family: Georgia, serif;
    font-size: 1.8rem;
    color: var(--primary-gold);
    text-decoration: none;
    letter-spacing: 2px;
}

.logo span {
    color: var(--text-light);
    font-weight: 300;
}

.main-nav {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.main-nav a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: width 0.3s ease;
}

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

.main-nav a:hover {
    color: var(--primary-gold);
}

.nav-cta {
    background: var(--primary-gold);
    color: var(--primary-dark) !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 4px;
    font-weight: 600;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--warm-brown);
    color: var(--text-light) !important;
}

/* Mobile Navigation */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--primary-gold);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, var(--primary-dark) 0%, #2D2418 100%);
    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"><circle cx="50" cy="50" r="40" fill="none" stroke="%23C9A227" stroke-width="0.5" opacity="0.1"/></svg>') repeat;
    background-size: 200px;
    opacity: 0.3;
}

.hero-content {
    text-align: center;
    color: var(--text-light);
    padding: 2rem;
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.hero-tagline {
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.hero h1 {
    margin-bottom: 1.5rem;
}

.hero h1 span {
    color: var(--primary-gold);
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    border-radius: 4px;
    font-weight: 600;
}

.btn-primary {
    background: var(--primary-gold);
    color: var(--primary-dark);
}

.btn-primary:hover {
    background: var(--warm-brown);
    color: var(--text-light);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--primary-gold);
}

.btn-secondary:hover {
    background: var(--primary-gold);
    color: var(--primary-dark);
}

/* Section Styles */
section {
    padding: 6rem 2rem;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    color: var(--primary-dark);
}

.section-header p {
    color: #666;
    margin-top: 1rem;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: var(--primary-gold);
    margin: 1.5rem auto;
}

/* About Section */
.about {
    background: var(--cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image-placeholder {
    background: linear-gradient(135deg, var(--accent-terracotta), var(--primary-gold));
    aspect-ratio: 4/3;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-family: Georgia, serif;
}

.about-content h2 {
    color: var(--primary-dark);
}

.about-content p {
    margin-bottom: 1.5rem;
    color: #555;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.about-feature-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-weight: bold;
}

/* Menu Section */
.menu {
    background: var(--primary-dark);
    color: var(--text-light);
}

.menu .section-header h2 {
    color: var(--text-light);
}

.menu .section-header p {
    color: rgba(255, 255, 255, 0.7);
}

.menu-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.menu-category {
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 1px solid var(--primary-gold);
    color: var(--primary-gold);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.menu-category:hover,
.menu-category.active {
    background: var(--primary-gold);
    color: var(--primary-dark);
}

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

.menu-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid rgba(201, 162, 39, 0.2);
    transition: all 0.3s ease;
}

.menu-item:hover {
    border-color: var(--primary-gold);
    transform: translateY(-5px);
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.menu-item h3 {
    color: var(--primary-gold);
    font-size: 1.25rem;
}

.menu-item-price {
    color: var(--accent-terracotta);
    font-weight: 600;
    font-size: 1.1rem;
}

.menu-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.menu-item-tags {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.menu-tag {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    background: rgba(107, 123, 60, 0.3);
    color: var(--olive);
    border-radius: 4px;
    text-transform: uppercase;
}

/* Specialties Section */
.specialties {
    background: var(--cream);
}

.specialties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.specialty-card {
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.specialty-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.specialty-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-gold), var(--warm-brown));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.specialty-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.specialty-card p {
    color: #666;
    font-size: 0.95rem;
}

/* Testimonials */
.testimonials {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #2D2418 100%);
    color: var(--text-light);
}

.testimonials .section-header h2 {
    color: var(--text-light);
}

.testimonials .section-header p {
    color: rgba(255, 255, 255, 0.7);
}

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

.testimonial {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-gold);
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-weight: bold;
    font-size: 1.2rem;
}

.testimonial-info h4 {
    color: var(--primary-gold);
    font-size: 1rem;
}

.testimonial-info span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Contact Section */
.contact {
    background: var(--cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info h3 {
    color: var(--primary-dark);
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-weight: bold;
    flex-shrink: 0;
}

.contact-item h4 {
    color: var(--primary-dark);
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.contact-item p {
    color: #666;
    font-size: 0.95rem;
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-form h3 {
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-gold);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.btn-submit {
    width: 100%;
    background: var(--primary-gold);
    color: var(--primary-dark);
    border: none;
    padding: 1rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
    font-weight: 600;
}

.btn-submit:hover {
    background: var(--warm-brown);
    color: var(--text-light);
}

/* Hours Section */
.hours {
    background: var(--primary-dark);
    color: var(--text-light);
    padding: 4rem 2rem;
}

.hours-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hours h2 {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 3rem;
    margin-top: 2rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(201, 162, 39, 0.2);
}

.hours-day {
    color: var(--primary-gold);
}

.hours-time {
    color: rgba(255, 255, 255, 0.8);
}

/* Footer */
.site-footer {
    background: #0D0D0D;
    color: var(--text-light);
    padding: 4rem 2rem 2rem;
}

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

.footer-brand .logo {
    display: inline-block;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.social-link:hover {
    background: var(--primary-gold);
    color: var(--primary-dark);
}

.footer-section h4 {
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: var(--primary-gold);
}

.footer-bottom {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--primary-gold);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .specialties-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary-dark);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
    }

    .main-nav.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

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

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

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

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

    .form-row {
        grid-template-columns: 1fr;
    }

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

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    section {
        padding: 4rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0;
    }

    .logo {
        font-size: 1.4rem;
    }

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

    .contact-form {
        padding: 1.5rem;
    }
}

/* ==========================================================================
   CATERING PAGE STYLES
   ========================================================================== */

/* Catering Hero */
.catering-hero .hero-tagline {
    color: var(--primary-gold);
}

/* Catering Packages */
.catering-packages .package-card {
    text-align: left;
}

.package-price {
    color: var(--accent-terracotta);
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0.5rem 0 1rem;
}

.package-features {
    list-style: none;
    margin-top: 1.5rem;
    padding: 0;
}

.package-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: #555;
}

.package-features li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-weight: bold;
}

/* Catering Menu Items */
.catering-menu .menu-item-price {
    font-size: 1.2rem;
}

/* Service Areas Section */
.service-areas {
    text-align: center;
}

.service-area-block {
    margin: 2rem 0;
}

.service-area-block h3 {
    color: var(--primary-gold);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.neighborhoods-list,
.venues-list {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    line-height: 1.8;
}

.service-note {
    margin-top: 2rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
}

/* Catering Contact */
.catering-hours {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.catering-hours h4 {
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.catering-hours p {
    color: #666;
    font-size: 0.95rem;
}

/* Why Choose Us - Catering specific adjustments */
.why-choose-us .specialty-card {
    text-align: center;
}

/* Catering Testimonial */
.catering-testimonial .testimonials-grid {
    max-width: 1000px;
}

/* Catering page body class */
.catering-page .site-header {
    background: rgba(26, 26, 26, 0.98);
}

/* Responsive adjustments for catering pages */
@media (max-width: 768px) {
    .package-features {
        margin-top: 1rem;
    }

    .service-area-block {
        margin: 1.5rem 0;
    }

    .neighborhoods-list,
    .venues-list {
        font-size: 1rem;
    }
}
