/* Mexican Store Template - Vibrant Tex-Mex with authentic Mexican cultural elements */
/* Inspired by colorful Mexican traditions, festive atmosphere, and warm hospitality */
/* Uses CSS variables defined in site-page.ejs for dynamic color theming */

/* ================================================
   GLOBAL STYLES - VIBRANT FIESTA
   ================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: var(--text-on-background);
    background-color: var(--background-color);
    font-size: 16px;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(0, 0, 0, 0.02) 8px, transparent 8px),
        radial-gradient(circle at 80% 80%, rgba(0, 0, 0, 0.02) 8px, transparent 8px),
        radial-gradient(circle at 40% 60%, rgba(0, 0, 0, 0.02) 6px, transparent 6px);
    background-size: 60px 60px, 40px 40px, 80px 80px;
}

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

/* ================================================
   HEADER STYLES - FESTIVE CANTINA
   ================================================ */
.site-header {
    background-color: var(--primary-color);
    color: var(--text-on-primary);
    padding: 1.5rem 0;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    border-bottom: 8px solid var(--secondary-color);
}

.site-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 12px;
    background: repeating-linear-gradient(
        45deg,
        var(--text-on-primary) 0px,
        var(--text-on-primary) 15px,
        transparent 15px,
        transparent 30px,
        var(--secondary-color) 30px,
        var(--secondary-color) 45px,
        transparent 45px,
        transparent 60px
    );
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Brand Container - Groups logo and title together */
.brand-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Logo Styles */
.logo-container {
    display: flex;
    align-items: center;
}

.site-logo {
    height: 70px;
    width: auto;
    max-width: 170px;
    object-fit: contain;
    border-radius: 50%;
    border: 4px solid var(--text-on-primary);
    padding: 8px;
    background-color: var(--primary-color);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Header Image Container Overrides for Mexican Store Template */
.header-image-container .site-logo {
    height: auto;
    max-height: 80px;
    max-width: none;
    border-radius: 8px; /* Change to rectangular for header images */
    border: 4px solid var(--text-on-primary);
    padding: 8px;
    background-color: var(--primary-color);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    aspect-ratio: 2/1;
}

.site-title {
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--text-on-primary);
    margin: 0;
    letter-spacing: 1px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    white-space: nowrap;
    font-family: 'Georgia', serif;
    font-style: italic;
}

.site-nav ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
}

