/* =============================================
   HOME PAGE STYLES
   ============================================= */

.hero-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

@media (min-width: 576px) {
    .hero-section {
        min-height: 70vh;
    }
}

@media (min-width: 768px) {
    .hero-section {
        min-height: 100vh;
    }
}

.hero-section > div:first-child {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-section .gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg,
        rgba(10,15,30,0.82) 0%,
        rgba(10,15,30,0.55) 55%,
        rgba(10,15,30,0.25) 100%);
}

.hero-section .container {
    position: relative;
    z-index: 2;
    padding: 40px 16px;
}

@media (min-width: 576px) {
    .hero-section .container {
        padding: 60px 20px;
    }
}

@media (min-width: 768px) {
    .hero-section .container {
        padding: 100px 25px;
    }
}

.hero-section .location-pill {
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.20);
    font-size: .78rem;
    color: rgba(255,255,255,.90);
    backdrop-filter: blur(6px);
    padding: 8px 16px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-section .location-pill span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4cde97;
    display: inline-block;
    box-shadow: 0 0 6px #4cde97;
}

.hero-section h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.18;
    letter-spacing: -0.5px;
    margin-bottom: 1rem;
}

.hero-section h1 span {
    color: #4cde97;
}

.hero-section p {
    font-size: 1rem;
    color: rgba(255,255,255,.75);
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 1.75rem;
}

.hero-section .trust-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    font-size: .82rem;
    margin-bottom: 1.5rem;
}

.hero-section .trust-badges span {
    color: rgba(255,255,255,.88);
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-section .trust-badges i {
    color: #4cde97;
    font-size: .75rem;
}

.hero-section .cta-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

@media (min-width: 576px) {
    .hero-section .cta-buttons {
        gap: 12px;
    }
}

@media (min-width: 768px) {
    .hero-section .cta-buttons {
        gap: 16px;
    }
}

.hero-section .cta-buttons a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--hotel-secondary);
    color: #fff;
    padding: 11px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: .85rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(226,52,40,0.40);
    transition: all .25s;
    flex: 1;
    justify-content: center;
}

@media (min-width: 576px) {
    .hero-section .cta-buttons a {
        padding: 12px 24px;
        font-size: .9rem;
        flex: 0 1 auto;
    }
}

@media (min-width: 768px) {
    .hero-section .cta-buttons a {
        padding: 13px 28px;
        font-size: .92rem;
    }
}

.hero-section .cta-buttons a:hover {
    background: #c72820;
    box-shadow: 0 6px 24px rgba(226,52,40,0.50);
}