/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #000;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100vw;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 100%), 
                url('edmar-goncalves-Ktaq_oibnu4-unsplash.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
    width: 100%;
}

/* Headline */
.headline {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    line-height: 1.1;
}

/* Subtext */
.subtext {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 300;
    letter-spacing: 1px;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Email Form */
.email-form {
    max-width: 500px;
    margin: 0 auto 4rem auto;
}

.form-group {
    display: flex;
    gap: 0;
    margin-bottom: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.form-group:focus-within {
    border-color: #D4AF37;
}

.email-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 1.2rem 1.5rem;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    outline: none;
}

.email-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.submit-btn {
    background: #D4AF37;
    color: #000;
    border: none;
    padding: 1.2rem 2.5rem;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.submit-btn:hover {
    background: #E6C158;
}

/* Progress Bar Styles */
.progress-container {
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.progress-percentage {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #D4AF37;
}

.progress-label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    height: 100%;
    background: #D4AF37;
    border-radius: 4px;
    width: 0%;
    transition: width 0.5s ease;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-image: linear-gradient(
        -45deg,
        rgba(255, 255, 255, 0.2) 25%,
        transparent 25%,
        transparent 50%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0.2) 75%,
        transparent 75%,
        transparent
    );
    background-size: 20px 20px;
    animation: moveStripes 2s linear infinite;
}

@keyframes moveStripes {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 20px 0;
    }
}

.progress-dates {
    display: flex;
    justify-content: space-between;
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

.live-message h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 500;
    color: #D4AF37;
    letter-spacing: 2px;
}

/* Social Icons */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    text-decoration: none;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: #D4AF37;
    border-color: #D4AF37;
    color: #000;
    transform: translateY(-2px);
}

/* Toast Container */
.toast-container {
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 1000;
}

.toast {
    background: white;
    border: 1px solid #eee;
    padding: 1rem 1.5rem;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: #333;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    animation: slideInRight 0.3s ease;
}

.toast.success {
    border-left: 4px solid #27ae60;
}

.toast.error {
    border-left: 4px solid #e74c3c;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .headline {
        font-size: 3rem;
    }
    
    .subtext {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }
    
    .form-group {
        flex-direction: column;
        border: none;
        gap: 1rem;
    }
    
    .email-form input {
        border: 1px solid rgba(255, 255, 255, 0.3);
        padding: 1rem 1.2rem;
    }
    
    .email-form input:focus {
        border-color: #D4AF37;
    }
    
    .submit-btn {
        padding: 1rem 2rem;
    }
    
    .progress-percentage {
        font-size: 2rem;
    }
    
    .progress-bar {
        height: 6px;
    }
    
    .live-message h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .headline {
        font-size: 2.5rem;
    }
    
    .subtext {
        font-size: 1rem;
    }
    
    .progress-percentage {
        font-size: 1.8rem;
    }
    
    .progress-info {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .social-icons {
        gap: 1rem;
    }
    
    .social-icons a {
        width: 40px;
        height: 40px;
    }
    
    .toast-container {
        top: 1rem;
        right: 1rem;
        left: 1rem;
    }
}

/* Prevent scrolling */
html, body {
    overflow: hidden;
}

.hero-section {
    overflow: hidden;
}