/* ==========================================
   COMING SOON PAGE STYLES
   Aria Gynecology & Surgery
   ========================================== */

/* ==========================================
   CSS RESET & BASE STYLES
   ========================================== */

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

:root {
    /* Brand Colors */
    --primary-color: #D2988E;
    --primary-dark: #B47A70;
    --secondary-color: #EBE1D9;
    --accent-color: #96645A;
    --text-dark: #333333;
    --text-medium: #666666;
    --text-light: #999999;
    --background: #FFFFFF;
    --background-light: #F5F0EB;
    
    /* Fonts */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
    
    /* Transitions */
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--background-light);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* ==========================================
   BACKGROUND PATTERN
   ========================================== */

.background-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, 
        rgba(235, 225, 217, 0.5) 0%, 
        rgba(245, 240, 235, 0.8) 50%,
        rgba(235, 225, 217, 0.5) 100%
    );
    opacity: 0.7;
}

.background-pattern::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-image: 
        radial-gradient(circle, rgba(210, 152, 142, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: patternMove 60s linear infinite;
}

@keyframes patternMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(40px, 40px); }
}

/* ==========================================
   MAIN CONTAINER
   ========================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
    z-index: 1;
}

/* ==========================================
   LOGO SECTION
   ========================================== */

.logo-section {
    text-align: center;
    margin-bottom: 40px;
    animation: fadeInDown 1s ease-out;
}

.logo {
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.05);
}

/* ==========================================
   MAIN CONTENT
   ========================================== */

.content {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    padding: 60px 40px;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(235, 225, 217, 0.5);
    animation: fadeInUp 1s ease-out 0.3s both;
}

/* ==========================================
   BADGE
   ========================================== */

.badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* ==========================================
   HEADINGS
   ========================================== */

h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 15px;
    text-align: center;
    line-height: 1.2;
}

h2 {
    font-family: var(--font-body);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-medium);
    margin-bottom: 40px;
    text-align: center;
}

h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 10px;
}

/* ==========================================
   OPENING INFO & COUNTDOWN
   ========================================== */

.opening-info {
    text-align: center;
    margin: 40px 0;
    padding: 30px;
    background: linear-gradient(135deg, 
        rgba(210, 152, 142, 0.1) 0%, 
        rgba(235, 225, 217, 0.2) 100%
    );
    border-radius: 16px;
    border: 2px solid rgba(210, 152, 142, 0.3);
}

.opening-text {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 30px;
    font-family: var(--font-heading);
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
}

.countdown-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    font-family: var(--font-heading);
    line-height: 1;
}

.countdown-label {
    font-size: 0.875rem;
    color: var(--text-medium);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px;
}

/* ==========================================
   DESCRIPTION
   ========================================== */

.description {
    text-align: center;
    margin: 40px 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.description p {
    font-size: 1.125rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.services-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 12px;
    margin: 20px 0;
    text-align: left;
}

.services-list li {
    padding: 12px 16px;
    background: rgba(210, 152, 142, 0.1);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    color: var(--text-dark);
    font-size: 0.95rem;
    transition: var(--transition);
}

.services-list li:hover {
    background: rgba(210, 152, 142, 0.2);
    transform: translateX(5px);
}

.services-list li::before {
    content: '✓ ';
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 8px;
}

/* ==========================================
   ABOUT DOCTOR SECTION WITH PHOTO
   ========================================== */

.about-doctor {
    display: flex;
    gap: 40px;
    align-items: center;
    margin: 50px 0;
    padding: 40px;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.doctor-photo {
    flex-shrink: 0;
}

.profile-image {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid var(--primary-color);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.profile-image:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.doctor-info {
    flex: 1;
    text-align: left;
}

.doctor-info h3 {
    font-size: 1.75rem;
    margin-bottom: 10px;
    color: var(--accent-color);
}

.credentials {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
    font-style: italic;
}

.doctor-info p {
    color: var(--text-dark);
    line-height: 1.6;
    margin: 10px 0;
}

/* ==========================================
   OFFICE PREVIEW SECTION
   ========================================== */

.office-preview {
    margin: 50px 0;
    text-align: center;
}

.office-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.office-image:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.image-caption {
    margin-top: 15px;
    font-size: 0.95rem;
    color: var(--text-medium);
    font-style: italic;
}

/* ==========================================
   CONTACT INFORMATION
   ========================================== */

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 50px 0;
}

.info-card {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid transparent;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.info-card .icon {
    width: 40px;
    height: 40px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.info-card h3 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--accent-color);
}

.info-card p {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 4px 0;
}

.info-card .note {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
}

.phone-link,
.email-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.phone-link:hover,
.email-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* ==========================================
   EMAIL NOTIFICATION SIGNUP
   ========================================== */

.notification-signup {
    text-align: center;
    margin: 50px 0;
    padding: 40px;
    background: linear-gradient(135deg, 
        rgba(210, 152, 142, 0.15) 0%, 
        rgba(235, 225, 217, 0.25) 100%
    );
    border-radius: 16px;
    border: 2px dashed var(--primary-color);
}

.notification-signup h3 {
    font-size: 1.75rem;
    margin-bottom: 10px;
    text-align: center;
}

.notification-signup > p {
    color: var(--text-medium);
    margin-bottom: 24px;
}

.notify-form {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto 16px;
}

.notify-form input[type="email"] {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid var(--secondary-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-body);
    transition: var(--transition);
    background: white;
}

.notify-form input[type="email"]:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(210, 152, 142, 0.1);
}

.notify-button {
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    box-shadow: var(--shadow-sm);
}

.notify-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.notify-button:active {
    transform: translateY(0);
}

.privacy-note {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
}

.form-message {
    margin-top: 16px;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    display: none;
}

.form-message.success {
    background: rgba(76, 175, 80, 0.1);
    color: #2E7D32;
    border: 2px solid #4CAF50;
    display: block;
}

.form-message.error {
    background: rgba(244, 67, 54, 0.1);
    color: #C62828;
    border: 2px solid #F44336;
    display: block;
}

/* ==========================================
   INSURANCE SECTION
   ========================================== */

.insurance-section {
    text-align: center;
    margin: 50px 0;
    padding: 40px;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
}

.insurance-section h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    text-align: center;
}