.site-nav a {
    color: var(--text-on-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

.site-nav a:hover {
    background-color: var(--secondary-color);
    color: var(--text-on-secondary);
    border-color: var(--text-on-primary);
    transform: translateY(-3px) rotate(1deg);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.site-header .phone-link {
    background-color: var(--secondary-color) !important;
    color: var(--text-on-secondary) !important;
    padding: 1rem 2rem !important;
    border-radius: 25px !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 3px solid var(--text-on-primary) !important;
}

.site-header .phone-link:hover {
    transform: translateY(-4px) scale(1.05) rotate(-1deg) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4) !important;
    background-color: var(--text-on-primary) !important;
    color: var(--primary-color) !important;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .site-header {
        padding: 1rem 0;
    }
    
    .site-header .container {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .brand-container {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .site-logo {
        height: 55px;
        max-width: 130px;
    }
    
    .site-title {
        font-size: 2rem;
    }
    
    .site-nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.75rem;
    }
    
    .site-nav a {
        font-size: 1rem;
        padding: 0.6rem 1.2rem;
    }
}

/* ================================================
   HOME PAGE - WARM FIESTA HERO
   ================================================ */
.hero-section {
    background-color: var(--secondary-color);
    color: var(--text-on-secondary);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 8px solid var(--primary-color);
    border-bottom: 8px solid var(--primary-color);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 75%, rgba(255, 255, 255, 0.08) 30px, transparent 30px),
        radial-gradient(circle at 75% 25%, rgba(255, 255, 255, 0.08) 25px, transparent 25px),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 40px, transparent 40px);
    background-size: 150px 150px, 120px 120px, 200px 200px;
    animation: festiveFloat 30s ease-in-out infinite;
}

@keyframes festiveFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(1deg); }
    50% { transform: translateY(-20px) rotate(0deg); }
    75% { transform: translateY(-10px) rotate(-1deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.store-name {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);
    font-family: 'Georgia', serif;
    letter-spacing: 2px;
    font-style: italic;
}

.store-subheading {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.4;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-style: italic;
}

.hero-section .phone-link {
    display: inline-block;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-on-primary) !important;
    text-decoration: none;
    background-color: var(--primary-color);
    padding: 1.2rem 3rem;
    border-radius: 25px;
    border: 4px solid var(--secondary-color);
    transition: all 0.3s ease;
    margin-top: 1.5rem;
    text-transform: capitalize;
    letter-spacing: 1px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.hero-section .phone-link:hover {
    background-color: var(--secondary-color);
    border-color: var(--primary-color);
    color: var(--text-on-secondary) !important;
    transform: translateY(-4px) scale(1.05) rotate(-1deg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.hero-section .phone-link:active {
    transform: translateY(-2px) scale(1.02) rotate(0deg);
}

.rating-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.rating-stars {
    font-size: 2.2rem;
    color: var(--text-on-secondary);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.rating-number {
    font-size: 1.5rem;
    font-weight: 700;
    background-color: var(--text-on-secondary);
    color: var(--secondary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    border: 3px solid var(--text-on-secondary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .hero-section {
        padding: 3.5rem 0;
    }
    
    .store-name {
        font-size: 3rem;
    }

    .store-subheading {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .hero-section .phone-link {
        font-size: 1.2rem;
        padding: 1rem 2.5rem;
        margin-top: 1rem;
    }
    
    .rating-display {
        flex-direction: column;
        gap: 1rem;
    }
    
    .rating-stars {
        font-size: 1.9rem;
    }
}

/* ================================================
   QUICK INFO SECTION - HACIENDA STYLING
   ================================================ */
.quick-info-section {
    padding: 5rem 0;
    background-color: var(--background-color);
    position: relative;
}

.quick-info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 24px;
    background: repeating-linear-gradient(
        90deg,
        var(--primary-color) 0px,
        var(--primary-color) 20px,
        var(--secondary-color) 20px,
        var(--secondary-color) 40px,
        var(--primary-color) 40px,
        var(--primary-color) 60px,
        var(--secondary-color) 60px,
        var(--secondary-color) 80px
    );
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.info-item {
    background-color: var(--background-color);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    text-align: center;
    transition: all 0.3s ease;
    border: 4px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.info-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 12px;
    background: var(--secondary-color);
    border-radius: 16px 16px 0 0;
}

.info-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 12px;
    background: var(--secondary-color);
    border-radius: 0 0 16px 16px;
}

.info-item:hover {
    transform: translateY(-8px) scale(1.02) rotate(1deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    border-color: var(--secondary-color);
}

.info-item h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-on-background);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
    font-style: italic;
}

.phone-info h3::before {
    content: "📞";
    font-size: 2rem;
}

.address-info h3::before {
    content: "📍";
    font-size: 2rem;
}

.hours-info h3::before {
    content: "🕒";
    font-size: 2rem;
}

.info-item p {
    font-size: 1.1rem;
    color: var(--text-on-background);
    margin-bottom: 0.75rem;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.hours-list p {
    padding: 0.5rem 0;
    border-bottom: 2px solid var(--primary-color);
    border-style: dotted;
}

.hours-list p:last-child {
    border-bottom: none;
}

@media (max-width: 768px) {
    .quick-info-section {
        padding: 3rem 0;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .info-item {
        padding: 2rem;
    }
    
    .info-item h3 {
        font-size: 1.4rem;
    }
}

/* ================================================
   CONTACT SECTION - FIESTA CELEBRATION
   ================================================ */
.contact-section {
    padding: 5rem 0;
    background-color: var(--secondary-color);
    color: var(--text-on-secondary);
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 8px solid var(--primary-color);
    border-bottom: 8px solid var(--primary-color);
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 35px, transparent 35px),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 25px, transparent 25px),
        radial-gradient(circle at 50% 90%, rgba(255, 255, 255, 0.08) 45px, transparent 45px);
    background-size: 180px 180px, 120px 120px, 220px 220px;
    animation: festiveFloat 25s ease-in-out infinite reverse;
}

.contact-content {
    position: relative;
    z-index: 2;
}

.contact-content h2 {
    font-size: 3.4rem;
    font-weight: 700;
    color: var(--text-on-background);
    margin-bottom: 2.5rem;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);
    font-family: 'Georgia', serif;
    text-transform: capitalize;
    letter-spacing: 1px;
    font-style: italic;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

.contact-button {
    display: inline-block;
    padding: 1.25rem 2.5rem;
    background-color: var(--text-on-secondary);
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    min-width: 180px;
    border: 4px solid var(--text-on-secondary);
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

.contact-button:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-on-primary);
    transform: translateY(-5px) scale(1.05) rotate(-1deg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.phone-button::before {
    content: "📞 ";
    font-size: 1.3rem;
}

.website-button::before {
    content: "🌐 ";
    font-size: 1.3rem;
}

.email-button::before {
    content: "✉️ ";
    font-size: 1.3rem;
}

@media (max-width: 768px) {
    .contact-section {
        padding: 3.5rem 0;
    }
    
    .contact-content h2 {
        font-size: 2.6rem;
    }
    
    .contact-methods {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .contact-button {
        min-width: 220px;
        font-size: 1.1rem;
        padding: 1rem 2rem;
    }
}

/* ================================================
   FOOTER STYLES - AUTHENTIC WARMTH
   ================================================ */
.site-footer {
    background-color: var(--primary-color);
    color: var(--text-on-primary);
    padding: 3rem 0 2rem;
    margin-top: 3rem;
    position: relative;
    border-top: 8px solid var(--secondary-color);
}

.site-footer::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 0;
    right: 0;
    height: 8px;
    background: repeating-linear-gradient(
        45deg,
        var(--text-on-primary) 0px,
        var(--text-on-primary) 12px,
        transparent 12px,
        transparent 24px,
        var(--secondary-color) 24px,
        var(--secondary-color) 36px,
        transparent 36px,
        transparent 48px
    );
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2.5rem;
    align-items: start;
}

.footer-info p {
    margin-bottom: 0.75rem;
    color: var(--text-on-primary);
    opacity: 0.9;
    font-weight: 500;
    font-size: 1.1rem;
}

.footer-phone a {
    color: var(--text-on-primary);
    text-decoration: none;
    outline: none;
    font-weight: 700;
    font-size: 1.3rem;
}

.footer-phone a:hover {
    text-decoration: underline;
    outline: none;
}

.footer-nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.footer-nav a {
    color: var(--text-on-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

.footer-nav a:hover {
    color: var(--text-on-primary);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px) rotate(1deg);
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-nav ul {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
}

/* ================================================
   MENU PAGE STYLES
   ================================================ */
.menu-section {
    padding: 4rem 0;
    background-color: var(--background-color);
}

.menu-section h1 {
    text-align: center;
    font-size: 3.4rem;
    color: var(--text-on-background);
    margin-bottom: 3.5rem;
    font-weight: 700;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.1);
    font-family: 'Georgia', serif;
    text-transform: capitalize;
    letter-spacing: 1px;
    font-style: italic;
}

/* Menu Images Grid */
.menu-images-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.menu-image {
    background: var(--background-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    border: 4px solid var(--primary-color);
}

.menu-image:hover {
    transform: translateY(-8px) scale(1.02) rotate(1deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    border-color: var(--secondary-color);
}

.menu-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

.menu-category {
    margin-bottom: 4rem;
    background-color: var(--background-color);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 4px solid var(--primary-color);
    position: relative;
}

.menu-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 16px;
    background: repeating-linear-gradient(
        90deg,
        var(--secondary-color) 0px,
        var(--secondary-color) 30px,
        var(--primary-color) 30px,
        var(--primary-color) 60px
    );
    border-radius: 16px 16px 0 0;
}

.menu-category h2 {
    color: var(--text-on-background);
    font-size: 2.6rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 4px solid var(--secondary-color);
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    font-family: 'Georgia', serif;
    font-style: italic;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.5rem 0;
    border-bottom: 2px solid var(--primary-color);
    border-style: dotted;
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item-info h3 {
    color: var(--text-on-background);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    font-style: italic;
}

.menu-item-info p {
    color: var(--text-on-background);
    opacity: 0.8;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 400;
}

.menu-item-price {
    color: var(--text-on-background);
    font-weight: 700;
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-left: 1.5rem;
    background-color: var(--secondary-color);
    color: var(--text-on-secondary);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    border: 3px solid var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .menu-images-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .menu-category {
        padding: 2rem;
    }
    
    .menu-category h2 {
        font-size: 2.2rem;
    }
    
    .menu-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .menu-item-price {
        margin-left: 0;
        align-self: flex-end;
    }
}

/* ================================================
   ABOUT PAGE STYLES
   ================================================ */
.about-section {
    padding: 4rem 0;
    max-width: 900px;
    margin: 0 auto;
}

.about-section h1 {
    text-align: center;
    font-size: 3.4rem;
    color: var(--text-on-background);
    margin-bottom: 3rem;
    font-weight: 700;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.1);
    font-family: 'Georgia', serif;
    text-transform: capitalize;
    letter-spacing: 1px;
    font-style: italic;
}

.about-content {
    background-color: var(--background-color);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 4px solid var(--primary-color);
    position: relative;
}

.about-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 16px;
    background: repeating-linear-gradient(
        90deg,
        var(--secondary-color) 0px,
        var(--secondary-color) 25px,
        var(--primary-color) 25px,
        var(--primary-color) 50px
    );
    border-radius: 16px 16px 0 0;
}

.about-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-on-background);
    opacity: 0.9;
    margin-bottom: 2rem;
    font-weight: 400;
}

.about-content p:last-child {
    margin-bottom: 0;
}

/* ================================================
   CONTACT PAGE STYLES
   ================================================ */
.contact-page-section {
    padding: 4rem 0;
}

.contact-page-section h1 {
    text-align: center;
    font-size: 3.4rem;
    color: var(--text-on-background);
    margin-bottom: 3.5rem;
    font-weight: 700;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.1);
    font-family: 'Georgia', serif;
    text-transform: capitalize;
    letter-spacing: 1px;
    font-style: italic;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.contact-info-item {
    background-color: var(--background-color);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 4px solid var(--primary-color);
    transition: all 0.3s ease;
    position: relative;
}

.contact-info-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 12px;
    background-color: var(--secondary-color);
    border-radius: 16px 16px 0 0;
}

.contact-info-item:hover {
    transform: translateY(-5px) rotate(1deg);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    border-color: var(--secondary-color);
}

.contact-info-item h3 {
    color: var(--text-on-background);
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    font-style: italic;
}

.contact-info-item p {
    font-size: 1.1rem;
    color: var(--text-on-background);
    opacity: 0.9;
    font-weight: 500;
}

.contact-info-item a {
    color: var(--text-on-background);
    text-decoration: none;
    font-weight: 600;
}

.contact-info-item a:hover {
    color: var(--text-on-background);
    text-decoration: underline;
}

/* ================================================
   FORM STYLES - WARM & WELCOMING
   ================================================ */
.contact-form {
    max-width: 700px;
    margin: 2rem auto 0;
    background-color: var(--background-color);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border: 4px solid var(--primary-color);
    position: relative;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 16px;
    background: repeating-linear-gradient(
        90deg,
        var(--secondary-color) 0px,
        var(--secondary-color) 30px,
        var(--primary-color) 30px,
        var(--primary-color) 60px
    );
    border-radius: 16px 16px 0 0;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 700;
    color: var(--text-on-background);
    font-size: 1.1rem;
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 3px solid var(--primary-color);
    border-radius: 25px;
    font-size: 1rem;
    font-family: inherit;
    background-color: var(--background-color);
    color: var(--text-on-background);
    transition: all 0.3s ease;
    font-weight: 500;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 4px rgba(255, 99, 71, 0.2);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
    border-radius: 15px;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 1rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 3rem;
}

.submit-button {
    width: 100%;
    margin-top: 1.5rem;
    padding: 1.25rem 2rem;
    background-color: var(--primary-color);
    color: var(--text-on-primary);
    border: none;
    border-radius: 25px;
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.submit-button:hover {
    background-color: var(--secondary-color);
    color: var(--text-on-secondary);
    transform: translateY(-3px) rotate(-1deg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* ================================================
   PHOTOS SECTION - CULTURAL GALLERY
   ================================================ */
.photos-section {
    padding: 5rem 0;
    background-color: var(--background-color);
    position: relative;
}

.photos-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 24px;
    background: repeating-linear-gradient(
        90deg,
        var(--primary-color),
        var(--primary-color) 25px,
        var(--secondary-color) 25px,
        var(--secondary-color) 50px
    );
}

.photos-header {
    text-align: center;
    margin-bottom: 4rem;
}

.photos-title {
    font-size: 3.4rem;
    font-weight: 700;
    color: var(--text-on-background);
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.1);
    font-family: 'Georgia', serif;
    text-transform: capitalize;
    letter-spacing: 1px;
    font-style: italic;
}

.photos-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 4px solid var(--primary-color);
}

.photos-container {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.photo-wrapper {
    flex: 0 0 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 350px;
    background-color: var(--background-color);
}

.photo-item {
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

.photo-wrapper:hover .photo-item {
    transform: scale(1.03);
}

.photo-attribution {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 1.5rem 1rem 0.75rem;
    font-size: 0.85rem;
    line-height: 1.3;
    font-weight: 600;
}

.photo-attribution a {
    color: white;
    text-decoration: none;
    font-weight: 700;
}

.photo-attribution a:hover {
    text-decoration: underline;
}

/* Slide Navigation Dots */
.photos-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2.5rem;
    padding: 0 20px;
}

.photo-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--primary-color);
    opacity: 0.5;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid var(--primary-color);
}

.photo-dot.active {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    opacity: 1;
    transform: scale(1.3);
}

.photo-dot:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    opacity: 0.8;
}

/* Manual Navigation */
.photos-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: var(--text-on-primary);
    border: 4px solid var(--text-on-primary);
    width: 65px;
    height: 65px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0;
    z-index: 10;
    font-weight: 700;
}

.photos-carousel:hover .photos-nav {
    opacity: 1;
}

.photos-nav:hover {
    background: var(--secondary-color);
    color: var(--text-on-secondary);
    transform: translateY(-50%) scale(1.1) rotate(-5deg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.photos-nav-prev {
    left: 30px;
}

.photos-nav-next {
    right: 30px;
}

/* ================================================
   FEATURED REVIEWS SECTION - HEARTWARMING TESTIMONIALS
   ================================================ */
.featured-reviews-section {
    padding: 5rem 0;
    background-color: var(--background-color);
    position: relative;
}

.featured-reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 24px;
    background: repeating-linear-gradient(
        90deg,
        var(--secondary-color),
        var(--secondary-color) 25px,
        var(--primary-color) 25px,
        var(--primary-color) 50px
    );
}

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

.reviews-header {
    text-align: center;
    margin-bottom: 4rem;
}

.reviews-title {
    font-size: 3.4rem;
    font-weight: 700;
    color: var(--text-on-background);
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.1);
    font-family: 'Georgia', serif;
    text-transform: capitalize;
    letter-spacing: 1px;
    font-style: italic;
}

.overall-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.rating-stars {
    color: var(--text-on-background);
    font-size: 2.2rem;
    letter-spacing: 0.2em;
}

.rating-text {
    color: var(--text-on-background);
    font-weight: 700;
    font-size: 1.5rem;
}

.rating-count {
    color: var(--text-on-background);
    font-size: 1rem;
    opacity: 0.8;
    font-weight: 500;
    margin-top: 0.5rem;
}

/* Reviews Grid Layout */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

/* Individual Review Cards */
.review-card {
    background-color: var(--primary-color);
    color: var(--text-on-primary);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 4px solid var(--secondary-color);
}

.review-card:hover {
    transform: translateY(-8px) scale(1.02) rotate(1deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.review-card::before {
    content: '"';
    position: absolute;
    top: -15px;
    left: 20px;
    font-size: 8rem;
    color: var(--text-on-primary);
    opacity: 0.1;
    font-family: Georgia, serif;
    pointer-events: none;
}

/* Review Header */
.review-header {
    margin-bottom: 2rem;
}

.review-author-info {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.review-author-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--text-on-primary);
    flex-shrink: 0;
}

.review-author-details {
    flex: 1;
}

.review-author-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-on-primary);
    margin: 0 0 0.5rem 0;
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

.review-rating {
    display: flex;
    align-items: center;
}

.review-stars {
    color: var(--text-on-primary);
    font-size: 1.2rem;
    letter-spacing: 0.1em;
}

/* Review Content */
.review-content {
    position: relative;
    z-index: 1;
}

.review-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-on-primary);
    margin: 0;
    font-style: italic;
    font-weight: 400;
}

