/* home/css/design-home.css */

/* ===== Blue Transition Section ===== */
/* TEMPORARILY DISABLED FOR PRODUCTION - Set to display: none */
.blue-transition-section {
    display: none; /* This will hide the section completely */
    position: relative;
    height: 75vh; /* Tripled from 25vh */
    padding: 0;
    margin: 0;
    opacity: 0; /* Hidden by default for GSAP animation */
    visibility: hidden;
    will-change: opacity, transform;
    align-items: center;
    justify-content: center;
}

.blue-transition-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--blue);
    clip-path: url(#blue-overlay-clip); /* Apply the SVG clip-path */
}

.blue-transition-content {
    position: relative;
    z-index: 2;
    color: white;
    width: 100%;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
}

.blue-transition-title {
    font-family: var(--font-primary);
    font-size: var(--fs-h2);
    font-style: italic;
    font-weight: bold;
    text-transform: lowercase;
    line-height: 1.1;
    color: white;
    flex-basis: 30%;
    margin: 0;
    transform-origin: left center;
}

.blue-transition-subtitle {
    font-family: var(--font-secondary);
    font-size: var(--fs-body);
    color: white;
    line-height: 1.6;
    flex-basis: 60%;
    margin: 0;
    text-align: left;
}

