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

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo h2 {
    color: #8B4513;
    font-size: 1.8rem;
    font-weight: 700;
}

.logo i {
    color: #8B4513;
    font-size: 1.5rem;
    animation: gentle-float 3s ease-in-out infinite;
}

@keyframes gentle-float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-3px); }
}

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

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 400;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.nav-menu a:hover {
    color: #8B4513;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4));
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

/* Hero Top Title */
.hero-top-title {
    position: absolute;
    top: 120px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
    width: 100%;
    max-width: 800px;
    padding: 0 20px;
}

.hero-top-title h1 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.hero-top-title p {
    font-size: 1.4rem;
    margin: 0;
    color: white;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
    font-weight: 300;
}

/* Hero Roof Text */
.hero-roof-text {
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(220, 20, 60, 0.9);
    padding: 15px 30px;
    border-radius: 8px;
    text-align: center;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.hero-roof-text h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-roof-text p {
    font-size: 1rem;
    margin: 0;
    color: white;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: #8B4513;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

.cta-button:hover {
    background: #A0522D;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.4);
}

/* Hero Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.5rem;
    animation: bounce-down 2s infinite;
    cursor: pointer;
}

@keyframes bounce-down {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Hero Decorative Elements */
.hero-decorative-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

.floating-element {
    position: absolute;
    color: rgba(255, 255, 255, 0.2);
    font-size: 2rem;
    animation: float-animation 6s ease-in-out infinite;
}

.element-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.element-2 {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.element-3 {
    bottom: 40%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float-animation {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.2; }
    50% { transform: translateY(-20px) rotate(10deg); opacity: 0.4; }
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.9), rgba(160, 82, 45, 0.9));
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

/* Enhanced CTA Group */
.cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.cta-button.primary {
    background: linear-gradient(135deg, #8B4513, #A0522D);
    /* ...existing code... */
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    /* ...existing code... */
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.cta-button i {
    margin-right: 0.5rem;
}

/* Hero Bottom Content */
.hero-bottom-content {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
    width: 100%;
    max-width: 800px;
    padding: 0 20px;
}

.hero-bottom-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.hero-bottom-content .hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
    font-weight: 300;
}

.hero-bottom-content .hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: white;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Story Section */
.story-section {
    padding: 100px 0;
    background: #fafafa;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text h2 {
    font-size: 2.5rem;
    color: #8B4513;
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.story-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.story-text strong {
    color: #8B4513;
    font-style: italic;
}

.image-placeholder {
    background: #e9e9e9;
    border: 2px dashed #ccc;
    border-radius: 10px;
    padding: 60px 20px;
    text-align: center;
    color: #999;
}

.image-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

/* Story Photo */
.story-photo {
    width: 100%;
    max-width: 500px;
    height: auto;
    min-height: 400px;
    max-height: 450px;
    object-fit: cover;
    object-position: center top;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
    loading: lazy;
}

.story-photo:hover {
    transform: scale(1.05);
}

/* Menu Section */
.menu-section {
    padding: 100px 0;
    background: white;
}

.menu-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #8B4513;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.menu-category {
    background: #fafafa;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.menu-category h3 {
    font-size: 1.5rem;
    color: #8B4513;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.menu-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

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

.menu-item h4 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 0.5rem;
}

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

.item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.1), rgba(160, 82, 45, 0.05));
    color: #8B4513;
    border-radius: 50%;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.item-content {
    flex: 1;
}

.featured-item {
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.05), rgba(160, 82, 45, 0.02));
    border-radius: 10px;
    padding: 1rem;
    border: 1px solid rgba(139, 69, 19, 0.1);
}

.popular-tag {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

.item-features {
    margin-top: 0.5rem;
}

.feature {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.8rem;
    color: #8B4513;
    background: rgba(139, 69, 19, 0.1);
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
}

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    background: #fafafa;
}

.gallery-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #8B4513;
    margin-bottom: 3rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item .image-placeholder {
    background: #e9e9e9;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0;
    border-radius: 0;
    border: none;
}

/* Gallery Photos - Optimized for faster loading */
.gallery-photo {
    width: 100%;
    height: 200px;
    max-height: 200px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
    loading: lazy;
}

.gallery-item:hover .gallery-photo {
    transform: scale(1.05);
}

/* Location Section */
.location-section {
    padding: 100px 0;
    background: white;
}

.location-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #8B4513;
    margin-bottom: 3rem;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.location-info h3 {
    font-size: 1.8rem;
    color: #8B4513;
    margin-bottom: 1rem;
}

.location-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #666;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
}

.contact-item i {
    color: #8B4513;
    width: 20px;
}

/* Map Container */
.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    height: 300px;
    transition: transform 0.3s ease;
}

.map-container:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 15px;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: #8B4513;
    color: white;
    text-align: center;
}

.contact-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.1);
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    border: 2px solid rgba(255,255,255,0.2);
}

