/* General Styles */
body {
    margin: 0;
    font-family: 'Tenor Sans', sans-serif;
    color: #545454;
}

h1, h2, h3, h4, h5, h6 {
    color: #222222;
    font-weight: 100;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: inherit;
    text-decoration: none;
}

section {
    width: 100%;
    text-align: center;
}

/* Hero Section */
.hero {
    background-image: url('../images/carol_colon_turner_french_chef.jpeg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    position: relative;
    color: #fff;
}

.hero-content {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 100%;
    line-height: .5;
}

.hero h1 {
    font-size: 7em;
    margin: 0;
    color: #ffffff;
    font-weight: 100;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.hero p {
    font-size: 2.1em;
    font-weight: 100;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Content Sections */
.content-section {
    margin-top: 2px;
    padding: 0px 0;
}

.content-section .container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    min-height: 400px;
}

.content-section p {
    font-size: 1.25em;
    line-height: 1.6;
}

.content-section .text {
    flex: 3;
    padding: 40px 80px 40px 80px;
    min-width: 300px;
    font-weight: 100;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.content-section .privacy {
    flex: 3;
    padding: 40px 80px 40px 80px;
    min-width: 300px;
    font-weight: 100;
    text-align: left;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.content-section .image {
    flex: 2;
    min-width: 300px;
    position: relative;
    padding: 0;
}

.content-section .image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.alt-bg {
    background-color: #f5f5f5;
}

/* Contact form */

.contact-form {
    max-width: 100%;
    text-align: left;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: flex;
    gap: 20px;  /* This creates space between email and phone */
    margin-bottom: 20px;
}

.form-group.half {
    flex: 1;
    margin-bottom: 0;
}

.text-center {
    text-align: center;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Tenor Sans', sans-serif;
    font-size: 1em;
    color: #545454;
    background-color: white;
    transition: border-color 0.3s ease;
    box-sizing: border-box;  /* This ensures padding doesn't affect overall width */
}

.contact-form textarea {
    height: 120px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #222222;
}

.submit-btn {
    background-color: #222222;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Tenor Sans', sans-serif;
    font-size: 1em;
    transition: background-color 0.3s ease;
    min-width: 200px;
}

.submit-btn:hover {
    background-color: #3a3a3a;
}

/* Footer remains unchanged */
footer {
    background-color: #222;
    color: #fff;
    margin-top: 2px;
    padding: 20px 0;
    text-align: center;
}

footer a, span {
    color: #fff;
    margin: 0 10px;
}

/* Modified Responsive Styles */
@media (max-width: 768px) {

    .hero {
        height: 60vh;
    }

    .hero h1 {
        font-size: 2em;
    }

    .hero p {
        font-size: 1em;
    }

    .hero-content {
        line-height: 1.5;
    }

    .content-section {
        padding: 30px 0;
    }

    .content-section .container {
        flex-direction: column;
        min-height: auto;
    }

    .content-section .image {
        min-height: 300px;
        position: relative;
    }

    .content-section .text {
        padding: 20px;
    }

    .content-section .privacy {
        padding: 20px;
    }

    .contact-form {
        padding: 0;
    }
    
    .form-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .form-group.half {
        margin-bottom: 0;
    }
    
    .submit-btn {
        width: 100%;
        min-width: 100%;  /* Forces full width on mobile */
    }
}