/* About Page Styles - Following Tropical Style Guide */

/* Import base styles from main styles.css */
@import url('styles.css');

/* Textured Backgrounds with Transparent Overlay Images */

/* About Hero Section - Parallax Style */
.about-hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #3e5425;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 0, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(255, 255, 255, 0.02) 0%, transparent 30%),
        repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(0, 0, 0, 0.02) 2px, rgba(0, 0, 0, 0.02) 4px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.01) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.01) 1px, transparent 1px);
    background-size:
        100% 100%,
        100% 100%,
        100% 100%,
        20px 20px,
        50px 50px,
        50px 50px;
    background-attachment: fixed;
}

.about-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    pointer-events: none;
    z-index: 1;
}

.about-hero-container {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--white);
    padding: 80px 40px;
    max-width: 800px;
}

.about-hero h1 {
    font-family: 'Fondamento', cursive;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--white);
}

.about-hero h1 em {
    font-style: italic;
}

.about-hero p {
    font-family: 'Noto Sans', sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 30px;
}

.about-hero-container .cta-button:hover {
    background: transparent;
    border-color: var(--white);
    color: var(--white);
    box-shadow: 0 0 20px rgb(241, 234, 222, 0.6);
}

/* Story Section - Custom Content Layout */
.story-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
    background: var(--cream);
}

.story-image {
    position: relative;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.story-content {
    background-color: #3e5425;
    background-image: url("assets/backgrounds/xv.png");
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--white);
    position: relative;
}

.story-content h2 {
    font-family: 'Fondamento', cursive;
    font-size: 36px;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 25px;
    color: var(--white);
}

.story-content h2 em {
    font-style: italic;
}

.story-content p {
    font-family: 'Noto Sans', sans-serif;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 300;
}

.story-content p:last-of-type {
    margin-bottom: 0;
}

/* Testimonials Section */
.about-testimonials {
    padding: 100px 40px;
    position: relative;
    overflow: hidden;
    background-color: #F5F1E8;
    background-image:
        radial-gradient(circle at 30% 30%, rgba(237, 231, 220, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(232, 226, 215, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 50% 90%, rgba(245, 239, 228, 0.2) 0%, transparent 40%),
        repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(0, 0, 0, 0.008) 3px, rgba(0, 0, 0, 0.008) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 3px, rgba(0, 0, 0, 0.008) 3px, rgba(0, 0, 0, 0.008) 4px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, rgba(245, 241, 232, 0.2) 100%);
    background-size:
        100% 100%,
        100% 100%,
        100% 100%,
        100px 100px,
        100px 100px,
        100% 100%;
}

.about-testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.about-testimonial-carousel {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-testimonial-wrapper {
    position: relative;
    max-width: 900px;
}

.about-testimonial-track {
    position: relative;
    min-height: 300px;
}

.about-testimonial-card {
    display: none;
}

.about-testimonial-card.active {
    display: block;
}

.about-testimonial-content {
    background-color: #3e5425;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 0, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(255, 255, 255, 0.02) 0%, transparent 30%),
        repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(0, 0, 0, 0.02) 2px, rgba(0, 0, 0, 0.02) 4px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.01) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.01) 1px, transparent 1px);
    background-size:
        100% 100%,
        100% 100%,
        100% 100%,
        20px 20px,
        50px 50px,
        50px 50px;
    padding: 60px;
    border-radius: 8px;
    text-align: center;
    position: relative;
}

.about-testimonial-content blockquote {
    font-family: 'Fondamento', cursive;
    font-size: 22px;
    color: var(--white);
    line-height: 1.6;
    margin-bottom: 25px;
    font-weight: 400;
    font-style: italic;
}

.about-testimonial-content cite {
    font-family: 'Fondamento', cursive;
    font-size: 16px;
    color: var(--white);
    font-style: normal;
    font-weight: 400;
}

.about-testimonial-nav {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.about-testimonial-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--white);
    border: none;
    font-size: 24px;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-testimonial-arrow:hover {
    background: var(--coral);
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(173, 52, 62, 0.3);
}

/* Custom Elegance Section */
.custom-elegance-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
    background: var(--cream);
}

.elegance-content {
    background-color: #3e5425;
    background-image: url("assets/backgrounds/xv.png");
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--white);
}

