:root{
    --Black: #100C0A;
    --Dark-Brown: #1F130D;
    --Beige: #EEE5DA;
    --Orange: #F9561B;
    --White: #F9F7F4;
}

.section-1{
    background-color: var(--Orange);
    overflow: clip;
    position: relative;
}

.section-1 .sheet-full{
    color: var(--White);
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.category-title{
    color: var(--White);
    opacity: 0.8;
}
.category-info{
    font-weight: 700;
}
.contact-box p{
    line-height: 1.5;
}

.contact-box{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-side-container{
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 20%;
}
.contact_line{
    height: 450px;
    border: 1.5px solid var(--White);
    margin: 0px 120px;
}
.contact_cta{
    display: flex;
    flex-direction: column;
    width: 50vw;
}
.contact_halfcontainer{
    display: flex;
    gap: 20px;
    height: max-content;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.contact_p{
    line-height: 1.8;
    font-weight: 600;
}   
.contact_cta_title{
    margin-bottom: 18px;
}

.collab-section {
    position: absolute;
    background:             
                radial-gradient(circle at center, rgba(16, 12, 10, 0.8) 0%, rgba(16, 12, 10, 1) 100%),
                radial-gradient(circle at 50% 150%, #F9561B 0%, #100c0a00 100%),
                url('img/pattern_cta.png') center/cover no-repeat,    
                var(--Black);
          
    color: var(--White);
    box-shadow: rgba(0, 0, 0, 0.56) 0px 22px 70px 4px;
    height: 85vh;
    width: 90vw;
    transform: translateY(calc(100% - 50px));
    z-index: 3;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
    border-radius: 10px;
    padding: 32px 32px 100px 32px;
}

.collab-header {
    height: 60px;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

.collab-header h2 {
    color: #fff;
    margin: 0;
}

.collab-close {
    background: none;
    border: none;
    padding: 0;
    position: absolute;
    top: 0px;
    right: 40px;
    pointer-events: auto;
    transition: transform 300ms ease-in-out;
}
.collab-close:hover{
    transform: scale(1.3);
}

.collab-content {
    padding: 48px 24px;
    margin: 0 auto;
    display: flex;
    text-align: center;
    flex-direction: column;
    max-width: 1000px;
}

.collab-content h1 {
    color: #fff;
    font-size: 32px;
    margin-bottom: 40px;
    max-width: 800px;
}

.collab-contact {
    color: #fff;
}

.cta_link{
    transition: all 200ms ease;
    text-decoration: none;
    color: var(--White);
    cursor: none;
}
.cta_link:hover{
    color: var(--Orange);
    transform: scale(1.2);

}


@media only screen 
  and (min-width: 1024px) 
  and (max-height: 1366px) 
  and (orientation: portrait) 
  and (-webkit-min-device-pixel-ratio: 1.5) {
    .contact_halfcontainer{
        flex-direction: column;
        gap: 50px;
        height: 80vh;
    }
    .contact_line{
        height: auto;
        width: 100%;
    }

    .contact-side-container{
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .contact_cta{
        width: 100%;
    }

  }

@media only screen and (min-width: 769px) and (max-width: 1024px) {
    .contact_line{
        margin: 0px 60px;
    }
}
@media only screen  and (min-width: 480px) and (max-width: 768px) {
    .contact_halfcontainer{
        flex-direction: column;
        gap: 50px;
        height: 80vh;
    }
    .contact_line{
        height: auto;
        width: 100%;
    }
    .contact-side-container{
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;

    }
    .contact_cta{
        width: 100%;
    }
}
@media only screen and (min-width: 300px) and (max-width: 480px) {

    .collab-section{
        transform: translateY(calc(130% - 40px));
        height: 600px;
    }
    .contact_halfcontainer{
        flex-direction: column;
        gap: 50px;
        height: max-content;
    }
    .contact_line{
        height: auto;
        width: 100%;
    }
    .contact-side-container{
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;

    }
    .contact_cta{
        width: 100%;
    }
    .section-1 .sheet-full{
        height: max-content;
        padding: 120px 26px 200px 26px;
    }
    .collab-close{
        right: 26px;
    }
}