/* Base Styles */
:root {
    --primary-color: #b78a3f;      /* Rich gold */
    --secondary-color: #5c3c10;    /* Deep brown */
    --accent-color: #ffd700;       /* Bright gold */
    --text-color: #ffffff;         /* White text */
    --dark-overlay: rgba(0, 0, 0, 0.6); /* Slightly lighter overlay for better visibility */
    --light-overlay: rgba(255, 215, 0, 0.1); /* Gold-tinted overlay */
    --font-primary: 'Poppins', sans-serif;
    --font-heading: 'Playfair Display', serif;
    --glow-effect: 0 0 20px rgba(255, 215, 0, 0.6); /* Gold glow effect */
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text-color);
    line-height: 1.6;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)), 
                url('https://images.unsplash.com/photo-1534447677768-be436bb09401?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80') no-repeat center center/cover;
    background-attachment: fixed;
    background-blend-mode: overlay;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
    mix-blend-mode: multiply;
}

.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Header Styles */
.header {
    text-align: center;
    padding: 2rem 0;
    animation: fadeInDown 1s ease-out;
}

.logo {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    color: var(--accent-color);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.7), 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
    animation: glow 2s ease-in-out infinite alternate;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 3px;
}

.logo span {
    color: var(--text-color);
    font-weight: 300;
}

.tagline {
    font-size: 1.2rem;
    color: var(--text-color);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 0.5rem;
    opacity: 0.9;
}

/* Main Content */
.main-content {
    text-align: center;
    padding: 2rem 0;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.coming-soon {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.message {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

/* Countdown Styles */
.countdown-container {
    margin: 3rem 0;
}

.countdown {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 0 auto;
    max-width: 800px;
}

.countdown-item {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 1.5rem 1rem;
    min-width: 120px;
    text-align: center;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2), 0 10px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
    animation: float 6s ease-in-out infinite;
}

.countdown-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.countdown-item:nth-child(2) { animation-delay: 0.5s; }
.countdown-item:nth-child(3) { animation-delay: 1s; }
.countdown-item:nth-child(4) { animation-delay: 1.5s; }

.countdown-item span {
    display: block;
}

.countdown-item span:first-child {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.countdown-item .label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

/* Contact Info */
.contact-info {
    margin: 3rem 0;
    text-align: center;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-heading {
    font-family: var(--font-heading);
    color: var(--accent-color);
    font-size: 2rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.contact-subheading {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-link, .contact-address {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.contact-link i, .contact-address i {
    margin-right: 12px;
    color: var(--accent-color);
    font-size: 1.2rem;
    min-width: 24px;
    text-align: center;
}

.contact-link:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.contact-address {
    color: rgba(255, 255, 255, 0.9);
    margin-top: 0.5rem;
}

.office-hours {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.office-hours h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.office-hours p {
    margin: 0.5rem 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .contact-info {
        padding: 1.5rem;
        margin: 2rem 1rem;
    }
    
    .contact-link, .contact-address {
        padding: 0.8rem 1rem;
        font-size: 1rem;
    }
    
    .contact-heading {
        font-size: 1.7rem;
    }
}

/* Footer */
.footer {
    text-align: center;
    padding: 2rem 0;
    margin-top: auto;
    font-size: 0.9rem;
    opacity: 0.8;
    animation: fadeIn 1s ease-out 0.6s both;
}

.footer p {
    margin-bottom: 1rem;
    font-style: italic;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.social-icon {
    color: var(--text-color);
    font-size: 1.2rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-overlay);
    transition: all 0.3s ease;
    text-decoration: none;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
    background: var(--accent-color);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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

@keyframes float {
    0% { 
        transform: translateY(0px); 
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.2), 0 10px 20px rgba(0, 0, 0, 0.3);
    }
    50% { 
        transform: translateY(-10px); 
        box-shadow: 0 0 30px rgba(255, 215, 0, 0.4), 0 15px 30px rgba(0, 0, 0, 0.4);
    }
    100% { 
        transform: translateY(0px);
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.2), 0 10px 20px rgba(0, 0, 0, 0.3);
    }
}

@keyframes glow {
    from {
        text-shadow: 0 0 10px rgba(255, 215, 0, 0.7), 2px 2px 4px rgba(0, 0, 0, 0.5);
    }
    to {
        text-shadow: 0 0 20px rgba(255, 215, 0, 1), 0 0 30px rgba(255, 215, 0, 0.8), 2px 2px 4px rgba(0, 0, 0, 0.5);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo {
        font-size: 3rem;
    }
    
    .coming-soon {
        font-size: 2.5rem;
    }
    
    .message {
        font-size: 1.1rem;
    }
    
    .countdown {
        gap: 1rem;
    }
    
    .countdown-item {
        min-width: 100px;
        padding: 1rem 0.5rem;
    }
    
    .countdown-item span:first-child {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 2.5rem;
    }
    
    .coming-soon {
        font-size: 2rem;
    }
    
    .countdown {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .countdown-item {
        width: 80%;
        max-width: 200px;
    }
    
    .contact-link {
        width: 100%;
        justify-content: center;
    }
}
