html, body {
    height: 100%;
}
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
main {
    flex: 1 0 auto;
}
footer {
    flex-shrink: 0;
}
.hero-section {
    min-height: 70vh;
    background: url('hero.jpg') center center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-section .container {
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
@media (min-width: 768px) {
    .hero-section .container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    .hero-left {
        align-items: flex-start;
    }
    .hero-right {
        align-items: flex-end;
    }
}
.hero-left img {
    max-width: 180px;
    margin-bottom: 1rem;
}
.hero-left h1, .hero-left p {
    color: #222;
    text-shadow: none;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255,255,255,0.40);
    z-index: 1;
}
.hero-section .container, .hero-left, .hero-right {
    position: relative;
    z-index: 2;
}
.hero-right {
    width: 320px;
    max-width: 100%;
}
@media (max-width: 767.98px) {
    .hero-right {
        width: 100%;
    }
}
.cta-card {
    width: 100%;
    min-width: 0;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08), 0 1.5px 4px rgba(0,0,0,0.04);
    border-radius: 1.25rem;
    background: #fff;
}
.hero-right .btn {
    width: 100%;
    font-size: 1.15rem;
    font-weight: 500;
}
.hero-right .btn-outline-dark {
    border-width: 2px;
}
.pac-container {
    z-index: 12000 !important;
}
.hero-section-reservation {
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-section-reservation .container {
    min-height: 100vh;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.hero-section-reservation .hero-left {
    align-items: center !important;
    text-align: center !important;
    width: 100%;
}
