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

body {
    font-family: 'Abel', sans-serif;
    color: #fff;
    background: #000;
}

.hero {
    height: 100vh;
    width: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
                url('background.jpeg') no-repeat center bottom;
    background-size: cover;
    position: relative;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 15vh;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

h1 {
    font-family: 'Cinzel', serif;
    font-weight: 500;
    font-size: 5.5rem;
    margin-bottom: 1rem;
    animation: fadeInDown 1s ease-out;
}

h2 {
    font-family: 'Abel', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #00b4d8;
    animation: fadeInUp 1s ease-out;
}

p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    animation: fadeIn 2s ease-out;
}

.features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.feature-item {
    text-align: center;
    animation: fadeIn 2s ease-out;
}

.feature-item i {
    font-size: 3rem;
    color: #00b4d8;
    margin-bottom: 1rem;
}

.feature-item h3 {
    font-family: 'Abel', sans-serif;
    font-size: 1.5rem;
    color: #00b4d8;
}

.newsletter {
    margin-bottom: 3rem;
    animation: fadeIn 2.5s ease-out;
}

.newsletter h3 {
    font-family: 'Abel', sans-serif;
    margin-bottom: 1rem;
}

.progress-container {
    width: 80%;
    max-width: 400px;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin: 1.5rem auto;
    overflow: hidden;
}

.progress-bar {
    width: 75%;
    height: 100%;
    background: #00b4d8;
    border-radius: 10px;
    animation: progress 2s ease-out;
}

.progress-text {
    color: #00b4d8;
    font-size: 1rem;
    margin-top: 0.5rem;
}

@keyframes progress {
    from {
        width: 0;
    }
    to {
        width: 75%;
    }
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    animation: fadeIn 3s ease-out;
}

.social-links a {
    color: #fff;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #00b4d8;
}

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

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

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

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 3.5rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .features {
        gap: 2rem;
    }
    
    input[type="email"] {
        width: 100%;
        max-width: 300px;
    }
}

.copyright {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: auto;
    padding-bottom: 2rem;
    animation: fadeIn 3s ease-out;
} 