/* Hero Section Component Styles */

/* General hero styles */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero__title {
  line-height: 1.3;
  letter-spacing: 0.5px;
  text-shadow: 0 4px 10px rgba(0,0,0,0.5);
  color: white;
 }

/* Typed.js custom colors */
.hero__title .text-white { color: #fff; }
.hero__title .text-primary { color: var(--base-color); }

/* Form styles */
.hero__form {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.hero__form:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

/* Inputs */
.hero__form select {
    color: #333;
    border-radius: 8px;
}

.hero__form select:focus {
    outline: none;
    box-shadow: 0 0 5px var(--base-color);
}

/* Button */
.hero__form-btn {
    background: linear-gradient(90deg, var(--base-color), var(--base-dark));
    border: none;
    transition: all 0.3s ease;
}

.hero__form-btn:hover {
    background: linear-gradient(90deg, var(--base-dark), var(--base-color));
    transform: scale(1.05);
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

/* Floating shapes container */
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

/* Base shape styles */
.floating-shapes .shape {
    position: absolute;
    display: block;
    opacity: 0.3;
    animation: float linear infinite;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
}

/* Shape variants */
.shape-circle { width: 20px; height: 20px; border-radius: 50%; }
.shape-square { width: 25px; height: 25px; background: #fff; border-radius: 8px; }
.shape-triangle {
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 20px solid #fff;
    background: transparent;
}
.shape-icon { font-size: 24px; color: rgba(255,255,255,0.5); }

/* Individual shape positions and sizes */
.shape-1 { top: 10%; left: 15%; width: 30px; height: 30px; animation-duration: 12s; }
.shape-2 { top: 50%; left: 5%; width: 20px; height: 20px; animation-duration: 8s; }
.shape-3 { top: 80%; left: 25%; width: 25px; height: 25px; animation-duration: 15s; }
.shape-4 { top: 20%; left: 80%; width: 20px; height: 20px; animation-duration: 10s; }
.shape-5 { top: 70%; left: 60%; width: 25px; height: 25px; animation-duration: 14s; }
.shape-6 { top: 30%; left: 40%; width: 25px; height: 25px; animation-duration: 11s; }
.shape-7 { top: 60%; left: 70%; width: 30px; height: 30px; animation-duration: 13s; }
.shape-8 { top: 15%; left: 55%; width: 28px; height: 28px; animation-duration: 9s; }
.shape-9 { top: 45%; left: 35%; width: 20px; height: 20px; animation-duration: 12s; }
.shape-10 { top: 65%; left: 25%; width: 24px; height: 24px; animation-duration: 10s; }
.shape-11 { top: 30%; left: 75%; width: 22px; height: 22px; animation-duration: 15s; }

/* Floating animation (soft glue effect) */
@keyframes float {
    0%   { transform: translateY(0) translateX(0) rotate(0deg); }
    25%  { transform: translateY(-15px) translateX(10px) rotate(45deg); }
    50%  { transform: translateY(-10px) translateX(-10px) rotate(90deg); }
    75%  { transform: translateY(15px) translateX(5px) rotate(135deg); }
    100% { transform: translateY(0) translateX(0) rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        min-height: 60vh;
        padding: 2rem 0;
    }

    .hero__title {
        font-size: 2rem;
    }

    .hero__form {
        flex-direction: column;
        gap: 1rem;
    }

    .hero__form .input-field {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .hero__title {
        font-size: 1.75rem;
    }

    /* Hide floating shapes on small screens for performance */
    .floating-shapes .shape {
        display: none;
    }
}


