/* Convenience Store Template - Quick, practical design for small-town convenience stores with hot food */
/* Uses CSS variables defined in site-page.ejs for dynamic color theming */

/* ================================================
   GLOBAL STYLES - QUICK & CONVENIENT
   ================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    line-height: 1.5;
    color: var(--text-on-background);
    background-color: var(--background-color);
    font-size: 16px;
}

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

/* ================================================
   HEADER STYLES - BOLD & FUNCTIONAL
   ================================================ */
.site-header {
    background-color: var(--primary-color);
    color: var(--text-on-primary);
    padding: 0.75rem 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    position: relative;
}

.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: 0.75rem;
}

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

.site-logo {
    height: 40px;
    width: auto;
    max-width: 100px;
    object-fit: contain;
    border-radius: 4px;
}

/* Header Image Container Overrides for Convenience Store Template */
.header-image-container .site-logo {
    height: auto;
    max-height: 80px;
    max-width: none;
    border-radius: 4px;
    aspect-ratio: 2/1;
}

.site-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-on-primary);
    margin: 0;
    letter-spacing: 0.5px;
    white-space: nowrap;
    text-transform: uppercase;
}

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

.site-nav a {
    color: var(--text-on-primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
    transition: all 0.2s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.site-nav a:hover {
    background-color: var(--text-on-primary);
    color: var(--primary-color);
}

.site-header .phone-link {
    background-color: var(--secondary-color) !important;
    color: var(--text-on-secondary) !important;
    padding: 0.75rem 1.25rem !important;
    border-radius: 4px !important;
    font-weight: 800 !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    font-size: 1rem !important;
}

.site-header .phone-link:hover {
    background-color: var(--text-on-secondary) !important;
    color: var(--secondary-color) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4) !important;
}

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

/* ================================================
   HOME PAGE - QUICK SERVICE HERO
   ================================================ */
.hero-section {
    background-color: var(--secondary-color);
    color: var(--text-on-secondary);
    padding: 3rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.store-name {
    font-size: 2.75rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.store-subheading {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.3;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.hero-section .phone-link:hover {
    background-color: var(--secondary-color);
    color: var(--text-on-secondary) !important;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.hero-section .phone-link:active {
    transform: translateY(0);
}

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

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

.rating-number {
    font-size: 1.2rem;
    font-weight: 800;
    background-color: var(--primary-color);
    color: var(--text-on-primary);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    border: 2px solid var(--primary-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

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

    .store-subheading {
        font-size: 1.1rem;
        margin-bottom: 1.75rem;
    }

    .hero-section .phone-link {
        font-size: 1.1rem;
        padding: 0.85rem 1.75rem;
        margin-top: 0.75rem;
    }
    
    .rating-display {
        flex-direction: column;
        gap: 1rem;
    }
}

/* ================================================
   QUICK INFO SECTION - FAST & ACCESSIBLE
   ================================================ */
.quick-info-section {
    padding: 3rem 0;
    background-color: var(--background-color);
}

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

.info-item {
    background-color: var(--background-color);
    padding: 1.5rem;
    border-radius: 6px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 2px solid var(--primary-color);
}

.info-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.info-item h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

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

.info-item p {
    font-size: 0.95rem;
    color: var(--text-on-background);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.hours-list p {
    padding: 0.3rem 0;
    border-bottom: 1px solid var(--primary-color);
    font-weight: 700;
}

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

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

/* ================================================
   CONTACT SECTION - URGENT CALL-TO-ACTION
   ================================================ */
.contact-section {
    padding: 3rem 0;
    background: var(--primary-color);
    color: var(--text-on-primary);
    text-align: center;
}

.contact-content h2 {
    font-size: 2.25rem;
    font-weight: 900;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.contact-button {
    display: inline-block;
    padding: 1rem 1.75rem;
    background-color: var(--secondary-color);
    color: var(--text-on-secondary);
    text-decoration: none;
    font-weight: 800;
    font-size: 1rem;
    border-radius: 4px;
    transition: all 0.2s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    min-width: 150px;
    border: 2px solid var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-button:hover {
    background-color: var(--text-on-primary);
    color: var(--primary-color);
    border-color: var(--text-on-primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.phone-button::before {
    content: "📞 ";
}

.website-button::before {
    content: "🌐 ";
}

.email-button::before {
    content: "✉️ ";
}

@media (max-width: 768px) {
    .contact-section {
        padding: 2.5rem 0;
    }
    
    .contact-content h2 {
        font-size: 1.9rem;
    }
    
    .contact-methods {
        flex-direction: column;
        align-items: center;
        gap: 1.25rem;
    }
    
    .contact-button {
        min-width: 200px;
    }
}

/* ================================================
   FOOTER STYLES - SIMPLE & DIRECT
   ================================================ */
.site-footer {
    background-color: var(--primary-color);
    color: var(--text-on-primary);
    padding: 2rem 0 1.25rem;
    margin-top: 1.5rem;
    border-top: 3px solid var(--secondary-color);
}

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

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

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

.footer-phone a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
    outline: none;
}

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

.footer-nav a {
    color: var(--text-on-primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: color 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-nav a:hover {
    color: var(--secondary-color);
}

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

/* ================================================
   MENU PAGE STYLES
   ================================================ */
.menu-section {
    padding: 2.5rem 0;
}

.menu-section h1 {
    text-align: center;
    font-size: 2.25rem;
    color: var(--primary-color);
    margin-bottom: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.menu-image {
    background: var(--background-color);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 2px solid var(--primary-color);
}

.menu-image:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

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

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .menu-images-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

.menu-category {
    margin-bottom: 2.5rem;
    background-color: var(--background-color);
    padding: 1.75rem;
    border-radius: 6px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--primary-color);
}

.menu-category h2 {
    color: var(--secondary-color);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--secondary-color);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

.menu-item-info h3 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.menu-item-price {
    color: var(--secondary-color);
    font-weight: 900;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-left: 1rem;
}

@media (max-width: 768px) {
    .menu-item {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .menu-item-price {
        margin-left: 0;
        align-self: flex-end;
        font-size: 1rem;
    }
}

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

.about-section h1 {
    text-align: center;
    font-size: 2.25rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content {
    background-color: var(--background-color);
    padding: 2rem;
    border-radius: 6px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--primary-color);
}

.about-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-on-background);
    opacity: 0.85;
    margin-bottom: 1.25rem;
    font-weight: 600;
}

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

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

.contact-page-section h1 {
    text-align: center;
    font-size: 2.25rem;
    color: var(--primary-color);
    margin-bottom: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.contact-info-item {
    background-color: var(--background-color);
    padding: 1.75rem;
    border-radius: 6px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
    border: 2px solid var(--primary-color);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-info-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
}

.contact-info-item h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-info-item p {
    font-size: 0.95rem;
    color: var(--text-on-background);
    opacity: 0.85;
    font-weight: 600;
}

.contact-info-item a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 800;
}

.contact-info-item a:hover {
    color: var(--primary-color);
}

/* ================================================
   FORM STYLES - QUICK & FUNCTIONAL
   ================================================ */
.contact-form {
    max-width: 600px;
    margin: 1.5rem auto 0;
    background-color: var(--background-color);
    padding: 2rem;
    border-radius: 6px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--primary-color);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 800;
    color: var(--primary-color);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    font-size: 0.95rem;
    font-family: inherit;
    background-color: var(--background-color);
    color: var(--text-on-background);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    font-weight: 600;
}

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

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

.form-group select {
    cursor: pointer;
    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='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.75rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
    appearance: none;
}

.submit-button {
    width: 100%;
    margin-top: 1rem;
}

/* Form responsive design */
@media (max-width: 768px) {
    .contact-form {
        margin: 1rem 0 0;
        padding: 1.5rem;
    }
}

/* ================================================
   PHOTOS SECTION - QUICK DISPLAY
   ================================================ */
.photos-section {
    padding: 3rem 0;
    background-color: var(--background-color);
}

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

.photos-title {
    font-size: 2.25rem;
    font-weight: 900;
    color: var(--text-on-background);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.photos-carousel {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 3px solid var(--primary-color);
}

.photos-container {
    display: flex;
    transition: transform 0.6s ease;
}

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

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

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

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

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

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

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

.photo-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(139, 69, 19, 0.3);
    transition: all 0.2s ease;
    cursor: pointer;
    border: 2px solid var(--primary-color);
}

.photo-dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

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

/* Manual Navigation */
.photos-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    opacity: 0;
    z-index: 10;
    border: 2px solid white;
}

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

.photos-nav:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

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

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

/* ================================================
   FEATURED REVIEWS SECTION - QUICK SOCIAL PROOF
   ================================================ */
.featured-reviews-section {
    padding: 3rem 0;
    background-color: var(--background-color);
}

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

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

.reviews-title {
    font-size: 2.25rem;
    font-weight: 900;
    color: var(--text-on-background);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.overall-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

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

.rating-text {
    color: var(--text-on-background);
    font-weight: 800;
}

.rating-count {
    color: var(--text-on-background);
    font-size: 0.9rem;
    opacity: 0.8;
    font-weight: 700;
    margin-top: 0.25rem;
}

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

/* Individual Review Cards */
.review-card {
    background-color: var(--primary-color);
    color: var(--text-on-primary);
    border-radius: 6px;
    padding: 1.75rem;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid var(--secondary-color);
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

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

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

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

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

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

.review-author-name {
    font-size: 1rem;
    font-weight: 800;
    color: var(--text-on-primary);
    margin: 0 0 0.25rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

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

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

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

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

/* Google Attribution */
.google-attribution {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1rem;
    font-size: 0.75rem;
    color: var(--text-on-primary);
    opacity: 0.7;
    font-weight: 600;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    transition: opacity 0.2s ease;
}

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

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

    .photos-title {
        font-size: 1.9rem;
    }
    
    .photos-carousel {
        padding: 0 15px;
        border-radius: 6px;
    }

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

    .photos-nav {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

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

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

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

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

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

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

    .review-card {
        padding: 1.5rem;
    }

    .overall-rating {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .rating-stars {
        font-size: 1.25rem;
    }
}

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

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

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

    .photos-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

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

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

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

    .photos-dots {
        gap: 0.5rem;
    }

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

    .review-card {
        padding: 1.25rem;
    }

    .review-author-photo {
        width: 40px;
        height: 40px;
    }
    
    .review-author-name {
        font-size: 0.9rem;
    }

    .review-footer {
        margin-top: 0.75rem;
        padding-top: 0.5rem;
    }

    .review-date {
        font-size: 0.75rem;
        text-align: left;
    }

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

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

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

.info-item {
    animation: fadeInUp 0.6s 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: 2px solid var(--secondary-color);
    outline-offset: 2px;
}

/* 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;
    }
}

/* Animation for reviews appearing */
.review-card {
    animation: fadeInUp 0.5s 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; }
