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

body {
    font-family: 'Lato', sans-serif;
    background: linear-gradient(135deg, #faf8f3 0%, #f5f2e8 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    overflow-x: hidden;
}

.container {
    max-width: 900px;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 1;
}

.logo-container {
    margin-bottom: 40px;
    animation: fadeInDown 1s ease-out;
}

.logo {
    max-width: 400px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

.content {
    margin: 40px 0;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.coming-soon-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    color: #1a3a5c;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.subtitle {
    font-size: 1.3rem;
    color: #8b7355;
    font-weight: 300;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.divider {
    width: 200px;
    height: 2px;
    background: linear-gradient(to right, transparent, #c9a961, transparent);
    margin: 30px auto;
    position: relative;
}

.divider::before,
.divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 8px;
    height: 8px;
    background: #c9a961;
    border-radius: 50%;
    transform: translateY(-50%);
}

.divider::before {
    left: -20px;
}

.divider::after {
    right: -20px;
}

.description {
    font-size: 1.1rem;
    color: #2c4a6b;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
}

.decorative-elements {
    position: relative;
    margin: 50px 0;
    height: 60px;
}

.swirl {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 3px solid #c9a961;
    border-radius: 50%;
    opacity: 0.3;
    animation: rotate 20s linear infinite;
}

.swirl-left {
    left: 10%;
    top: 0;
    border-top-color: transparent;
    border-right-color: transparent;
}

.swirl-right {
    right: 10%;
    top: 0;
    border-bottom-color: transparent;
    border-left-color: transparent;
}

.footer {
    margin-top: 60px;
    animation: fadeIn 1s ease-out 0.6s both;
}

.footer-text {
    font-size: 0.95rem;
    color: #8b7355;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

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

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

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

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Background decorative elements */
body::before,
body::after {
    content: '';
    position: fixed;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.05) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

body::before {
    top: -150px;
    left: -150px;
}

body::after {
    bottom: -150px;
    right: -150px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .coming-soon-title {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .description {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .logo {
        max-width: 300px;
    }
    
    .swirl {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .coming-soon-title {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .logo {
        max-width: 250px;
    }
    
    .divider {
        width: 150px;
    }
}
