/* 
 * Yaprak Hair Clinic - Coming Soon
 * Core Design Principles: Clean, Semantic, Accessible
 */

:root {
    /* Color Palette */
    --primary-color: #0b1c2e;
    /* Deep, professional navy */
    --secondary-color: #2c7a7b;
    /* Elegant Medical Teal (matches logo) */
    --secondary-hover: #235f5f;
    /* Darker Teal for hover states */
    --text-main: #333333;
    /* Highly readable dark grey */
    --text-light: #555555;
    /* Secondary text */
    --bg-main: #f8f9fa;
    /* Clean, clinical off-white */
    --white: #ffffff;

    /* Typography */
    --font-stack: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-stack);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.coming-soon-container {
    background-color: var(--white);
    max-width: 800px;
    width: 100%;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
}

/* Header & Logo Placeholder */
.logo-container {
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: row;
    /* Align horizontally */
    align-items: center;
    /* Vertically center the logo and text */
    justify-content: center;
    /* Center the whole block in the container */
    gap: 1.5rem;
    /* Space between logo and text */
}

.brand-logo {
    max-width: 120px;
    /* Set a reasonable maximum width */
    height: auto;
    object-fit: contain;
    /* Ensure it scales proportionally */
}

.text-container {
    display: flex;
    flex-direction: column;
    /* Stack title and subtitle */
    align-items: flex-start;
    /* Align text to the left */
}


.text-logo {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--primary-color);
    margin-bottom: 0.2rem;
}

.subtitle {
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 8px;
    color: var(--secondary-color);
    text-transform: uppercase;
}

/* Content Section */
.main-heading {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.intro-text {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

/* Announcement Banner */
.announcement-banner {
    background-color: rgba(74, 144, 226, 0.05);
    border: 1px solid rgba(74, 144, 226, 0.2);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2.5rem;
}

.announcement-banner h3 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

/* Contact Info */
.contact-info {
    border-top: 1px solid #ebebeb;
    padding-top: 2rem;
    margin-bottom: 2rem;
}

.contact-info>p {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-details {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-details p {
    font-size: 1rem;
}

.contact-details span {
    font-weight: 600;
    color: var(--text-light);
}

.contact-details a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--primary-color);
}

/* Footer */
.site-footer {
    margin-top: 3rem;
    font-size: 0.85rem;
    color: #888;
}

/* Helper Classes */
.header-link {
    text-decoration: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

/* Consultation Form Styles */
.consultation-container {
    max-width: 900px;
}

.consultation-form {
    text-align: left;
    margin-top: 2rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background-color: #f8fafc;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-main);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    background-color: var(--white);
    box-shadow: 0 0 0 4px rgba(44, 122, 123, 0.15);
}

.field-hint {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

/* Button token */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--white);
    width: 100%;
    margin-top: 1.5rem;
    box-shadow: 0 4px 14px rgba(44, 122, 123, 0.3);
}

.btn-primary:hover {
    background-color: var(--secondary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 122, 123, 0.4);
}

.btn-primary:disabled {
    background-color: #cbd5e1;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

/* Provide a specific override for index.html width */
.contact-actions .btn-primary {
    width: auto;
}

/* Honeypot Field */
.hp-field {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 0;
    width: 0;
    z-index: -1;
}

/* Form Feedback States */
.form-feedback {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 6px;
    text-align: center;
    font-weight: 600;
}

.form-feedback.hidden {
    display: none;
}

.form-feedback.visible {
    display: block;
}

.form-feedback.success {
    background-color: rgba(46, 204, 113, 0.1);
    color: #27ae60;
    border: 1px solid rgba(46, 204, 113, 0.2);
}

.form-feedback.error {
    background-color: rgba(231, 76, 60, 0.1);
    color: #c0392b;
    border: 1px solid rgba(231, 76, 60, 0.2);
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .coming-soon-container {
        padding: 2rem 1.5rem;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-group.full-width {
        grid-column: span 1;
    }

    .text-logo {
        font-size: 2rem;
    }

    .main-heading {
        font-size: 1.5rem;
    }

    .contact-details {
        flex-direction: column;
        gap: 0.5rem;
    }
}