.elegance-content h2 {
    font-family: 'Fondamento', cursive;
    font-size: 36px;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 25px;
    color: var(--white);
}

.elegance-content h2 em {
    font-style: italic;
}

.elegance-content p {
    font-family: 'Noto Sans', sans-serif;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 300;
}

.elegance-content .cta-button:hover {
    background: transparent;
    border-color: var(--white);
    color: var(--white);
    box-shadow: 0 0 20px rgb(241, 234, 222, 0.6);
}

.elegance-image {
    position: relative;
    overflow: hidden;
}

.elegance-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


/* Production Process Section */
.about-process-section {
    background-color: #f1ebe1;
    background-image: url("assets/backgrounds/old-wall.png");
    padding: 100px 40px;
    color: var(--text-dark);
}

.about-process-container {
    max-width: 1400px;
    margin: 0 auto;
}

.about-process-section h2 {
    font-family: 'Fondamento', cursive;
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 60px;
    font-weight: 400;
    text-align: center;
}

.about-process-section h2 em {
    font-style: italic;
}

.about-process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.about-process-item {
    text-align: center;
}

.about-process-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    background: rgba(62, 84, 37, 0.15);
    border: 2px solid rgba(62, 84, 37, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.about-process-icon::before {
    content: attr(data-number);
    font-family: 'Fondamento', cursive;
    font-size: 48px;
    font-weight: 400;
    color: var(--text-dark);
}

.about-process-item h3 {
    font-family: 'Fondamento', cursive;
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.about-process-item h3 em {
    font-style: italic;
}

.about-process-item p {
    font-family: 'Noto Sans', sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-dark);
}

/* FAQ Section */
.about-faq-section {
    background-color: #f1ebe1;
    background-image: url(assets/backgrounds/old-wall.png);
    padding: 100px 40px;
}

.about-faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.about-faq-section h2 {
    font-family: 'Fondamento', cursive;
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 50px;
    font-weight: 400;
    text-align: center;
}

.about-faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 25px 0;
}

.about-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: 'Fondamento', cursive;
    font-size: 22px;
    font-weight: 400;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.about-faq-question:hover {
    color: var(--coral);
}

.faq-toggle {
    font-size: 24px;
    transition: transform 0.3s ease;
    color: var(--coral);
}

.about-faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.about-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.about-faq-item.active .about-faq-answer {
    max-height: 500px;
    padding-top: 20px;
}

.about-faq-answer p {
    font-family: 'Noto Sans', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-dark);
    font-weight: 300;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .story-section,
    .custom-elegance-section {
        grid-template-columns: 1fr;
    }

    .about-process-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        min-height: 400px;
        padding: 120px 20px 60px;
    }

    .about-hero h1 {
        font-size: 32px;
    }

    .about-hero p {
        font-size: 15px;
    }

    .story-content,
    .elegance-content {
        padding: 60px 40px;
    }

    .story-content h2,
    .elegance-content h2 {
        font-size: 28px;
    }

    .about-process-section {
        padding: 80px 20px;
    }

    .about-process-section h2 {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .about-testimonial-content {
        padding: 40px 30px;
    }

    .about-testimonial-content blockquote {
        font-size: 18px;
    }

    .about-faq-section {
        padding: 80px 20px;
    }

    .about-faq-section h2 {
        font-size: 28px;
    }

    .about-faq-question {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 24px;
    }

    .about-hero p {
        font-size: 14px;
    }

    .story-content,
    .elegance-content {
        padding: 40px 20px;
    }

    .story-content h2,
    .elegance-content h2 {
        font-size: 24px;
    }

    .about-process-item h3 {
        font-size: 24px;
    }

    .about-process-icon {
        width: 100px;
        height: 100px;
    }

    .about-process-icon::before {
        font-size: 40px;
    }

    .about-testimonial-content blockquote {
        font-size: 16px;
    }

    .about-faq-question {
        font-size: 16px;
    }
}

/* ============================================
   ABOUT HISTORY SECTION
   ============================================ */
.about-history {
    background-color: #3e5425;
    background-image: url("assets/backgrounds/xv.png");
    padding: 80px 0;
    position: relative;
}