/* Review Footer */
.review-footer {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 3px solid rgba(255, 255, 255, 0.2);
}

.review-date {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-weight: 500;
    text-align: right;
}

/* Google Attribution */
.google-attribution {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-on-primary);
    opacity: 0.8;
    font-weight: 500;
    border-top: 3px solid rgba(255, 255, 255, 0.2);
    transition: opacity 0.3s ease;
}

.google-attribution:hover {
    opacity: 1;
}

.google-logo {
    height: 24px;
    width: auto;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.google-logo:hover {
    opacity: 1;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .photos-section {
        padding: 3.5rem 0;
    }

    .photos-title {
        font-size: 2.6rem;
    }

    .photos-carousel {
        padding: 0 15px;
        border-radius: 15px;
    }

    .photo-wrapper {
        min-height: 280px;
    }

    .photos-nav {
        width: 55px;
        height: 55px;
        font-size: 1.7rem;
    }

    .photos-nav-prev {
        left: 20px;
    }

    .photos-nav-next {
        right: 20px;
    }

    .photo-dot {
        width: 14px;
        height: 14px;
    }

    .featured-reviews-section {
        padding: 3.5rem 0;
    }

    .reviews-title {
        font-size: 2.6rem;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .review-card {
        padding: 2rem;
    }

    .overall-rating {
        flex-direction: column;
        gap: 0.75rem;
    }

    .rating-stars {
        font-size: 1.9rem;
    }
}

@media (max-width: 480px) {
    .photos-carousel {
        padding: 0 10px;
        border-radius: 12px;
    }

    .photo-wrapper {
        min-height: 220px;
    }

    .photos-title {
        font-size: 2.2rem;
    }

    .photos-nav {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .photos-nav-prev {
        left: 15px;
    }

    .photos-nav-next {
        right: 15px;
    }

    .photo-dot {
        width: 12px;
        height: 12px;
    }

    .photos-dots {
        gap: 0.75rem;
    }

    .reviews-container {
        padding: 0 15px;
    }

    .review-card {
        padding: 1.75rem;
    }

    .review-author-photo {
        width: 50px;
        height: 50px;
    }

    .review-author-name {
        font-size: 1.1rem;
    }

    .review-text {
        font-size: 1rem;
    }
}

/* Animation for reviews appearing */
.review-card {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.review-card:nth-child(1) { animation-delay: 0.1s; }
.review-card:nth-child(2) { animation-delay: 0.2s; }
.review-card:nth-child(3) { animation-delay: 0.3s; }
.review-card:nth-child(4) { animation-delay: 0.4s; }
.review-card:nth-child(5) { animation-delay: 0.5s; }

/* ================================================
   ANIMATIONS & TRANSITIONS
   ================================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.info-item {
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

.info-item:nth-child(1) { animation-delay: 0.1s; }
.info-item:nth-child(2) { animation-delay: 0.2s; }
.info-item:nth-child(3) { animation-delay: 0.3s; }

/* Smooth scrolling for internal links */
html {
    scroll-behavior: smooth;
}

/* Focus states for accessibility */
a:focus,
button:focus {
    outline: 3px solid var(--secondary-color);
    outline-offset: 3px;
}

/* Print styles */
@media print {
    .site-header,
    .site-footer,
    .contact-section {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .info-item,
    .menu-category {
        break-inside: avoid;
    }
}
