/* ============================================
   Global Styles & Reset
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

h1, h2, h3 {
    line-height: 1.2;
    margin-bottom: 1rem;
}

/* ============================================
   Hero / ATF Section
   ============================================ */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem 1.25rem;
    overflow: hidden;
    isolation: isolate;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -2;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

.hero-content {
    max-width: 720px;
    text-align: center;
    color: #fff;
}

.hero-logo {
    width: 90px;
    height: auto;
    margin: 0 auto 1.5rem;
    filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.4));
}

.hero h1 {
    font-family: 'Buenard', Georgia, 'Times New Roman', serif;
    font-size: clamp(2rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: #fff;
    text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-family: 'Proza Libre', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(1rem, 2.2vw, 1.25rem);
    font-weight: 500;
    line-height: 1.4;
    color: #fff;
    text-shadow: 2px 4px 2px rgba(0, 0, 0, 0.25);
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    background-color: #f5a000;
    color: #1e1e1e;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    cursor: pointer;
}

.cta-button:hover {
    background-color: #d98c00;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

/* ============================================
   Journey Section (First Fold)
   ============================================ */
.journey {
    padding: 4rem 2rem;
    background-color: #fff;
}

.journey-content {
    max-width: 800px;
    margin: 0 auto;
}

.journey h2 {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    color: #1a1a1a;
    margin-bottom: 2rem;
    text-align: center;
}

.journey-text p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1.3rem;
    line-height: 1.8;
}

.journey-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    margin-top: 2.5rem;
}

.journey-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4 / 5;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

/* ============================================
   Media / Awards Section
   ============================================ */
.media {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f9f7f4 0%, #fefdfb 100%);
}

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

.media-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 2rem;
    align-items: center;
    justify-items: center;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    padding: 1rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.logo-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.logo-item img {
    max-width: 100%;
    max-height: 60px;
    width: auto;
    height: auto;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background-color: #2a2a2a;
    color: #fff;
    padding: 3rem 2rem 2rem;
}

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

.footer-content {
    margin-bottom: 2rem;
}

.footer-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #d4571d;
}

.footer-details {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-details p {
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.6;
}

.footer-details strong {
    color: #fff;
    font-weight: 600;
}

.footer-copyright {
    text-align: center;
    font-size: 0.85rem;
    color: #999;
    padding-top: 2rem;
    border-top: 1px solid #444;
}

/* ============================================
   Responsive Design - Tablet (768px)
   ============================================ */
@media (max-width: 768px) {
    .hero {
        padding: 2rem 0.75rem;
    }

    .hero-content {
        max-width: 100%;
    }

    .journey h2 {
        font-size: 1.5rem;
    }

    .journey-gallery {
        grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    }

    .media-logos {
        grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
        gap: 1.5rem;
    }

    .logo-item {
        height: 70px;
        padding: 0.8rem;
    }

    .logo-item img {
        max-height: 50px;
    }
}

/* ============================================
   Responsive Design - Mobile (480px)
   ============================================ */
@media (max-width: 480px) {
    body {
        font-size: 14px;
    }

    .hero {
        padding: 1.5rem 0.625rem;
    }

    .hero-logo {
        width: 70px;
    }

    .hero h1 {
        font-size: 42px;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 18px;
        line-height: 1.4;
    }

    .cta-button {
        padding: 0.7rem 1.8rem;
        font-size: 0.85rem;
    }

    .journey {
        padding: 2rem 1rem;
    }

    .journey h2 {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }

    .journey-text p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .journey-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .media {
        padding: 2rem 1rem;
    }

    .media-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .logo-item {
        height: 60px;
        padding: 0.6rem;
    }

    .logo-item img {
        max-height: 40px;
    }

    .footer {
        padding: 2rem 1rem 1.5rem;
    }

    .footer-content h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .footer-details p {
        font-size: 0.85rem;
    }
}

/* ============================================
   Accessibility & Print
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

@media print {
    .cta-button {
        border: 1px solid #333;
        color: #333;
    }

    .logo-item {
        page-break-inside: avoid;
    }
}
