/**
 * Landing Page Variation Styles
 * EXACT 1:1 migration from React styled-components
 * Source: src/screens/Landing/styles.tsx, src/components/LandingPageVariations/
 */

/* ===== HEADER STYLES ===== */
/* HeaderContainer - Exact from SectionStickyHeaderLogo.tsx:387-405 */
.header-container {
    z-index: 100;
    background-color: var(--color-white);
    min-height: 70px;
    display: flex;
    align-items: center;
    flex-direction: row;
    position: sticky;
    width: 100%;
    left: 0;
    top: 0;
    padding: 10px 16px;
    justify-content: center;
    box-shadow: var(--shadow-default);
}

@media (min-width: 600px) {
    .header-container {
        padding: 10px 45px;
    }
}

.header-inner {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    max-width: 1024px;
}

.cta-button-wrapper {
    width: 100%;
}

/* Header Actions */
.header-actions {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}

/* HeaderLogoAStyle - Exact from SectionStickyHeaderLogo.tsx:422-427 */
.header-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 40px;
}

/* HeaderLogoStyle - Exact from SectionStickyHeaderLogo.tsx:407-414 */
.header-logo-icon {
    max-width: 32px;
    width: calc(100vw - 300px);
    display: none;
}

@media (min-width: 320px) {
    .header-logo-icon {
        display: block;
    }
}

/* HeaderNameStyle - Exact from SectionStickyHeaderLogo.tsx:416-420 */
.header-logo-text {
    max-width: 120px;
    max-height: 28px;
    margin-left: 8px;
}

/* LoginButtonStyle - Exact from SectionStickyHeaderLogo.tsx:429-446 */
.header-cta-button {
    display: flex;
    color: var(--color-white);
    text-decoration: none;
    border-radius: 5px;
    background-color: var(--color-primary);
    cursor: pointer;
    border: none;
    padding: 8px 16px;
    font-weight: bold;
}

.header-cta-button:hover {
    text-decoration: none;
    color: var(--color-white);
    background-color: var(--color-brand-blue-dark);
}

/* ===== PAGE LAYOUT ===== */
/* PageContainer - Exact from styles.tsx:73 */
.page-container {
    padding: 0px;
    width: 100%;
    display: flex;
    flex-direction: column;
    flex: 1;
    z-index: var(--z-base);
}

/* SectionWrapper - Exact from styles.tsx:50 */
.section-wrapper {
    background-color: var(--color-white);
    padding: 0px;
    padding-top: 0px;
    padding-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
}

/* HeaderWrapper - Exact from styles.tsx:114 */
.header-wrapper {
    display: flex;
    flex-direction: column;
    width: 90%;
    max-width: 1000px;
}

@media (min-width: 768px) {
    .header-wrapper {
        flex-direction: row;
    }
}

/* LeftSection - Exact from styles.tsx:95 */
.left-section {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    flex: 2;
    width: 100%;
    padding-right: 0px;
    padding-top: 40px;
}

@media (min-width: 768px) {
    .left-section {
        min-width: 400px;
        width: 40vw;
        justify-content: center;
        align-items: flex-start;
        padding-right: 20px;
    }
}

/* CTAContainer - Exact from styles.tsx:60 */
.cta-container {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

@media (min-width: 768px) {
    .cta-container {
        align-items: flex-start;
        justify-content: flex-start;
    }
}

/* LandingBody - Exact from styles.tsx:124 */
.landing-body {
    z-index: var(--z-base);
    background-color: var(--color-white);
    padding: 0px 15px;
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    overflow: hidden;
}

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

/* Video Background - Exact from Variation.tsx:344-385 */
.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scaleX(-1);
}

/* Video Overlay Gradient - Exact from Variation.tsx:372-384 */
.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.05));
}

@media (min-width: 768px) {
    .hero-video-overlay {
        background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.05));
    }
}

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

/* ===== CTA BUTTON STYLES ===== */
/* CTAAlignmentWrapper - Exact from elements/styles.tsx:4 */
.cta-alignment-wrapper {
    padding-inline: 16px;
    width: 100%;
    display: flex;
    justify-content: center;
}

@media (min-width: 768px) {
    .cta-alignment-wrapper {
        justify-content: flex-start;
    }
}

.cta-alignment-wrapper.center-always {
    justify-content: center;
}

/* CTA Button - Exact from PrimaryCTA.tsx:56 */
.cta-button {
    color: var(--color-white);
    text-decoration: none;
    border-radius: var(--roundness);
    border: none;
    background-color: var(--color-primary);
    cursor: pointer;
    text-align: center;
    width: 100%;
    padding: 16px 16px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    max-width: 400px;
    margin-top: 40px;
    margin-left: 20px;
    margin-right: 20px;
    font-size: 1.2rem;
    min-height: 56px;
}

/* Mobile: Bigger button with less side margins, full width */
@media (max-width: 768px) {
    .cta-button {
        margin-left: 10px;
        margin-right: 10px;
        padding: 18px 16px;
        font-size: 1.25rem;
        min-height: 60px;
        max-width: none;
    }
}

.cta-button:hover {
    text-decoration: none;
    color: var(--color-white);
    background-color: var(--color-brand-blue-dark);
}

.cta-button .cta-label {
    font-weight: bold;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .cta-button .cta-label {
        font-size: 1.25rem;
    }
}

.cta-button .cta-sublabel {
    font-weight: light;
    margin-left: 8px;
}

.cta-button.small {
    width: initial;
    padding: initial;
}

