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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #000000;
    color: #FFFFFF;
    line-height: 1.6;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 193, 7, 0.1);
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.contact-btn {
    background-color: #FFC107;
    color: #000000;
    padding: 0.7rem 1.8rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.contact-btn:hover {
    background-color: #FFD54F;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
}

/* Carousel Section */
.carousel-section {
    margin-top: 80px;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

.carousel {
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Email Section */
.email-section {
    padding: 4rem 2rem;
    background-color: #000000;
}

.email-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.email-container h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #FFC107;
    font-weight: 600;
}

.email-container p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #FFFFFF;
    opacity: 0.9;
}

.email-form {
    width: 100%;
}

.form-group {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.form-group input[type="email"] {
    flex: 1;
    padding: 1rem 1.5rem;
    background-color: #1a1a1a;
    border: 2px solid #333333;
    border-radius: 4px;
    color: #FFFFFF;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input[type="email"]:focus {
    outline: none;
    border-color: #FFC107;
    box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.1);
}

.form-group input[type="email"]::placeholder {
    color: #666666;
}

.submit-btn {
    padding: 1rem 2rem;
    background-color: #FFC107;
    color: #000000;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.submit-btn:hover {
    background-color: #FFD54F;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
}

/* Footer */
.footer {
    padding: 3rem 2rem 2rem;
    background-color: #000000;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.social-links a {
    color: #FFFFFF;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links a:hover {
    color: #FFC107;
    transform: translateY(-3px);
}

.copyright {
    font-size: 0.9rem;
    color: #666666;
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        padding: 1rem 1.5rem;
    }

    .header-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .logo {
        font-size: 1rem;
    }

    .carousel-section {
        margin-top: 120px;
        height: 50vh;
        min-height: 400px;
    }

    .email-container h2 {
        font-size: 1.5rem;
    }

    .email-container p {
        font-size: 1rem;
    }

    .form-group {
        flex-direction: column;
    }

    .form-group input[type="email"],
    .submit-btn {
        width: 100%;
    }

    .social-links {
        gap: 1.5rem;
    }

    .social-links svg {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 1rem;
    }

    .logo {
        font-size: 0.9rem;
    }

    .contact-btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }

    .email-container h2 {
        font-size: 1.3rem;
    }
}