.about-history .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.about-history .section-title {
    font-family: 'Fondamento', cursive;
    font-size: 48px;
    color: var(--cream);
    text-align: center;
    margin-bottom: 60px;
    font-weight: 400;
}

.history-content {
    display: block;
    max-width: 1000px;
    margin: 0 auto;
}

.history-text {
    text-align: left;
    margin-bottom: 40px;
}

.history-subtitle {
    font-family: 'Fondamento', cursive;
    font-size: 28px;
    color: var(--gold-cta);
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.history-description {
    font-family: 'Noto Sans', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: var(--cream);
    margin-bottom: 25px;
}

.history-description strong {
    color: var(--gold-cta);
    font-weight: 600;
}

/* ============================================
   AWARDS BANNER
   ============================================ */
.awards-banner {
    background: rgba(199, 151, 69, 0.15);
    border: 2px solid var(--gold-cta);
    border-radius: 12px;
    padding: 40px;
    margin: 50px auto;
    max-width: 900px;
    text-align: center;
}

.awards-title {
    font-family: 'Fondamento', cursive;
    font-size: 32px;
    color: var(--gold-cta);
    margin-bottom: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.awards-images {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.award-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 20px;
    border-radius: 8px;
    background: rgba(241, 235, 225, 0.1);
}

.award-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(199, 151, 69, 0.3);
}

.award-badge img {
    max-width: 300px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin-bottom: 15px;
}

.award-caption {
    font-family: 'Noto Sans', sans-serif;
    font-size: 16px;
    color: var(--gold-cta);
    font-weight: 600;
    text-align: center;
    margin: 0;
}

.awards-description {
    font-family: 'Noto Sans', sans-serif;
    font-size: 14px;
    color: var(--cream);
    font-style: italic;
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   ANIMATED TIMELINE DIAGRAM
   ============================================ */
.timeline-diagram {
    position: relative;
    max-width: 1000px;
    margin: 0px;
    padding: 0px;
    min-height: 400px;
}

.timeline-line {
    position: absolute;
    top: 18%;
    left: 50px;
    right: 50px;
    height: 3px;
    background: var(--gold-cta);
}

.timeline-events {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    padding: 0 20px;
    height: 100%;
}

.timeline-event {
    position: relative;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    flex: 1;
    max-width: 190px;
    height: auto;
    min-height: 400px;
}

.timeline-event.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.timeline-event:nth-child(1).animate-in { transition-delay: 0.2s; }
.timeline-event:nth-child(2).animate-in { transition-delay: 0.4s; }
.timeline-event:nth-child(3).animate-in { transition-delay: 0.6s; }
.timeline-event:nth-child(4).animate-in { transition-delay: 0.8s; }
.timeline-event:nth-child(5).animate-in { transition-delay: 1.0s; }

/* Year positioned at top */
.timeline-year {
    position: absolute;
    top: 0%;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Noto Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--gold-cta);
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(199, 151, 69, 0.1);
    padding: 8px 12px;
    border-radius: 20px;
    border: 2px solid var(--gold-cta);
    white-space: nowrap;
}

/* Circle positioned at 18% (on the line) */
.timeline-circle {
    position: absolute;
    top: 18%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--gold-cta);
    z-index: 3;
    border: 3px solid var(--dark-green);
}

/* Content positioned below the circle */
.timeline-content {
    position: absolute;
    top: 26%;
    left: 0;
    right: 0;
    background: rgba(199, 151, 69, 0.1);
    padding: 18px 14px;
    border-radius: 20px;
    border: 2px solid rgba(199, 151, 69, 0.3);
    min-height: auto;
}

.timeline-content h4 {
    font-family: 'Noto Sans', sans-serif;
    font-size: 17px;
    color: var(--gold-cta);
    margin-bottom: 10px;
    font-weight: 600;
    line-height: 1.3;
}

