body {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    overflow: visible;
}
.split-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    z-index: -1;
}
.split-left {
    background-size: cover;
    background-position: center;
}
h1.title {
    border: 2px solid white;
    padding: 10px 0;
    max-width: 220px;
    margin-top:40px;
}
.overlay {
    position: fixed;
    flex-direction: row;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3); /* Semi-transparent overlay */
    z-index: 1;
}
.content-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.cs-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    text-align: center;
    position: relative;
    z-index: 10;
    width:100vw;
}

.cs-text {
    color: #fff;
    /* padding: 20px; */
    width: 40%;
    background-color: transparent;
    margin: 0 5%;
}

h1 {
    font-family: '<?php echo esc_html($heading_font); ?>', sans-serif;
    margin: 0 0 20px;
    font-size: 2.5rem;
    font-weight:300;
}
h2 {
    font-size: 1.8em !important;
}
h1 p {
    margin:0;
}
p {
    margin: 0 0 20px;
    font-size: 1.2rem;
}
.social-links {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
}
.social-links a {
    font-size: 1.5rem;
    text-decoration: none;
    transition: color 0.5s ease; /* Smooth fade effect */
}
.social-links a:hover {
    color: #EBAD17;
}
.content-left {
    text-align: center;
    background-color: transparent;
    margin: 0 auto;
    display: flex;
    height: 96vh;
    align-content: center;
    flex-wrap: wrap;
}

.footer {
    /* position: absolute;
    bottom: 10px; */
    width: 100%;
    text-align: center;
    font-size: 0.9rem;
    background:transparent;
    border:none;
    z-index: 10;
    height: 4vh;
}
button {
    background-color: yellow; /* Initial background color */
    color: blue; /* Initial text color */
    border: none; /* Optional: remove border */
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: bold;
    /*border-radius: 5px;  rounded corners */
    cursor: pointer;
}

button:hover {
    background-color: red; /* Background color on hover */
    color: white; /* Text color on hover */
}

.email-form {
    margin-top: 20px;
    text-align: center;
}

#ajax-email-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

#ajax-email-form input[type="email"] {
    padding: 10px;
    font-size: 1rem;
    width: 100%;
    max-width: 300px;
    border: 1px solid #ccc;
    /* border-radius: 4px; */
}

#ajax-email-form .gdpr-checkbox {
    font-size: 0.9rem;
}

#ajax-email-form button {
    padding: 12px 30px;
    font-size: 1rem;
    color: #25335F;
    background-color: #EBAD17;
    border: none;
    /* border-radius: 25px; */
    cursor: pointer;
    text-transform: uppercase;
    font-family: 'Montserrat';
    transition: background-color 0.5s ease, color 0.5s ease; /* Smooth fade effect */
}

#ajax-email-form button:hover {
    background-color: #4F483C;
    color: #EBAD17;
}

#form-message {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #EBAD17;
}
.cs-description {
    margin-top:10px;
    margin: 0 auto;
}
.cs-description p {
    font-size:1rem;
}

h1 {
    font-family: 'The Seasons', serif;
}

/* Modal Background */
.privacy-modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5); /* Black background with opacity */
}

/* Modal Content */
.modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    max-width: 600px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
}

/* Close Button */
.close-button {
    color: #aaa;
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-button:hover,
.close-button:focus {
    color: #000;
}

.modal-content,
.modal-content p {
    color:#000;
    font-size:12px;
}
.cs-description p {
    max-width: 550px;
}

/* CHECKBOX */
input[type="checkbox"] {
    accent-color: #EBAD17;
} 

.ipad-content {
    max-width: 220px;
    margin: 40px auto 0; 
}

.ipad-content h1 {
    text-align: center;
    border: 1px solid white;
    padding: 10px 0;
}
.fa-facebook {
    font-size: 26px;
}
.fa-instagram {
    font-size: 29px;
    position: relative;
    top: 2px;
}
/* RESPONSIVENESS */

.mobile-content,
.ipad-content h1 {
    display: none;
}
@media (min-width: 769px) {
    .content-right {
        min-height: 96vh;
    }
    
}
@media (max-width: 1025px) {
    .content-left h1{
        display: none;
    }
}
@media (max-width: 1025px) and (min-width: 769px)  {
    .ipad-content h1{
        display: block;
    }
}
@media (max-width: 769px) {
    .content-left{
        display: none;
    }
    .content-right {
        justify-content: flex-start;
    }
    .ipad-content{
        display: none;
    }
    .mobile-content {
        display: block;
        max-width: 220px;
        margin: 0 auto;
    }
    .overlay {
        background-color: rgba(0, 0, 0, 0.5);
    }
    .cs-content {
        flex-direction: column;
        justify-content:center;
    }
    .cs-text {
        width:80%;
        text-align:center;
        margin: 0 auto;
    }
}
