/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Sancreek&family=Cinzel:wght@400;600;700&family=Crimson+Text:ital,wght@0,400;0,600;1,400&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Crimson Text', serif;
    background: linear-gradient(135deg, #9db5a6 0%, #7a9b8a 25%, #5d7c6b 50%, #6b8573 75%, #8fa695 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    color: #d4a574;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

/* Background Animations */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Animated Gears Background */
.gears {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.1;
}

.gear {
    position: absolute;
    border: 3px solid #d4a574;
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.gear::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: #d4a574;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.gear:nth-child(1) {
    width: 150px;
    height: 150px;
    top: 10%;
    right: 10%;
    animation-duration: 25s;
}

.gear:nth-child(2) {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 15%;
    animation-duration: 18s;
    animation-direction: reverse;
}

.gear:nth-child(3) {
    width: 80px;
    height: 80px;
    top: 60%;
    right: 25%;
    animation-duration: 22s;
}

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

/* Steam Effects */
.steam {
    position: fixed;
    bottom: -50px;
    width: 100%;
    height: 200px;
    background: linear-gradient(to top, rgba(255,255,255,0.1) 0%, transparent 100%);
    animation: steamRise 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 2;
}

@keyframes steamRise {
    0%, 100% { transform: translateY(0) scaleX(1); opacity: 0.3; }
    50% { transform: translateY(-20px) scaleX(1.1); opacity: 0.1; }
}

/* Container and Layout */
.container {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
}

/* Typography */
.logo {
    font-family: 'Sancreek', cursive;
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 400;
    color: #d4a574;
    text-shadow: 
        0 0 10px rgba(212, 165, 116, 0.6),
        0 0 20px rgba(212, 165, 116, 0.4),
        2px 2px 4px rgba(0,0,0,0.5);
    margin-bottom: 1rem;
    animation: logoGlow 3s ease-in-out infinite alternate;
    letter-spacing: 0.05em;
}

@keyframes logoGlow {
    from { text-shadow: 0 0 10px rgba(212, 165, 116, 0.6), 0 0 20px rgba(212, 165, 116, 0.4), 2px 2px 4px rgba(0,0,0,0.5); }
    to { text-shadow: 0 0 20px rgba(212, 165, 116, 0.9), 0 0 30px rgba(212, 165, 116, 0.6), 2px 2px 4px rgba(0,0,0,0.5); }
}

.subtitle {
    font-size: clamp(1.2rem, 4vw, 2rem);
    color: #b8956b;
    margin-bottom: 2rem;
    font-style: italic;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.4);
    animation: fadeInUp 2s ease-out 0.5s both;
}

.coming-soon {
    font-family: 'Cinzel', serif;
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 600;
    color: #f4e8d0;
    margin: 2rem 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    animation: fadeInUp 2s ease-out 1s both;
}

.description {
    max-width: 600px;
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    line-height: 1.8;
    color: #e8d5b7;
    margin-bottom: 3rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.4);
    animation: fadeInUp 2s ease-out 1.5s both;
}

/* Dirigible */
.dirigible {
    width: clamp(250px, 55vw, 500px);
    height: auto;
    margin: 2rem 0;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    animation: float 6s ease-in-out infinite;
    border: 3px solid rgba(212, 165, 116, 0.3);
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(0deg); }
}

/* Form Styles */
.notify-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
    max-width: 400px;
    animation: fadeInUp 2s ease-out 2s both;
}

.email-input {
    width: 100%;
    padding: 15px 20px;
    font-size: 1.1rem;
    border: 2px solid #d4a574;
    border-radius: 30px;
    background: rgba(0,0,0,0.2);
    color: #f4e8d0;
    font-family: 'Crimson Text', serif;
    outline: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.email-input::placeholder {
    color: #b8956b;
    opacity: 0.8;
}

.email-input:focus {
    border-color: #f4e8d0;
    background: rgba(0,0,0,0.3);
    box-shadow: 0 0 20px rgba(212, 165, 116, 0.4);
    transform: translateY(-2px);
}

.notify-btn {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Cinzel', serif;
    background: linear-gradient(45deg, #d4a574, #f4e8d0);
    color: #5d7c6b;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: 0 5px 15px rgba(212, 165, 116, 0.4);
    position: relative;
    overflow: hidden;
}

.notify-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.notify-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.6);
}

.notify-btn:hover::before {
    left: 100%;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 3rem;
    animation: fadeInUp 2s ease-out 2.5s both;
}

.social-link {
    width: 50px;
    height: 50px;
    border: 2px solid #d4a574;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4a574;
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    background: rgba(0,0,0,0.2);
    backdrop-filter: blur(5px);
}

.social-link:hover {
    background: #d4a574;
    color: #5d7c6b;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(212, 165, 116, 0.5);
}

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

/* Steam Particle Animation */
@keyframes steamFloat {
    to {
        transform: translateY(-100vh) scale(0);
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    .notify-form {
        flex-direction: column;
        gap: 1rem;
    }
    
    .social-links {
        gap: 1rem;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .description {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .email-input, .notify-btn {
        font-size: 1rem;
        padding: 12px 20px;
    }
}