/* Typography */
.font-playfair {
    font-family: 'Playfair Display', serif;
}

.font-montserrat {
    font-family: 'Montserrat', sans-serif;
}

/* Base styles */
body {
    background-color: black;
    color: white;
}

/* Logo styling */
.logo-container {
    width: 100%;
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.brand-logo {
    width: 100%;
    height: auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

/* Separator styling */
.separator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
}

.line {
    height: 1px;
    width: 50px;
    background-color: var(--bs-secondary);
}

.mosquito-icon {
    height: 20px;
    width: auto;
}

/* Email signup form */
.email-signup {
    max-width: 500px;
    margin: 0 auto;
}

.email-signup .form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 16px;
    transition: all 0.3s ease;
}

.email-signup .form-control:focus {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.1);
}

.email-signup .btn {
    padding: 8px 24px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    background-color: #333;
    border-color: #333;
    color: white;
}

.email-signup .btn:hover {
    background-color: #444;
    border-color: #444;
    transform: translateY(-1px);
}

/* Animations */
.animate-fade-in {
    animation: fadeIn 1s ease-in;
}

.animate-fade-in-up {
    animation: fadeInUp 1s ease-out;
}

.delay-1 {
    animation-delay: 0.3s;
}

.delay-2 {
    animation-delay: 0.6s;
}

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

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .display-4 {
        font-size: 2.5rem;
    }
}