/* esAccesible - Landing Page Styles */

.landing-navbar {
    background: linear-gradient(135deg, #2e7d32, #1b5e20) !important;
}

/* Hero */
.landing-hero {
    background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 40%, #388e3c 70%, #43a047 100%);
    color: white;
    padding: 80px 0 120px;
    position: relative;
    overflow: hidden;
}

.landing-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float1 8s ease-in-out infinite;
}

.landing-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: float2 10s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(40px, 30px); }
}

@keyframes float2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-30px, -40px); }
}

.landing-hero .container {
    position: relative;
    z-index: 2;
}

.landing-hero h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    text-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.landing-hero p.lead {
    font-size: 1.3rem;
    opacity: 0.92;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.landing-hero .form-control-lg {
    border: none;
    font-size: 1.1rem;
    padding: 14px 22px;
    border-radius: 50px;
}

.landing-hero .form-control-lg:focus {
    box-shadow: none;
}

.landing-hero .btn-lg {
    border-radius: 50px;
    padding: 14px 28px;
}

.landing-hero .row.g-2 {
    background: white;
    border-radius: 50px;
    padding: 5px;
    max-width: 620px;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

/* Hero feature pills below search */
.hero-features {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(4px);
    color: white;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.2);
    transition: background 0.2s;
}

.hero-pill:hover {
    background: rgba(255,255,255,0.25);
}

.hero-pill i {
    font-size: 1.1rem;
}

/* Wave divider */
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 1;
}

.hero-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.hero-wave .shape-fill {
    fill: #f8f9fa;
}

/* Counters */
.counters-section {
    padding: 60px 0;
    background: #f9f5f0;
}

.counter-item {
    text-align: center;
    padding: 20px;
}

.counter-value {
    font-size: 3rem;
    font-weight: 800;
    color: #2e7d32;
    line-height: 1;
}

.counter-label {
    font-size: 1rem;
    color: #666;
    margin-top: 8px;
}

/* Section titles */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1b5e20;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Venue cards on landing */
.venue-landing-card {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform 0.25s, box-shadow 0.25s;
    height: 100%;
}

.venue-landing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.venue-landing-card .card-body {
    padding: 1.25rem;
}

/* Seal chips */
.seal-chip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.seal-chip.bronze { background: linear-gradient(135deg, #cd7f32, #a0522d); color: white; }
.seal-chip.silver { background: linear-gradient(135deg, #c0c0c0, #9e9e9e); color: white; }
.seal-chip.gold { background: linear-gradient(135deg, #ffd700, #ffb300); color: #333; }

/* How it works */
.how-card {
    background: white;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    height: 100%;
    transition: transform 0.2s;
}

.how-card:hover {
    transform: translateY(-4px);
}

.how-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2e7d32, #66bb6a);
    color: white;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    box-shadow: 0 4px 16px rgba(46,125,50,0.3);
}

.how-card h3 {
    font-weight: 700;
    color: #1b5e20;
    font-size: 1.2rem;
}

/* Business CTA */
.cta-business {
    background: linear-gradient(135deg, #1b5e20, #2e7d32, #388e3c);
    position: relative;
    overflow: hidden;
}

.cta-business::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    border-radius: 50%;
}

/* Responsive */
@media (max-width: 768px) {
    .landing-hero {
        padding: 50px 0 80px;
    }

    .landing-hero h1 {
        font-size: 2.2rem;
    }

    .landing-hero p.lead {
        font-size: 1.1rem;
    }

    .hero-features {
        gap: 8px;
    }

    .hero-pill {
        font-size: 0.85rem;
        padding: 6px 14px;
    }

    .counter-value {
        font-size: 2.2rem;
    }

    .hero-wave svg {
        height: 50px;
    }
}
