:root {
    --accent-1: #ff83d6;
    --accent-2: #ff83d6;
}
/* –——————————————————————————— IMAGE STYLING –——————————————————————————— */
.logo-box div {
    background-color: #2e1415;
}
video {
    border-radius: 5px;
    width: 475px;
    object-fit: cover;
}
.logo-box img {
    height: 400px;
}
.pull-quote {
    display: grid !important;
    grid-template-columns: 9fr 5fr;
}
video {
    border-radius: 5px;
    width: 100%;
    object-fit: cover;
}
/* –——————————————————————————— TEXT STYLING –——————————————————————————— */
.website-button {
    margin: 15px auto 0px;
    width: fit-content;
    background-color: var(--accent-1);
    border-radius: 100px;
    border: var(--dark);
    border: 1.5px solid var(--brown);
    padding: 7px 20px;
    cursor: url(cursors/pointer-light.svg), auto !important;
    transition: .2s ease;
}
.website-button:hover {
    background-color: var(--brown);
}
.website-button a {
    text-decoration: none;
    cursor: url(cursors/pointer-light.svg), auto !important;
}
.website-button p {
    color: var(--cream);
    font-family: "Bricolage Grotesque", sans-serif;
    font-weight: 600;
    font-size: 16px; 
    text-transform: uppercase;
    cursor: url(cursors/pointer-light.svg), auto !important;
}
h2 span {
    background-color: var(--accent-2);
    color: var(--cream) !important;
    padding: 2px 5px;
    border-radius: 3px;
}
/* –——————————————————————————— COLOR PALETTE –——————————————————————————— */
.color-palette .color-first {
    width: 40%;
}
.color-palette .color-first > div:nth-child(1){
    background-color: #2e1415;
    height: 208px;
}
.color-palette .color-first > div:nth-child(2){
    background-color: #ff83d6;
    height: 208px;
}
.color-palette .color-first > div:nth-child(3){
    background-color: #f4ede4;
    height: 208px;
}
.color-palette .column:last-child {
    width: 30%;
}
.color-palette > div > div {
    border-radius: 5px;
    position: relative;
}
.color-palette .column:last-child > div:nth-child(2){
    background-color: #874458;
    height: 350px;
    width: 100%;
}
.color-palette .column:last-child > div:nth-child(1){
    background-color: #ddf261;
    height: 287px;
}
.dark {
    color: #2e1415 !important;
}
.color-image {
    width: 400px;
    height: 653px;
}
.color-image img {
    object-fit: cover;
    object-position: right;
    height: 100%;
}
/* –——————————————————————————— MEDIA QUERIES –——————————————————————————— */
@media (max-width: 1125px) {
    .logo-box img {
        height: 250px;
    }
    .logo-box {
        height: 350px !important;
    }
    .color-image, .color-image img {
        display: none;
        position: absolute;
    }
    .color-palette .color-first {
        width: 60%;
    }
    .color-palette .column:last-child {
        width: 40%;
    }
}
@media (max-width: 825px) {
    .color-palette {
        display: flex;
        flex-direction: column !important;
    }
    .color-palette .color-first {
        width: 100%;
    }
    .color-palette .column:last-child {
        width: 100%;
    }
    .color-palette .column > div {
        height: 200px !important;
    }
}