﻿:root {
    --red: #e94b4b;
    --aqua: #a6e8ea;
    --cream: #fffbe6;
    --black: #222;
    --white: #fff;
    --light-gray: #e8e8e8;
}


html {
    scroll-behavior: smooth;
}


body {
    font-family: 'Montserrat', Arial, sans-serif;
    background: var(--light-gray);
    color: var(--black);
    margin: 0;
    padding: 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--black);
    padding: 32px 40px 16px 40px;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 0.5px;
    color: var(--aqua);
    text-shadow: 2px 2px var(--red);
}

nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-link {
    text-decoration: none;
    color: var(--white);
    font-size: 1.1rem;
    padding-bottom: 2px;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s;
}

    .nav-link.active,
    .nav-link:hover {
        border-bottom: 2px solid var(--red);
    }

.book-btn {
    background: var(--red);
    color: var(--white);
    border: none;
    border-radius: 24px;
    padding: 10px 24px;
    font-size: 1rem;
    text-decoration: none;
    margin-left: 16px;
    font-weight: bold;
    transition: background 0.2s, color 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.2s cubic-bezier(.4,2,.3,1), box-shadow 0.2s;
}

    .book-btn:hover {
        background: var(--aqua);
        color: var(--black);
        transform: scale(1.07);
        box-shadow: 0 6px 20px rgba(233, 75, 75, 0.2);
    }

.main-content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 48px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 48px 0;
}

.contact-left {
    flex: 1 1 480px;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

    .contact-left h1 {
        font-size: 3rem;
        font-weight: 700;
        margin: 0 0 12px 0;
        line-height: 1.1;
        color: var(--red);
    }

.subtitle {
    font-size: 1.1rem;
    margin-bottom: 14px;
    color: var(--black);
}

.contact-info {
    margin-bottom: 24px;
    color: var(--black);
    font-size: 1.1rem;
    line-height: 1.5;
}

.contact-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-row {
    width: 100%;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.name-fields {
    display: flex;
    gap: 12px;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--aqua);
    border-radius: 16px;
    font-size: 1rem;
    outline: none;
    background: var(--cream);
    color: var(--black);
    transition: border-color 0.2s, background 0.2s;
    margin-top: 4px;
    resize: none;
}

    input[type="text"]:focus,
    input[type="email"]:focus,
    textarea:focus {
        border-color: var(--red);
        background: var(--aqua);
    }

.name-fields input[type="text"] {
    width: 50%;
}

textarea {
    min-height: 70px;
    max-height: 180px;
}

.required {
    font-size: 0.95rem;
    color: #888;
    margin-left: 4px;
}

.send-btn {
    background: var(--red);
    color: var(--white);
    border: none;
    border-radius: 20px;
    padding: 12px 32px;
    font-size: 1.1rem;
    font-weight: bold;
    margin-top: 6px;
    cursor: pointer;
    letter-spacing: 1px;
    transition: background 0.2s, color 0.2s;
    align-self: flex-start;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

    .send-btn:hover {
        background: var(--aqua);
        color: var(--black);
    }

.contact-right {
    flex: 1 1 500px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.flyer-image {
    max-width: 400px;
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    background: var(--white);
    display: block;
    margin: 0 auto;
}

/* --- Responsive Design --- */
@media (max-width: 1100px) {
    .main-content {
        flex-direction: column;
        align-items: center;
        gap: 32px;
        padding: 32px 0;
    }

    .contact-left, .contact-right {
        max-width: 100%;
        width: 100%;
        align-items: center;
        padding: 0;
    }

    .flyer-image {
        max-width: 350px;
    }
}

@media (max-width: 900px) {
    .main-content {
        flex-direction: column;
        gap: 24px;
        padding: 24px 0;
    }

    .contact-left, .contact-right {
        max-width: 100%;
        width: 100%;
        align-items: center;
        padding: 0;
    }

    .flyer-image {
        max-width: 300px;
    }
}

@media (max-width: 600px) {
    .navbar {
        flex-direction: column;
        padding: 16px 8px;
        gap: 12px;
    }

    .logo {
        font-size: 1.3rem;
        margin-bottom: 8px;
    }

    nav {
        gap: 12px;
        flex-wrap: wrap;
    }

    .book-btn {
        width: 100%;
        margin: 8px 0 0 0;
        padding: 10px 0;
        transition: transform 0.2s cubic-bezier(.4,2,.3,1), box-shadow 0.2s;
    }

    .main-content {
        padding: 12px 0;
        gap: 16px;
    }

    .contact-left h1 {
        font-size: 2rem;
    }

    .contact-form input,
    .contact-form textarea,
    .send-btn {
        width: 100%;
        font-size: 1rem;
        box-sizing: border-box;
    }

    .name-fields {
        flex-direction: column;
        gap: 8px;
    }

        .name-fields input[type="text"] {
            width: 100%;
        }

    .flyer-image {
        max-width: 98vw;
        width: 100%;
        height: auto;
    }
}

/* Ensure box-sizing for all elements */
*, *::before, *::after {
    box-sizing: border-box;
}

button, .book-btn, .service-btn, .service-book-btn, .nav-link {
    min-width: 44px;
    min-height: 44px;
    font-size: 1.1rem;
    padding: 12px 20px;
}

@media (max-width: 600px) {
    .book-btn, .service-btn, .service-book-btn {
        width: 100%;
    }
}
