/* --- Reset & Base Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #F8F5E9; /* Warm cream background */
    font-family: 'Montserrat', sans-serif;
    color: #1A1A1A;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    position: relative;
}

/* --- Typography & Colors --- */
.gold-text {
    color: #B59A65; /* Refined dark gold */
}

.navy-text {
    color: #1B365D; /* Editorial navy blue */
}

.italic {
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

.tracking-wide {
    letter-spacing: 2px;
}

/* --- Layout Containers --- */
.announcement-wrapper {
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem 1.5rem;
    position: relative;
    z-index: 2;
}

.container {
    max-width: 850px;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 10;
}

/* --- Logo --- */
.logo-container {
    margin-bottom: 2.5rem;
}

.logo {
    max-width: 320px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* --- Elegant Dividers --- */
.divider {
    border: none;
    height: 1px;
    margin: 2rem auto;
}

.divider.gold {
    background-color: #D6C296;
    width: 85%;
}

.divider.thin {
    background-color: #E2D4AF;
    width: 95%;
}

/* --- Offer Section --- */
.offer-section {
    margin: 2.5rem 0;
}

.offer-section h1 {
    font-weight: 700;
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
}

.main-offer {
    font-weight: 700;
    font-size: 1.8rem;
    color: #1A1A1A;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.sub-offer {
    font-size: 1.5rem;
    font-weight: 400;
}

/* --- Call to Action & Date --- */
.cta-section {
    margin: 2.5rem 0;
}

.cta-text {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.opening-text {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.date-text {
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

/* --- Footer Information --- */
.footer-info {
    margin: 2rem 0;
    font-size: 1.1rem;
    line-height: 1.8;
}

.footer-info p {
    margin-bottom: 0.5rem;
}

/* --- Social Media Links --- */
.social-links {
    margin-top: 3.5rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: #1A1A1A;
    color: #F8F5E9;
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #B59A65;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(181, 154, 101, 0.4);
}

/* --- Decorative Background Rings --- */
.bg-ornament {
    position: fixed;
    width: 600px;
    height: 600px;
    border: 1px solid #E8DEBE;
    border-radius: 50%;
    opacity: 0.6;
    z-index: 1;
    pointer-events: none;
}

.top-right {
    top: -200px;
    right: -200px;
}

.bottom-left {
    bottom: -200px;
    left: -200px;
}

/* --- Animations --- */
.fade-in {
    animation: fadeIn 1.5s ease-out forwards;
    opacity: 0;
    transform: translateY(25px);
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Responsive Adjustments for Mobile --- */
@media (max-width: 768px) {
    .offer-section h1 {
        font-size: 1.8rem;
    }
    
    .main-offer {
        font-size: 1.4rem;
    }
    
    .sub-offer {
        font-size: 1.2rem;
    }
    
    .date-text {
        font-size: 2.2rem;
    }

    .cta-text, .opening-text {
        font-size: 1.1rem;
    }

    .footer-info {
        font-size: 0.95rem;
    }

    .logo {
        max-width: 250px;
    }

    .bg-ornament {
        width: 300px;
        height: 300px;
    }
    
    .top-right {
        top: -100px;
        right: -100px;
    }
    
    .bottom-left {
        bottom: -100px;
        left: -100px;
    }
}
/* Timer Styles */
.timer-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.time-box {
    background: #1B365D;
    color: #F8F5E9;
    padding: 10px;
    border-radius: 5px;
    min-width: 70px;
    text-align: center;
}

.time-box span {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
}

.time-box small {
    font-size: 0.7rem;
    text-transform: uppercase;
}