/* Modern Hero Banner CSS */

/* Hero Banner Container */
.hero-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    background-color: #1a1a1a;
}

/* Banner Image */
.banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 15s ease;
}

.hero-banner:hover .banner-image img {
    transform: scale(1.05);
}

/* Banner Overlay */
.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.7) 100%
    ); */
    z-index: 1;
}

/* Banner Content */
.banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 900px;
    width: 90%;
    text-align: center;
    color: #fff;
    z-index: 2;
    padding: 2rem;
}

/* Location Badge */
.location-badge {
    display: inline-block;
    background-color: rgba(170, 132, 83, 0.9);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 8px 16px;
    margin-bottom: 25px;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    animation: fadeInDown 1s ease;
}

/* Banner Subtitle */
.banner-subtitle {
    font-size: 22px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease 0.3s both;
}

/* Banner Title */
.banner-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 1s ease 0.6s both;
}

/* Banner Description */
.banner-description {
    font-size: 18px;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 35px;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeInUp 1s ease 0.9s both;
}

/* Banner Buttons */
.banner-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    animation: fadeInUp 1s ease 1.2s both;
}

.banner-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    padding: 16px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.primary-btn {
    background-color: #aa8453;
    color: #fff;
    border: 2px solid #aa8453;
}

.primary-btn:hover {
    background-color: #8e6c3e;
    border-color: #8e6c3e;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.secondary-btn {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.secondary-btn:hover {
    background-color: #fff;
    color: #222;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Animation Keyframes */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .banner-title {
        font-size: 48px;
    }
}

@media (max-width: 991px) {
    .hero-banner {
        height: 80vh;
        min-height: 550px;
    }
    
    .banner-title {
        font-size: 42px;
    }
    
    .banner-subtitle {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .banner-description {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .hero-banner {
        height: 75vh;
        min-height: 500px;
    }
    
    .banner-content {
        padding: 1.5rem;
    }
    
    .location-badge {
        font-size: 12px;
        padding: 6px 12px;
        margin-bottom: 20px;
    }
    
    .banner-subtitle {
        font-size: 18px;
        letter-spacing: 2px;
        margin-bottom: 15px;
    }
    
    .banner-title {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .banner-description {
        font-size: 15px;
        margin-bottom: 25px;
    }
    
    .banner-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .banner-btn {
        min-width: 100%;
        padding: 14px 20px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .hero-banner {
        height: 70vh;
        min-height: 450px;
    }
    
    .banner-subtitle {
        font-size: 16px;
        letter-spacing: 1.5px;
    }
    
    .banner-title {
        font-size: 28px;
    }
    
    .banner-description {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .banner-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
}

/* Ensure the booking form container positions well relative to the banner */
.booking-form-container1 {
    position: relative;
    margin-top: -80px;
    z-index: 10;
} 