:root {
    --primary-color: #FFC0CB;
    --primary-light: #FFE4E8;
    --text-color: #2C3E50;
    --background-color: #F8F9FA;
    --accent-color: #E91E63;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #fff, var(--primary-light));
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    position: relative;
    overflow-x: hidden;
}

.background-decoration {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(255, 192, 203, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(255, 192, 203, 0.15) 0%, transparent 50%);
    z-index: -1;
    animation: backgroundPulse 15s ease-in-out infinite;
}

.container {
    padding: 2rem;
    text-align: center;
    max-width: 800px;
    width: 100%;
    animation: fadeIn 1.5s ease-out;
    position: relative;
}

.content {
    background: rgba(255, 255, 255, 0.95);
    padding: 3.5rem 2.5rem;
    border-radius: 30px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.05),
        0 1px 3px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.logo-placeholder {
    margin-bottom: 1.5rem;
}

.medical-symbol {
    font-size: 2.5rem;
    color: var(--primary-color);
    animation: float 3s ease-in-out infinite;
}

.doctor-title {
    margin-bottom: 2rem;
    font-family: 'Cormorant Garamond', serif;
}

.dr-prefix {
    font-size: 1.8rem;
    color: var(--accent-color);
    font-weight: 500;
    margin-right: 0.5rem;
}

.doctor-name {
    font-size: 2.2rem;
    color: var(--text-color);
    font-weight: 600;
    letter-spacing: -0.5px;
}

.title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: -1px;
    color: var(--text-color);
}

.dot {
    color: var(--accent-color);
}

.subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-weight: 300;
}

.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
}

.line {
    height: 1px;
    width: 60px;
    background: var(--primary-color);
    opacity: 0.5;
}

.dot-divider {
    width: 5px;
    height: 5px;
    background: var(--primary-color);
    border-radius: 50%;
    margin: 0 10px;
}

.social-links {
    margin-bottom: 2rem;
}

.social-link, .contact-link {
    display: inline-flex;
    align-items: center;
    padding: 0.8rem 1.8rem;
    margin: 0.5rem;
    color: var(--text-color);
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: white;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.05),
        0 1px 2px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover, .contact-link:hover {
    transform: translateY(-2px) scale(1.02);
    background: var(--primary-color);
    color: white;
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.1),
        0 2px 4px rgba(0, 0, 0, 0.08);
}

.social-link i, .contact-link i {
    margin-right: 10px;
    font-size: 1.2rem;
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes backgroundPulse {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .title {
        font-size: 3rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .social-link, .contact-link {
        padding: 0.7rem 1.4rem;
        font-size: 0.9rem;
    }

    .content {
        padding: 2.5rem 1.5rem;
    }
    
    .dr-prefix {
        font-size: 1.5rem;
    }
    
    .doctor-name {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .content {
        padding: 2rem 1.2rem;
    }
    
    .title {
        font-size: 2.5rem;
    }
    
    .contact-info {
        display: flex;
        flex-direction: column;
    }

    .line {
        width: 40px;
    }
    
    .dr-prefix {
        font-size: 1.3rem;
    }
    
    .doctor-name {
        font-size: 1.6rem;
    }
} 