/* ============================================
   HERO SECTION STYLES
   Bookedout BNB Website
   ============================================ */

/* ===== Hero Section Base ===== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--white-base) 0%, var(--gray-light) 100%);
}

/* ===== Background Decorative Elements ===== */
.hero-bg-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
}

.hero-circle-1 {
    width: 600px;
    height: 600px;
    background: var(--red-primary);
    top: -200px;
    right: -200px;
}

.hero-circle-2 {
    width: 400px;
    height: 400px;
    background: var(--red-primary);
    bottom: -100px;
    left: -100px;
}

.hero-circle-3 {
    width: 200px;
    height: 200px;
    background: var(--green-success);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* ===== Hero Content Layout ===== */
.hero-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* ===== Hero Badge ===== */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--red-bg-soft);
    color: var(--red-primary);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(230, 57, 70, 0.15);
}

.hero-badge i {
    color: #FFD700;
}

/* ===== Hero Title ===== */
.hero-title {
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

/* ===== Hero Subtitle ===== */
.hero-subtitle {
    font-size: 1.15rem;
    color: var(--gray-body);
    margin-bottom: 36px;
    max-width: 540px;
    line-height: 1.8;
}

/* ===== Hero CTA Group ===== */
.hero-cta-group {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

/* ===== Trust Indicators ===== */
.trust-indicators {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--gray-body);
    font-weight: 500;
}

.trust-item i {
    color: var(--green-success);
    font-size: 1rem;
}

/* ===== Hero Visual / Calendar Card ===== */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-card-main {
    background: var(--white-base);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-xl);
    width: 100%;
    max-width: 420px;
    position: relative;
    z-index: 2;
}

/* ===== Calendar Preview ===== */
.calendar-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--gray-soft);
}

.calendar-header i {
    color: var(--green-success);
    font-size: 1.3rem;
}

.calendar-header span {
    font-weight: 700;
    color: var(--black-primary);
    font-size: 1rem;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
    margin-bottom: 20px;
}

.cal-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    transition: all var(--transition-normal);
}

.cal-day.booked {
    background: var(--green-success);
    color: var(--white-base);
}

.booking-stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--gray-light);
    padding: 14px 18px;
    border-radius: var(--radius-sm);
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-body);
}

.stat-value {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--green-success);
}

/* ===== Floating Stats Cards ===== */
.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white-base);
    padding: 16px 22px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    z-index: 3;
}

.floating-card i {
    font-size: 1.5rem;
}

.fc-value {
    display: block;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--black-primary);
}

.fc-label {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-body);
}

.card-revenue {
    top: 20px;
    right: -30px;
    animation: floatCard 3s ease-in-out infinite;
}

.card-revenue i {
    color: var(--green-success);
}

.card-bookings {
    bottom: 30px;
    left: -30px;
    animation: floatCard 3s ease-in-out infinite 1.5s;
}

.card-bookings i {
    color: var(--red-primary);
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}