.social-link:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.facebook-link {
    background: #1877F2 !important;
    border-color: #1877F2 !important;
}

.facebook-link:hover {
    background: #166FE5 !important;
    transform: translateY(-2px);
}

.tripadvisor-link {
    background: #00AA6C !important;
    border-color: #00AA6C !important;
}

.tripadvisor-link:hover {
    background: #009960 !important;
    transform: translateY(-2px);
}

.contact-message {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Footer */
.footer {
    background: #5D2E0A;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

.footer p {
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.footer-credit {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-credit p {
    font-size: 0.9rem;
    opacity: 0.7;
}

.footer-credit a {
    color: #F5DEB3;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-credit a:hover {
    color: #FFF8DC;
    text-decoration: underline;
}

/* Language Toggle */
.language-toggle {
    display: flex;
    gap: 0.5rem;
    margin-left: 1rem;
}

.lang-btn {
    background: transparent;
    border: 2px solid #8B4513;
    color: #8B4513;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background: #8B4513;
    color: white;
}

.lang-btn.active {
    background: #8B4513;
    color: white;
}

/* Section Decoration */
.section-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.decoration-line {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #8B4513, transparent);
}

.section-decoration i {
    color: #8B4513;
    font-size: 1.2rem;
}

/* Experience Badge */
.experience-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, #8B4513, #A0522D);
    color: white;
    padding: 1rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.3);
    float: right;
    margin-left: 1rem;
    margin-bottom: 1rem;
}

.badge-number {
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.badge-text {
    font-size: 0.8rem;
    text-align: center;
    opacity: 0.9;
}

/* Quote Highlight */
.quote-highlight {
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.1), rgba(160, 82, 45, 0.05));
    border-left: 4px solid #8B4513;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 10px 10px 0;
    position: relative;
}

.quote-highlight i {
    position: absolute;
    top: 10px;
    left: 15px;
    color: #8B4513;
    font-size: 1.5rem;
    opacity: 0.7;
}

.quote-highlight p {
    margin: 0;
    padding-left: 2rem;
    font-style: italic;
    color: #8B4513;
}

/* Story Stats */
.story-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    flex: 1;
}

.stat-item i {
    color: #8B4513;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #8B4513;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 0.85rem;
    color: #666;
    text-align: center;
}

/* Image Frame Enhancement */
.image-frame {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    background: transparent;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.8), rgba(0, 0, 0, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.image-frame:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    text-align: center;
}

.overlay-content i {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.overlay-content span {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Enhanced Menu Section */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.specialty-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.1), rgba(160, 82, 45, 0.05));
    color: #8B4513;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(139, 69, 19, 0.2);
}

/* Enhanced Menu Categories */
.menu-category.featured {
    border: 2px solid #8B4513;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.02), white);
    position: relative;
    overflow: visible;
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.specialty-tag {
    background: linear-gradient(135deg, #8B4513, #A0522D);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-top-title h1 {
        font-size: 2.5rem;
    }
    
    .hero-top-title p {
        font-size: 1.1rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-bottom-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-bottom-content .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-bottom-content .hero-description {
        font-size: 1rem;
    }
    
    .story-content,
    .location-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .cta-group {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    .cta-button {
        width: 100%;
        max-width: 250px;
    }
    
    .experience-badge {
        float: none;
        margin: 0 auto 1.5rem auto;
    }
    
    .story-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .quote-highlight {
        margin: 1.5rem 0;
        padding: 1rem;
    }
    
    .specialty-badges {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .floating-element {
        display: none;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 6px 15px;
    }
}

@media (max-width: 480px) {
    .hero-top-title {
        top: 100px;
    }
    
    .hero-top-title h1 {
        font-size: 2rem;
    }
    
    .hero-top-title p {
        font-size: 1rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-bottom-content {
        bottom: 60px;
    }
    
    .hero-bottom-content h1 {
        font-size: 2rem;
    }
    
    .hero-bottom-content .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-bottom-content .hero-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .menu-category {
        padding: 1.5rem;
    }
    
    .story-section,
    .menu-section,
    .gallery-section,
    .location-section,
    .contact-section {
        padding: 60px 0;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 5px 12px;
    }
    
    .story-stats {
        gap: 0.8rem;
    }
    
    .stat-item {
        padding: 0.8rem;
    }
    
    .badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
    
    .quote-highlight i {
        font-size: 1.2rem;
    }
    
    .quote-highlight p {
        padding-left: 1.5rem;
        font-size: 1rem;
    }
}

/* Responsive image sizing */
@media (max-width: 768px) {
    .gallery-photo {
        height: 180px;
        max-height: 180px;
    }
    
    .story-photo {
        max-width: 100%;
        min-height: 350px;
        max-height: 400px;
        object-position: center top;
    }
}

@media (max-width: 480px) {
    .gallery-photo {
        height: 150px;
        max-height: 150px;
    }
    
    .story-photo {
        min-height: 300px;
        max-height: 350px;
        object-position: center top;
    }
}