:root {
    --primary-color: #6a5acd; /* Soft purple */
    --secondary-color: #20b2aa; /* Light sea green */
    --accent-color: #ff7f50; /* Coral */
    --light-color: #f5f5f5;
    --dark-color: #333;
    --bg-gradient: linear-gradient(135deg, #9370db 0%, #20b2aa 100%);
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--light-color);
    color: var(--dark-color);
    min-height: 100vh;
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1600334129128-685c5582fd35?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.85);
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

header {
    text-align: center;
    padding: 2rem 0;
    margin-bottom: 2rem;
}

.logo-container h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    letter-spacing: 2px;
}

.tagline {
    font-size: 1.2rem;
    color: var(--secondary-color);
    font-weight: 300;
    letter-spacing: 1px;
}

/* Construction Overlay */
.construction-overlay {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 100;
}

.ribbon {
    width: 200px;
    background: var(--accent-color);
    position: absolute;
    top: 30px;
    right: -50px;
    text-align: center;
    line-height: 40px;
    letter-spacing: 1px;
    color: #fff;
    font-weight: 600;
    transform: rotate(45deg);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

/* Coming Soon Section */
.coming-soon {
    text-align: center;
    padding: 3rem 0;
    margin-bottom: 3rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.coming-soon h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.time-block {
    background: var(--bg-gradient);
    color: white;
    width: 100px;
    height: 100px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.time-block span:first-child {
    font-size: 2.5rem;
    font-weight: 700;
}

.time-label {
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Info Cards */
.info-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.info-card {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.info-card .icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.info-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.info-card p {
    color: var(--dark-color);
}

.info-card a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.info-card a:hover {
    color: var(--primary-color);
}

/* Map Container */
.map-container {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

.map-container h3 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 600;
}

.map {
    display: flex;
    justify-content: center;
    overflow: hidden;
    border-radius: 8px;
}

.map iframe {
    width: 100%;
    max-width: 100%;
    height: 400px;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem 0;
    color: var(--dark-color);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo-container h1 {
        font-size: 2.5rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .time-block {
        width: 80px;
        height: 80px;
    }
    
    .time-block span:first-child {
        font-size: 2rem;
    }
    
    .map iframe {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1rem;
    }
    
    .time-block {
        width: 70px;
        height: 70px;
    }
    
    .info-container {
        gap: 1rem;
    }
    
    .map iframe {
        height: 250px;
    }
} 