
/* ==================== FONTS ==================== */
@import url('https://fonts.googleapis.com/css2?family=Shrikhand&family=Open+Sans:wght@600;700&display=swap');

:root {
    --header-font: 'Shrikhand', cursive;
    --body-font: 'Open Sans', sans-serif;
    
    --cream: #FFFDFA;
    --black: #0D1617;
    --blue: #2875DB;
    --yellow: #FFC44D;
    --red: #FF4E1E;
}

/* ==================== RESET & BASE ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--body-font);
    font-weight: 600;
    background-color: var(--cream);
    color: var(--black);
    line-height: 1.5;
    overflow-x: hidden;
    position: relative;
}

/* ==================== FLOATING DECORATIONS ==================== */
.floating-decoration {
    position: fixed;
    max-width: 100px;
    /* max-height: 120px; */
    z-index: 1;
    transition: transform 0.3s ease;
}

.decoration-1 {
    top: -30%;
    left: 5%;
}

.decoration-2 {
    top: -5%;
    right: 5%;
}

@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(5deg); }
    75% { transform: rotate(-5deg); }
}

/* ==================== MAIN CONTAINER ==================== */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px 40px;
    text-align: center;
    position: relative;
    z-index: 10;
}

/* ==================== LOGO ==================== */
.logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 40px;
}

/* ==================== COMING SOON HEADER ==================== */
.coming-soon {
    font-family: var(--header-font);
    font-size: 5rem;
    font-weight: 400;
    color: var(--black);
    margin-bottom: 18px;
    line-height: 1.1;
}

/* ==================== DESCRIPTION ==================== */
.description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

/* ==================== OPENING INFO ==================== */
.opening-info {
    margin-bottom: 40px;
}

.opening-date {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--blue);
}

.address {
    font-size: .9rem;
    color: var(--blue);
    text-transform:uppercase;
}

/* ==================== CTA SECTIONS ==================== */
.cta-section {
    margin-bottom: 20px;
}

.section-heading {
    font-family: var(--header-font);
    font-size: 2.25rem;
    font-weight: 400;
    color: var(--black);
}

.section-text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.email-link {
    color: var(--red);
    text-decoration: none;
    font-weight: 700;
}

.email-link:hover {
    text-decoration: underline;
}

.cta-button {
    display: inline-block;
    background-color: var(--yellow);
    color: var(--black);
    font-family: var(--body-font);
    font-size: 1rem;
    font-weight: 700;
    padding: 14px 40px;
    height: 50px;
    border-radius: 500px;
    justify-content: center;
    margin-top: 0;
    text-decoration: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.cta-button:hover {
    background-color: #FFA500 ;
    transform: translateY(-3px);
}

/* ==================== SOCIAL SECTION ==================== */
.social-links {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.social-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon svg {
    width: 26px;
    height: 26px;
    /* background: var(--cream); */
    color: var(--black);
}

.social-icon:hover {
    transform: translateY(-3px) scale(1.05);
    background-color: var(--red);
    /* box-shadow: 0 6px 0px rgba(0, 0, 0, 0.2); */
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
    /* Hide decorative images on mobile */
    .floating-decoration {
        display: none;
    }
    
    .container {
        padding: 40px 20px 30px;
    }
    
    .logo {
        max-width: 160px;
        margin-bottom: 30px;
    }
    
    .coming-soon {
        font-size: 3.5rem;
        margin-bottom: 18px;
    }
    
    .description {
        font-size: .8rem;
        margin-bottom: 30px;
    }
    
    .opening-info {
        margin-bottom: 40px;
    }
    
    .opening-date {
        font-size: 1.15rem;
    }
    
    .address {
        font-size: .8rem;
    }
    
    .section-heading {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .section-text {
        font-size: 0.8rem;
        margin-bottom: 20px;
    }
    
    .cta-section {
        margin-bottom: 40px;
    }
    
    .cta-button {
        font-size: 0.95rem;
        padding: 12px 32px;
    }
    
    .social-links {
        gap: 20px;
    }
    
    .social-icon {
        width: 45px;
        height: 45px;
    }
    
    .social-icon svg {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    .logo {
        max-width: 140px;
    }
    
    .coming-soon {
        font-size: 2rem;
        padding-bottom: 0;
        margin: 8px;
    }
    
    .section-heading {
        font-size: 1.2rem;
        margin-bottom: 0;
    }
}