/* style.css */
:root {
    --primary-color: #0d7f7d; /* Deep Teal */
    --primary-light: #14a3a0;
    --accent-color: #e07a5f; /* Orange/Rust */
    --accent-hover: #c9654b;
    --text-dark: #1e293b;
    --text-body: #475569;
    --text-light: #94a3b8;
    --bg-color: #f8fafc;
    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(255, 255, 255, 0.6);
    --glass-shadow: 0 20px 40px rgba(13, 127, 125, 0.08);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-dark);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    position: relative;
}

/* Dynamic Background */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    background: linear-gradient(135deg, #f0fdfa 0%, #f8fafc 100%);
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: float 20s infinite ease-in-out alternate;
}

.blob-1 {
    width: 600px;
    height: 600px;
    background: rgba(20, 163, 160, 0.15); /* Teal */
    top: -20%;
    right: -10%;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: rgba(224, 122, 95, 0.12); /* Orange */
    bottom: -10%;
    left: -10%;
    animation-delay: -7s;
}

.blob-3 {
    width: 400px;
    height: 400px;
    background: rgba(13, 127, 125, 0.1); /* Darker Teal */
    top: 40%;
    left: 30%;
    animation-delay: -14s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(60px, 60px) scale(1.1); }
}

/* Navbar */
.navbar {
    padding: 1.5rem 0;
    position: relative;
    z-index: 10;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    font-size: 1.8rem;
    letter-spacing: 2px;
    font-weight: 700;
}

.contact-link {
    color: var(--text-body);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

/* Main Content */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    z-index: 1;
}

/* Hero Section */
.hero {
    max-width: 800px;
    text-align: center;
    margin-bottom: 4rem;
    animation: slideUp 1s ease-out forwards;
}

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

.badge-wrapper {
    margin-bottom: 1.5rem;
}

.badge {
    background-color: rgba(224, 122, 95, 0.1);
    color: var(--accent-color);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid rgba(224, 122, 95, 0.2);
}

.main-headline {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.1;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.sub-headline {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 3.5rem;
    color: var(--primary-color);
    font-weight: 400;
    margin-bottom: 2rem;
}

.body-copy {
    font-size: 1.25rem;
    color: var(--text-body);
    max-width: 600px;
    margin: 0 auto 3rem auto;
    line-height: 1.8;
}

/* Email Capture Glass Panel */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: var(--glass-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-panel:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(13, 127, 125, 0.12);
}

.capture-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.input-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

input[type="email"] {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    outline: none;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.9);
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
}

input[type="email"]:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(13, 127, 125, 0.15);
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 0 2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(20, 163, 160, 0.2);
}

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

/* Trust Signals */
.trust-signals {
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

.signals-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.signal-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: rgba(13, 127, 125, 0.08);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.signal-item:hover .icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    background-color: rgba(13, 127, 125, 0.15);
}

.signal-item p {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.5;
}

.signal-item strong {
    color: var(--text-dark);
}

/* Footer */
.site-footer {
    padding: 3rem 2rem;
    border-top: 1px solid rgba(0,0,0,0.05);
    background: rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-quote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.copyright {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Responsive */
@media (max-width: 860px) {
    .signals-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .signal-item {
        flex-direction: row;
        text-align: left;
        align-items: center;
        background: white;
        padding: 1.2rem;
        border-radius: 16px;
        box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    }
    
    .icon-wrapper {
        margin-bottom: 0;
        margin-right: 1.5rem;
        flex-shrink: 0;
    }
}

@media (max-width: 640px) {
    .main-headline, .sub-headline {
        font-size: 2.5rem;
    }
    
    .input-group {
        flex-direction: column;
    }
    
    .btn-primary {
        padding: 1rem;
        width: 100%;
    }
    
    .glass-panel {
        padding: 1.5rem;
    }
}
