:root {
    /* Brand Colors extracted from requirements */
    --bg-color: #FAF6ED;
    --text-primary: #3C2218; /* Heritage brown */
    --text-secondary: #6B4D3F;
    --accent: #B04125; /* Deep terracotta */
    --accent-hover: #8C311A;
    --card-bg: rgba(255, 255, 255, 0.85);
    --border: rgba(60, 34, 24, 0.15);
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-primary);
    background-color: var(--bg-color);
    /* Subtle organic dot-grid pattern for texture */
    background-image: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%233c2218" fill-opacity="0.04"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow-x: hidden;
}

.background-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    /* Soft glowing radial gradient from center */
    background: radial-gradient(circle at top center, transparent 0%, rgba(250, 246, 237, 0.95) 100%);
    z-index: -1;
}

.container {
    max-width: 900px;
    width: 90%;
    margin: 3rem auto;
    text-align: center;
    padding: 2rem;
    animation: fadeIn 1.2s ease-out;
}

.logo-container {
    margin-bottom: 2rem;
}

.logo {
    max-width: 400px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0px 8px 16px rgba(60, 34, 24, 0.1));
    border-radius: 4px;
    transition: transform 0.5s ease;
}

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

.coming-soon {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    letter-spacing: 1px;
}

.tagline {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 2rem;
}

.description {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 3.5rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .cards-grid {
        grid-template-columns: 1fr 1fr;
    }
    .primary-card {
        grid-column: 1 / -1;
    }
}

.subscribe-card {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: 1.25rem;
    padding: 2.5rem 3rem;
    box-shadow: 0 20px 40px rgba(60, 34, 24, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.social-card {
    padding: 2rem;
    text-align: center;
    align-items: center;
    border: 1.5px solid rgba(176, 65, 37, 0.15);
}

.social-card i {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.social-card:hover i {
    transform: scale(1.1);
}

.social-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.social-card p {
    margin-bottom: 0;
}

.subscribe-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(60, 34, 24, 0.12);
}

.subscribe-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
    color: var(--accent);
}

.subscribe-card p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.subscribe-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.input-wrapper {
    position: relative;
    width: 100%;
}

.input-icon {
    position: absolute;
    top: 50%;
    left: 1.2rem;
    transform: translateY(-50%);
    color: var(--text-secondary);
    opacity: 0.6;
}

.subscribe-form input {
    width: 100%;
    padding: 1rem 1.2rem 1rem 3rem;
    border: 1.5px solid var(--border);
    border-radius: 0.75rem;
    font-family: inherit;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.subscribe-form input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(176, 65, 37, 0.15);
}

.subscribe-form input::placeholder {
    color: #9A8C85;
}

.subscribe-form button {
    background-color: var(--accent);
    color: white;
    border: none;
    padding: 1.1rem;
    border-radius: 0.75rem;
    font-family: inherit;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(176, 65, 37, 0.3);
}

.subscribe-form button:hover {
    background-color: var(--accent-hover);
    box-shadow: 0 6px 20px rgba(176, 65, 37, 0.4);
}

.subscribe-form button:active {
    transform: scale(0.98);
}

.form-message {
    margin-top: 1.25rem;
    font-size: 0.95rem;
    padding: 1rem;
    border-radius: 0.5rem;
    display: none;
    font-weight: 500;
}

.form-message.success {
    display: block;
    background-color: rgba(46, 125, 50, 0.1);
    color: #2E7D32;
    border: 1px solid rgba(46, 125, 50, 0.2);
}

.form-message.error {
    display: block;
    background-color: rgba(211, 47, 47, 0.1);
    color: #D32F2F;
    border: 1px solid rgba(211, 47, 47, 0.2);
}

/* Spinner Animation */
.spinner {
    width: 22px;
    height: 22px;
    border: 3px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
    display: none;
}

.spinner.active {
    display: block;
}

.btn-text.hidden {
    display: none;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

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

/* WhatsApp Floating Icon */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background-color: #25D366;
    color: white;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    text-align: center;
    font-size: 32px;
    box-shadow: 2px 4px 12px rgba(0,0,0,0.25);
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 2px 8px 20px rgba(0,0,0,0.35);
}

.whatsapp-tooltip {
    position: absolute;
    right: 85px;
    background: white;
    color: var(--text-primary);
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    box-shadow: 0 4px 15px rgba(60, 34, 24, 0.15);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -5px;
    transform: translateY(-50%);
    border-width: 6px 0 6px 6px;
    border-style: solid;
    border-color: transparent transparent transparent white;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .coming-soon { font-size: 3rem; }
    .logo { max-width: 300px; }
    .subscribe-card { padding: 2rem 1.5rem; }
}

@media (max-width: 480px) {
    .coming-soon { font-size: 2.25rem; }
    .tagline { font-size: 1rem; }
    .whatsapp-float { bottom: 20px; right: 20px; width: 55px; height: 55px; font-size: 28px; }
    .whatsapp-tooltip { right: 75px; }
    .subscribe-card h3 { font-size: 1.5rem; }
}
