/* ==========================================
   ANTOLOGA LANDING PAGE STYLES
   60/40 Split Layout
   Using Antologa color variables & proper unit system
   ========================================== */

/* Container */
.landing-hero-section-container {
    max-width: 100vw !important;
    width: 100%;
    padding: 0 !important;
    margin: 0 !important;
    height: 100vh !important;
    overflow: hidden !important;
}

/* Grid */
.landing-hero-section-grid {
    display: grid !important;
    grid-template-columns: repeat(12,1fr) !important;
    gap: 0 !important;
    width: 100%;
    height: 100vh !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Hero Image Section - 60% width */
.hero-image-container {
    padding: 0 !important;
    grid-column: 1 / 8;
    height: 100vh !important;
    position: relative !important;
    overflow: hidden !important;
}

.hero-image {
    width: 100% !important;
    height: 100% !important;
    position: relative !important;
}

    .hero-image img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center !important;
        /* Animation Properties */
        animation: parallaxZoom 20s ease-in-out infinite alternate;
        /* Optional: ensures smooth rendering during transform */
        backface-visibility: hidden;
        will-change: transform;
    }

    /* Parallax Zoom Keyframes */
    @keyframes parallaxZoom {
        0% {
            transform: scale(1);
        }

        100% {
            transform: scale(1.15); /* Adjust scale for subtle or dramatic effect */
        }
    }

/* Hero Content Section - 40% width */
.landing-hero-content-container {
    padding: 0 !important;
    width: 100%;
    max-height: 100vh !important;
    height: 100%;
    grid-column: 8 / 13;
    background-color: var(--antologa-white) !important;
    display: flex !important;
    flex-direction: column;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto;
}

.landing-hero-content {
    width: 60% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    justify-content: center !important;
    margin: 0 auto !important;
    padding: 0 !important;
    height: 100vh;
}

/* Logo */
.hero-content-logo {
    width: 14rem !important;
    height: auto !important;
    padding: 1rem 0;
}

/* Text Block */
.landing-hero-textblock {
    width: 100%;
    margin: 0 !important;
    padding: 0;
}

.landing-tagline {
    font-family: Inter;
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.175rem;
    text-transform: uppercase;
    color: var(--antologa-gray);
    margin-bottom: 2rem;
}

.landing-title {
    font-family: Inter;
    font-size: 2.625rem;
    font-weight: 800 !important;
    line-height: 1.2;
    letter-spacing: 0.05rem;
    color: var(--antologa-dark);
}

.landing-body {
    font-family: Nunito;
    font-size: .9rem;
    line-height: 1.6;
    letter-spacing: 0.050rem;
    color: var(--antologa-dark);
    padding: 2rem 0;
}

/* CTA Button */
.hero-cta-btn {
    background-color: var(--antologa-primary);
    color: white;
    font-family: Inter;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.125rem;
    padding: 1em 2em;
    border-radius: 1rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    width: 100%;
}

    .hero-cta-btn:hover {
        background-color: var(--antologa-secondary);
        box-shadow: 0 4px 12px rgba(7, 130, 130, 0.3);
    }

/* Pre-registration Text */
.preregistration {
    font-family: Nunito;
    font-size: 0.875rem;
    color: var(--antologa-gray);
}

.preregistration-status {
    color: var(--antologa-primary);
    font-weight: 600;
}

/* Footer */
.landing-footer {
    display: flex;
    flex-direction: column;
    padding: 2rem 0;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
}


.support-btn-info-text {
    font-size: 0.875rem;
}

.support-btn-container {
    padding: 2rem 0 0 0;
}

.support-btn {
    width: auto;
    color: var(--antologa-primary);
    padding: 0.65rem 1rem;
    border-radius: 1rem;
    border-color: var(--antologa-primary);
}

.support-btn-text {
    font-size: 0.75rem;
}


    .support-btn:hover {
        background-color: var(--antologa-lightgray);
        color: var(--antologa-secondary);
        border-color: var(--antologa-secondary);
    }

    .support-btn-text:hover {
        color: var(--antologa-dark);
    }

.landing-footer-text {
    font-family: Nunito;
    font-size: 0.8rem;
    color: var(--antologa-dark);
}

.landing-footer-icons {
    width: 100%;
    display: flex;
    flex-direction: row;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}

.landing-icon {
    width: 2.5rem;
    height: auto;
    padding: 0.5rem;
    margin: 0 0.25rem;
    color: var(--antologa-primary);
    background-color: var(--antologa-white);
}
    
    .landing-icon:hover {
        color: var(--antologa-white);
        background-color: var(--antologa-primary);
    }



/* Responsive Design - Mobile-First Approach */

/* Large tablets and small desktops */
@media (max-width: 1279px) {
    .landing-hero-content {
        max-width: 75% !important;
    }

    .landing-title {
        font-size: 2.25rem;
    }

    .landing-hero-content-container {
        height: 100vh !important;
    }

    .landing-hero-section-container {
        height: 100vh;
    }

    /* Tablets and below - Hide hero image */
    @media (max-width: 960px) {
        .landing-hero-section-grid {
            grid-template-columns: 1fr !important;
        }

        /* Hide hero image completely */
        .hero-image-container {
            display: none !important;
        }

        /* Content takes full width */
        .landing-hero-content-container {
            grid-column: 1 / -1 !important;
            min-height: 100vh !important;
        }

        .landing-hero-content {
            max-width: 85% !important;
        }

        .hero-content-logo {
            width: 13.75rem !important;
        }

        .landing-title {
            font-size: 2rem;
        }
    }

    /* Mobile phones */
    @media (max-width: 600px) {
        .landing-hero-content {
            max-width: 90% !important;
        }

        .hero-content-logo {
            width: 11.25rem !important;
        }

        .landing-title {
            font-size: 1.75rem;
        }

        .landing-body {
            font-size: 0.875rem;
        }

        .hero-cta-btn {
            font-size: 0.875rem;
            padding: 0.875em 1.75em;
        }
    }

    /* Extra small devices */
    @media (max-width: 400px) {
        .hero-content-logo {
            width: 9.375rem !important;
        }

        .landing-title {
            font-size: 1.5rem;
        }

        .landing-body {
            font-size: 0.8125rem;
        }
    }
}