/* ===== FOOTER STYLES ===== */
/* FooterContainer - Exact from styles.tsx:160 */
.footer-container {
    background-color: var(--color-primary);
    min-height: 32vh;
    display: flex;
    flex: 1;
    justify-content: space-around;
    padding: 1vh 0;
    align-items: center;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.footer-container.custom-footer {
    padding: 45px 0px 0px 0px;
}

/* Footer Logo */
.footer-logo {
    margin-top: 40px;
}

.footer-logo img {
    width: 170px;
    height: 28px;
}

/* Footer Slogan */
.footer-slogan {
    color: var(--color-white);
    text-align: center;
    font-weight: bold;
    z-index: 100;
}

@media (max-width: 768px) {
    .footer-slogan {
        font-size: 35px;
        width: 85%;
    }
}

@media (min-width: 768px) {
    .footer-slogan {
        font-size: 50px;
        width: 500px;
    }
}

/* Footer Watermark */
.footer-watermark {
    position: absolute;
    top: 0;
    height: auto;
}

@media (max-width: 768px) {
    .footer-watermark {
        left: 30%;
        width: 100%;
    }
}

@media (min-width: 768px) {
    .footer-watermark {
        left: 25%;
        width: 25%;
    }
}

/* Footer Divider */
.footer-divider {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    height: 1px;
    margin-top: 50px;
    margin-bottom: 40px;
}

/* Footer Links - Exact from styles.tsx:183 */
.footer-links-column {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    margin-top: 30px;
    margin-bottom: 40px;
    text-align: center;
    width: 100%;
    max-width: 600px;
}

@media (min-width: 425px) {
    .footer-links-column {
        flex-direction: row;
    }
}

.footer-link {
    height: 30px;
    color: var(--color-white);
    text-decoration: none;
}

.footer-link-text {
    color: var(--color-white);
    line-height: 1.5;
    font-weight: 400;
}

/* Footer Bottom Section */
.footer-bottom {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 40px;
    margin-top: 20px;
    align-items: center;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .footer-bottom {
        width: 100%;
        margin-top: 40px;
    }
}

@media (min-width: 768px) {
    .footer-bottom {
        width: 60%;
        margin-top: 20px;
    }
}

.footer-bottom-links {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0;
}

@media (max-width: 768px) {
    .footer-bottom-links {
        width: 100%;
    }
}

@media (min-width: 768px) {
    .footer-bottom-links {
        width: 40%;
    }
}

/* ===== LANDING SECTION STYLES ===== */
/* LandingSectionContainer - Exact from styles.tsx:259 */
.landing-section-container {
    display: flex;
    width: 100%;
    flex: 1;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    flex-direction: column;
    margin: 5vh 0;
}

@media (min-width: 768px) {
    .landing-section-container {
        min-height: 30vh;
        flex-direction: row;
    }
}

/* LandingSectionColumn - Exact from styles.tsx:247 */
.landing-section-column {
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: center;
    align-items: center;
}

@media (min-width: 768px) {
    .landing-section-column {
        padding: 0 2vw;
        align-items: flex-start;
    }
}

.landing-section-column.text-section {
    flex: 1;
    padding-left: 20px;
    padding-right: 20px;
}

/* Media Containers - Exact from styles.tsx:222-245 */
.media-container-desktop {
    display: none;
    justify-content: center;
    align-items: center;
    width: 100%;
}

@media (min-width: 768px) {
    .media-container-desktop {
        display: flex;
    }
}

.media-container-mobile {
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 40px;
}

@media (min-width: 768px) {
    .media-container-mobile {
        display: none;
    }
}

/* ===== ANIMATED SECTION STYLES ===== */
/* AnimatedSectionContainer - Exact from configuration/styles.tsx:4 */
.animated-section-container {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 100px;
    padding-left: 20px;
    padding-right: 20px;
    margin-top: 0px;
}

/* AnimatedSectionContainerInner - Exact from configuration/styles.tsx:17 */
.animated-section-container-inner {
    display: flex;
    flex-direction: column;
    max-width: 1024px;
    justify-self: center;
}

/* ===== MAIN VISUAL STYLES ===== */
.main-visual-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    width: 100%;
    padding-top: 40px;
}

@media (min-width: 768px) {
    .main-visual-container {
        padding-top: 0;
        padding-left: 20px;
    }
}

.main-visual-wrapper {
    border-radius: var(--roundness);
    overflow: hidden;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-visual {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Home Page Visual - Exact from Variation.tsx:127-187 */
.main-visual-home {
    border-radius: 16px;
    background-color: unset;
    position: relative;
}

.main-visual-home-mobile {
    overflow: hidden;
    height: 300px;
    display: flex;
    justify-content: center;
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    align-self: center;
}

.main-visual-home-desktop {
    margin-left: 75px;
}

/* ===== RESPONSIVE UTILITIES ===== */
@media (max-width: 768px) {
    .hide-mobile {
        display: none !important;
    }

    .header-cta-scrollable {
        display: none;
    }
}

@media (min-width: 768px) {
    .hide-desktop {
        display: none !important;
    }

    .header-cta-scrollable.show {
        display: flex;
    }
}

/* ===== HERO RATING SIMPLE ===== */
.hero-rating-simple {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    margin-bottom: 10px;
}

@media (min-width: 768px) {
    .hero-rating-simple {
        justify-content: flex-start;
    }
}

.hero-rating-simple .rating-image {
    max-width: 100%;
    height: auto;
}

/* ===== SECONDARY VISUAL SECTION ===== */
.secondary-visual-section {
    padding: 40px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.secondary-visual {
    max-width: 100%;
    height: auto;
}