.timeline-content p {
    font-family: 'Noto Sans', sans-serif;
    font-size: 13px;
    color: var(--cream);
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   RESPONSIVE ADJUSTMENTS - HISTORY SECTION
   ============================================ */
@media (max-width: 768px) {
    .about-history {
        padding: 60px 0;
    }

    .about-history .container {
        padding: 0 20px;
    }

    .about-history .section-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .timeline-diagram {
        display: none;
    }

    /* Awards banner tablet optimization */
    .awards-banner {
        padding: 30px 20px;
        margin: 35px auto;
    }

    .awards-title {
        font-size: 26px;
        margin-bottom: 25px;
    }

    .awards-images {
        gap: 25px;
        flex-direction: column;
    }

    .award-badge img {
        max-width: 220px;
    }

    .award-caption {
        font-size: 14px;
    }

    .awards-description {
        font-size: 13px;
    }

    .history-subtitle {
        font-size: 22px;
    }

    .history-description {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .about-history .section-title {
        font-size: 28px;
    }

    .timeline-diagram {
        min-height: 350px;
    }

    .timeline-event {
        max-width: 110px;
        height: auto;
        min-height: 350px;
    }

    .timeline-year {
        font-size: 10px;
        padding: 5px 8px;
    }

    .timeline-content {
        padding: 14px 10px;
        min-height: auto;
        top: 26%;
    }

    .timeline-content h4 {
        font-size: 12px;
        margin-bottom: 6px;
    }

    .timeline-content p {
        font-size: 10.5px;
        line-height: 1.5;
    }

    /* Awards banner mobile optimization */
    .awards-banner {
        padding: 25px 15px;
        margin: 30px auto;
    }

    .awards-title {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .awards-images {
        flex-direction: column;
        gap: 25px;
    }

    .award-badge {
        padding: 15px;
    }

    .award-badge img {
        max-width: 200px;
    }

    .award-caption {
        font-size: 13px;
    }

    .awards-description {
        font-size: 12px;
    }

    .history-subtitle {
        font-size: 18px;
    }

    .history-description {
        font-size: 14px;
    }
}

/* ============================================
   AWARDS COLLAGE
   ============================================ */
.awards-collage {
    margin-top: 0px;
    padding: 20px 0;
}

.awards-collage-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.awards-collage-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.awards-collage-img:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 30px rgba(199, 151, 69, 0.4);
}

/* First image takes left column, both rows */
.awards-collage-img:nth-child(1) {
    grid-column: 1;
    grid-row: 1 / 3;
    min-height: 400px;
}

/* Second image takes top right */
.awards-collage-img:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
    min-height: 190px;
}

/* Third image takes bottom right */
.awards-collage-img:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
    min-height: 190px;
}

/* ============================================
   AWARDS LIGHTBOX
   ============================================ */
.awards-lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.awards-lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 4px 30px rgba(199, 151, 69, 0.5);
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: var(--cream);
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10000;
    line-height: 1;
    user-select: none;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: var(--gold-cta);
    transform: scale(1.1);
}

.lightbox-caption {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--cream);
    font-family: 'Noto Sans', sans-serif;
    font-size: 16px;
    text-align: center;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 8px;
    max-width: 80%;
}

/* Responsive adjustments for awards collage */
@media (max-width: 768px) {
    .awards-collage {
        margin-top: 40px;
        padding: 30px 0;
    }

    .awards-collage-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 15px;
        padding: 0 20px;
    }

    .awards-collage-img:nth-child(1),
    .awards-collage-img:nth-child(2),
    .awards-collage-img:nth-child(3) {
        grid-column: 1;
        grid-row: auto;
        min-height: 250px;
    }

    /* Lightbox mobile adjustments */
    .lightbox-close {
        top: 15px;
        right: 20px;
        font-size: 40px;
    }

    .lightbox-content {
        max-width: 95%;
        max-height: 85vh;
    }

    .lightbox-caption {
        font-size: 14px;
        bottom: 20px;
        padding: 8px 15px;
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .awards-collage {
        margin-top: 30px;
        padding: 20px 0;
    }

    .awards-collage-grid {
        gap: 12px;
        padding: 0 15px;
    }

    .awards-collage-img:nth-child(1),
    .awards-collage-img:nth-child(2),
    .awards-collage-img:nth-child(3) {
        min-height: 200px;
    }

    /* Lightbox small mobile adjustments */
    .lightbox-close {
        top: 10px;
        right: 15px;
        font-size: 35px;
    }

    .lightbox-content {
        max-width: 98%;
        max-height: 80vh;
    }

    .lightbox-caption {
        font-size: 12px;
        bottom: 15px;
        padding: 6px 12px;
        max-width: 95%;
    }

    .awards-lightbox.active {
        padding: 10px;
    }
}
