#div-1{

    overflow: hidden;
    -webkit-transition: background-image 2s ease-in-out;
    transition: background-image 2s ease-in-out;
    background: linear-gradient(to top , rgb(225, 221, 215,0.75), rgb(214, 212, 207,0.75));
    background-size: cover;
}

#div-1-back{
    position: absolute;
    z-index: -12;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}
#div-1-back-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#div-1-back-img-2{
    width: 100%;
    height: 100%;
    object-fit: cover;
}


#div-1-content{

    z-index: 11;
    position: absolute;
    margin-left: 15%;
    margin-top: 15%;
    
}

#div-1-img{

    z-index: 11;
    height: 30vh;

}

.left-half{
    text-align: right;
    width: 30vw;
}
.right-half{
    text-align: left;
    width: 30vw;
}

.content-slide-2 {
    padding-left: 15%;
    padding-right: 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 60vh;
}



/* ── Slide typography ─────────────────────────────── */

.slide-eyebrow {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 0.62rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #C42050;
    margin-bottom: 20px;
}

.slide-headline {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2.2rem, 4.5vw, 5rem);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 0.95;
    color: #111;
    margin-bottom: 28px;
    letter-spacing: -0.01em;
}

.slide-headline-lg {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(3.5rem, 9vw, 9rem);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 0.9;
    color: #111;
    margin-bottom: 32px;
    white-space: nowrap;
    letter-spacing: 0.04em;
}

.txt-accent {
    color: #C42050;
}

.slide-body {
    font-family: 'Oswald', sans-serif;
    font-size: 0.92rem;
    font-weight: 200;
    line-height: 1.85;
    color: #555;
    margin-bottom: 36px;
    max-width: 420px;
}

.slide-cta {
    display: inline-block;
    font-family: 'Oswald', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #111;
    text-decoration: none;
    border-bottom: 1px solid #111;
    padding-bottom: 3px;
    transition: color 0.3s, border-color 0.3s;
}

.slide-cta:hover {
    color: #C42050;
    border-color: #C42050;
}

/* Legacy — keep for non-slide h1 */
h1 {
    font-family: 'Oswald', sans-serif;
    font-weight: 300;
}

p, b {
    font-family: 'Oswald', sans-serif;
    font-weight: 300;
}



button{
    border: unset;
    background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    padding: 2%;
    border-radius: 10px;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.293); 
}
button:hover{
    background-color: coral;
}







#parent-svg{
    width: 100vw;
    height: 100vh;
}

#slide-nav {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 14px;
    z-index: 20;
}

.slide-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(0, 0, 0, 0.4);
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    display: inline-block;
}

.slide-dot.active {
    background: rgba(0, 0, 0, 0.75);
    transform: scale(1.3);
}









@media screen and (max-width: 800px) {

    #div-1-back{
        height: 150vh;
    }

    #div-1-back-img{
        height: 100vh;
        width: auto;
    }
    #div-1-back-img-2{
        height: 150vh;
        width: auto;
    }
    .left-half{
        text-align: left;
        margin-top: 40%;
        margin-left:-10%;
    }
    .right-half{
        width: 90vw;
        font-size: 3.5vmin;
        margin-top: 50%;
        margin-left: -10%;
    }

    .content-slide-2{
        margin-top: 15%;
        padding-left: 1%;
        padding-right: 1%;
    }
    
    #parent-svg{
        /* margin-top: -40%; */
        scale: 1.6;
    }
}