/* Vama Clinic Light & Welcoming Theme */

:root {
    --primary: #2196F3; /* Bright Blue */
    --secondary: #00BFA5; /* Bright Teal/Green */
    --bg-light: #F8FAFC;
    --text-main: #1E293B;
    --text-muted: #64748B;
    --white: #ffffff;
    --card-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
    filter: brightness(1.05) contrast(0.95);
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2), rgba(248, 250, 252, 0.9));
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 10;
}

.logo-wrapper {
    margin-bottom: 2.5rem;
    animation: fadeInDown 1s ease-out;
}

.logo-container {
    background: white;
    padding: 0.75rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.logo {
    max-width: 180px;
    height: auto;
    display: block;
}

.info-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 1);
    border-radius: 30px;
    padding: 4rem;
    max-width: 800px;
    width: 100%;
    box-shadow: var(--card-shadow);
    animation: fadeInUp 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.badge {
    background: rgba(33, 150, 243, 0.1);
    color: var(--primary);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 1.5rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
    color: #0F172A;
}

.highlight {
    color: var(--primary);
}

.description {
    font-size: 1.15rem;
    color: var(--text-muted);
    font-weight: 400;
    margin-bottom: 2.5rem;
    max-width: 650px;
}

.features {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
    color: var(--text-main);
    font-weight: 600;
}

.icon-sphere {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.icon-sphere.blue { background-color: var(--primary); }
.icon-sphere.green { background-color: #4CAF50; }
.icon-sphere.teal { background-color: var(--secondary); }

.cta-section {
    padding-top: 2rem;
    border-top: 1px solid #E2E8F0;
}

.cta-section h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #0F172A;
}

.cta-section p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.notify-form {
    display: flex;
    gap: 1rem;
    width: 100%;
}

input[type="email"] {
    flex: 1;
    background: white;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 1.2rem;
    color: var(--text-main);
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s;
}

input[type="email"]:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(33, 150, 243, 0.1);
}

.btn-primary {
    background: var(--primary);
    border: none;
    border-radius: 12px;
    padding: 1rem 2.5rem;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: transform 0.2s, background 0.2s;
}

.btn-primary:hover {
    background: #1976D2;
    transform: translateY(-2px);
}

footer {
    margin-top: 4rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* 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); }
}

@media (max-width: 768px) {
    .container { padding: 1rem; }
    .info-card { padding: 2.5rem 1.5rem; }
    h1 { font-size: 2.5rem; }
    .notify-form { flex-direction: column; }
    .features { flex-direction: column; gap: 1rem; }
}