.insurance-section > p {
    color: var(--text-medium);
    margin-bottom: 30px;
}

.insurance-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin: 30px 0;
}

.insurance-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition);
}

.insurance-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

.insurance-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 20px;
}

/* ==========================================
   CERTIFICATIONS SECTION
   ========================================== */

.certifications-section {
    text-align: center;
    margin: 50px 0;
    padding: 40px;
    background: linear-gradient(135deg, 
        rgba(210, 152, 142, 0.08) 0%, 
        rgba(235, 225, 217, 0.15) 100%
    );
    border-radius: 16px;
    border: 2px solid rgba(210, 152, 142, 0.2);
}

.certifications-section h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-align: center;
}

.certification-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin: 30px 0;
}

.cert-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    min-height: 140px;
}

.cert-badge:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.cert-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    margin-bottom: 12px;
}

.text-badge {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    box-shadow: var(--shadow-sm);
}

.cert-badge p {
    font-size: 0.85rem;
    color: var(--text-dark);
    font-weight: 500;
    text-align: center;
    line-height: 1.4;
    margin: 0;
}

/* ==========================================
   SOCIAL LINKS
   ========================================== */

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0 20px;
}

.social-link {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 2px solid var(--secondary-color);
    border-radius: 50%;
    color: var(--primary-color);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.social-link:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.social-link svg {
    width: 24px;
    height: 24px;
}

/* ==========================================
   FOOTER
   ========================================== */

.footer {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid var(--secondary-color);
    color: var(--text-light);
}

.footer p {
    font-size: 0.875rem;
    margin: 5px 0;
}

/* ==========================================
   ANIMATIONS
   ========================================== */

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

@media (max-width: 768px) {
    .container {
        padding: 20px 15px;
    }
    
    .logo {
        max-width: 200px;
    }
    
    .content {
        padding: 40px 24px;
        border-radius: 16px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.125rem;
    }
    
    .opening-text {
        font-size: 1.5rem;
    }
    
    .countdown {
        gap: 12px;
    }
    
    .countdown-item {
        min-width: 60px;
    }
    
    .countdown-number {
        font-size: 2rem;
    }
    
    .countdown-label {
        font-size: 0.75rem;
    }
    
    .services-list {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .notify-form {
        flex-direction: column;
        gap: 12px;
    }
    
    .notify-button {
        width: 100%;
    }
    
    .insurance-logos {
        gap: 20px;
    }
    
    .insurance-logo {
        height: 30px;
    }
    
    .notification-signup,
    .insurance-section,
    .certifications-section {
        padding: 30px 20px;
    }
    
    .about-doctor {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
        gap: 24px;
    }
    
    .profile-image {
        width: 150px;
        height: 150px;
    }
    
    .doctor-info {
        text-align: center;
    }
    
    .doctor-info h3 {
        font-size: 1.5rem;
    }
    
    .office-image {
        border-radius: 12px;
    }
    
    .certification-badges {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .cert-badge {
        min-height: 120px;
        padding: 16px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.75rem;
    }
    
    h2 {
        font-size: 1rem;
    }
    
    .opening-text {
        font-size: 1.25rem;
    }
    
    .countdown-number {
        font-size: 1.75rem;
    }
    
    .description p {
        font-size: 1rem;
    }
}

/* ==========================================
   PRINT STYLES
   ========================================== */

@media print {
    .background-pattern,
    .notify-form,
    .social-links {
        display: none;
    }
    
    .content {
        box-shadow: none;
        border: 1px solid #ccc;
    }
}
