/* Home Page Specific Layout (copied) */

.hero-landing {
    background-color: #febd11;
}

.hero-landing .card {
    color: #000;
}

.hero-landing .card h3 {
    color: #000;
}

.hero-landing .section-title {
    color: #000;
}

header {
    top: 0;
    background-color: #1a1a1a;
}

.hero-landing {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 8rem 2rem 5rem;
    color: #1a1a1a;
    overflow: hidden;
}

.slideshow-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-branding {
    margin-bottom: 2rem;
    width: 100%;
    max-width: 1000px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.social-icons-hero {
    display: flex;
    gap: 1rem;
}

.social-icons-hero a {
    color: #1a1a1a;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.social-icons-hero a:hover {
    opacity: 0.7;
}

.social-icons-hero svg {
    width: 24px;
    height: 24px;
    fill: #1a1a1a;
}

.phone-hero {
    color: #1a1a1a;
    font-weight: 600;
}

.hero-logo-large {
    font-size: 4rem;
    font-weight: 700;
    margin: 1rem 0 0.5rem;
    letter-spacing: -2px;
    font-family: serif;
}

.hero-subbranding {
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 1rem;
    font-family: serif;
}

.hero-welcome-text {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    max-width: 800px;
    line-height: 1.4;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-pill-black {
    background-color: #1a1a1a;
    color: #fff;
    padding: 1.2rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .hero-branding {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .hero-logo-large {
        font-size: 2.5rem;
        line-height: 1.1;
    }

    .hero-subbranding {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .hero-welcome-text {
        font-size: 1.2rem;
        padding: 0 1rem;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        gap: 1rem;
        align-items: center;
        margin: 0 auto;
    }

    .btn-pill-black {
        width: 100%;
        text-align: center;
        padding: 1rem 1.5rem;
    }

    .hero-content {
        margin: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-landing {
        padding: 6rem 1rem 3rem;
        min-height: 90vh;
    }

    .hero-logo-large {
        font-size: 2rem;
        margin: 0.5rem 0;
    }

    .hero-subbranding {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .hero-welcome-text {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }

    .btn-pill-black {
        padding: 0.9rem 1.2rem;
        font-size: 0.85rem;
    }

    .hero-content {
        margin: 0.5rem;
    }
}

/* Careers section styles removed — careers moved to a dedicated page */