/* CSS Reset & Variables */
:root {
    --bg-color: #fdfbf7;
    /* Soft cream backdrop (Original) */
    --text-primary: #333333;
    /* Charcoal gray (Original) */
    --text-secondary: #555555;
    /* Lighter charcoal (Original) */
    --accent-gold: #8B4513;
    /* Dark gold/bronze tone (Original Headers) */
    --accent-gold-light: #B8860B;
    /* Gold button (Original) */
    --accent-gold-hover: #DAA520;
    /* Lighter gold hover (Original) */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --transition: all 0.3s ease;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Page Wrapper */
.page-wrapper {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Header & Logo */
.header {
    padding: 40px 0;
    text-align: center;
    animation: fadeInDown 1s ease-out;
}

.logo {
    max-width: 250px;
    height: auto;
    filter: drop-shadow(3px 3px 5px rgba(0, 0, 0, 0.1));
    /* Subtle shadow, no inversion */
}

/* Main Content */
.content {
    text-align: center;
    padding: 20px 0 60px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    animation: fadeIn 1.5s ease-out;
}

.main-heading {
    font-size: 2.2rem;
    /* Increased from 1.2rem */
    letter-spacing: 0.25em;
    /* Slightly reduced spacing to balance size */
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-family: var(--font-heading);
    font-weight: 700;
}

.coming-soon-container {
    margin-bottom: 2.5rem;
}

.sub-headline {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    line-height: 1.1;
}

.description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 400;
    letter-spacing: 0.05em;
    line-height: 1.6;
}

/* Notify Section */
.notify-section {
    width: 100%;
    display: flex;
    justify-content: center;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #25D366;
    /* WhatsApp Green */
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    animation: none;
}



.whatsapp-btn i {
    font-size: 1.2rem;
}

/* Footer Redesign */
.footer {
    padding: 40px 0 20px;
    margin-top: auto;
    animation: fadeInUp 1s ease-out;
    border-top: 1px solid rgba(139, 69, 19, 0.1);
    /* Subtle divider */
}

.footer-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
    /* Aligns items to the left of the centered container */
}

@media (min-width: 768px) {
    .footer-contact-list {
        flex-direction: row;
        /* Horizontal on desktop if preferred, or keep vertical/grid */
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
        align-items: center;
    }
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.contact-row .icon {
    color: var(--accent-gold);
    font-size: 1.2rem;
    width: 20px;
    /* Fixed width for alignment */
    text-align: center;
}

.contact-row .text {
    color: var(--text-secondary);
}

.contact-row .link {
    text-decoration: none;
    transition: var(--transition);
}

.contact-row .link:hover {
    color: var(--accent-gold);
}

.footer-legal {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-secondary);
    opacity: 0.7;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsiveness */
@media (max-width: 768px) {
    .headline {
        font-size: 2.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .page-wrapper {
        padding: 0 15px;
    }
}