/* Contact Form Styles */

.form-subtitle {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    text-align: center;
}

/* Form header container */
.form-header {
    margin-bottom: 2rem;
    text-align: center;
}

/* Form title styling */
.form-title {
    margin-bottom: 0.5rem !important;
    font-size: 1.5rem !important;
    line-height: 1.3 !important;
    text-align: center !important;
}

/* Mobile adjustments for form title */
@media (max-width: 768px) {
    .form-title {
        font-size: 1.3rem !important;
        line-height: 1.2 !important;
    }

    .form-subtitle {
        font-size: 1rem !important;
        margin-top: 0.5rem !important;
        margin-bottom: 1.5rem !important;
    }
}

.contact-form {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    overflow: visible;
}

.form-group {
    width: 100%;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: #FFFFFF;
    transition: all 0.3s ease;
    outline: none;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.5;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.05em;
}

.form-input:focus,
.form-textarea:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(201, 169, 97, 0.5);
    box-shadow: 0 0 20px rgba(201, 169, 97, 0.2);
}

.form-submit {
    width: 100%;
    padding: 1.2rem 2rem;
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.5);
    border-radius: 6px;
    color: #d4af37;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    margin-top: 1rem;
}

.form-submit:hover:not(:disabled) {
    background: rgba(212, 175, 55, 0.2);
    border-color: #f0c040;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.form-submit:active:not(:disabled) {
    transform: translateY(0);
}

.form-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.form-status {
    display: none !important;
}

.form-status.success,
.form-status.error {
    display: none !important;
}

/* Hide any Formspark error messages */
.formspark-error,
.form-error,
.error-message,
[class*="error"],
[class*="Error"],
[id*="error"],
[id*="Error"],
div:has-text("Oops"),
div:has-text("problem"),
div:has-text("try again") {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
    position: absolute !important;
    left: -9999px !important;
}

/* Additional safety: hide any potential error containers */
.alert,
.alert-danger,
.alert-error,
.message-error,
.notification-error {
    display: none !important;
}

/* Target any red error boxes specifically */
div[style*="border"][style*="red"],
div[style*="background"][style*="red"],
div[style*="color"][style*="red"] {
    display: none !important;
}

/* Page 11 - Thank You Styles */
.thank-you-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 80vh;
    padding: 2rem;
    overflow: visible;
    max-height: none;
}

.logo-thank-you {
    width: 300px;
    height: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(2px 2px 8px rgba(0, 0, 0, 0.6));
}

.thank-you-title {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.15em;
}

.thank-you-message {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
}

.date-section-thank {
    margin-bottom: 3rem;
}

.location-text {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    color: #C9A961;
    margin-top: 0.5rem;
}

.thank-you-quote {
    margin: 2rem auto 3rem;
    max-width: 700px;
}

.thank-you-quote p {
    font-size: 1.4rem;
}

.footer-section-minimal {
    margin-top: auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .form-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .contact-form {
        max-width: 100%;
        gap: 1.2rem;
    }

    .form-input,
    .form-textarea {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 0.9rem 1.2rem;
    }

    .form-textarea {
        min-height: 100px;
    }

    .form-submit {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        margin-top: 0.8rem;
    }

    .logo-thank-you {
        width: 200px;
    }

    .thank-you-title {
        font-size: 2.5rem;
    }

    .thank-you-message {
        font-size: 1.1rem;
    }

    .thank-you-quote p {
        font-size: 1.2rem;
    }

    .location-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .form-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .contact-form {
        gap: 1rem;
    }

    .form-input,
    .form-textarea {
        padding: 0.8rem 1rem;
    }

    .form-textarea {
        min-height: 80px;
    }

    .form-submit {
        padding: 0.9rem 1.2rem;
        font-size: 0.95rem;
        letter-spacing: 0.15em;
    }

    .logo-thank-you {
        width: 150px;
        margin-bottom: 1.5rem;
    }

    .thank-you-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .thank-you-message {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .thank-you-quote p {
        font-size: 1.1rem;
    }

    .date-section-thank {
        margin-bottom: 2rem;
    }

    .location-text {
        font-size: 0.9rem;
        margin-top: 0.3rem;
    }
}