/* styles.css */

/* Custom styles for engagement */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f8f9fa;
    overflow-x: hidden; /* For shooting stars */
}

.hero {
    background: linear-gradient(135deg, #007bff, #00c6ff);
    min-height: 60vh; /* Increased height for better integration */
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-container {
    max-width: 400px;
    margin-bottom: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1); /* Subtle background for cohesion */
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.logo {
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.animate-bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-30px);
    }
    60% {
        transform: translateY(-15px);
    }
}

.features i {
    transition: transform 0.3s ease;
}

.features i:hover {
    transform: scale(1.2);
}

.pop-text {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    background: linear-gradient(to right, #ffcc00, #ff9900);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Shooting Stars Animation */
.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    box-shadow: 0 0 5px white;
    animation: shooting-star 5s linear infinite;
}

@keyframes shooting-star {
    0% {
        transform: translateX(0) translateY(0) rotate(45deg);
        opacity: 1;
    }
    100% {
        transform: translateX(-100vw) translateY(100vh) rotate(45deg);
        opacity: 0;
    }
}

/* Legal Sections */
.legal {
    border-top: 1px solid #ddd;
}

/* Mobile optimizations */
@media (max-width: 576px) {
    .hero {
        min-height: 50vh;
    }
    .logo-container {
        max-width: 100%;
        padding: 10px;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .row > div {
        margin-bottom: 20px;
    }
    img.img-fluid {
        max-width: 100%;
        height: auto;
    }
}