/* Hero Section Styles */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Additional dark overlay for hero section */
.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
    pointer-events: none;
}

.hero-section .caption {
    text-align: center;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-title {
    position: relative;
    margin-bottom: 40px;
    font-family: 'Gilda Display', serif;
    font-size: 55px;
    text-transform: uppercase;
    line-height: 1.35em;
    color: #fff;
    font-weight: 400;
    letter-spacing: 15px;
}

.hero-subtitle {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: #fff;
    margin-bottom: 20px;
}

.hero-description {
    font-family: 'Barlow', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75em;
    color: #fff;
    margin-bottom: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 140px;
}

/* Buttons use butn-light class from theme for hover fill animation */
.hero-buttons .butn-light {
    display: inline-block;
}

.hero-buttons .butn-light a {
    font-weight: 500 !important;
    font-family: 'Barlow Condensed', sans-serif !important;
    text-transform: uppercase !important;
    background: #fff !important;
    color: #1b1b1b !important;
    padding: 14px 36px !important;
    margin: 0 !important;
    position: relative !important;
    overflow: hidden !important;
    display: inline-block !important;
    font-size: 16px !important;
    letter-spacing: 4px !important;
    border: 0px solid #ffffff00 !important;
    line-height: 22.5px !important;
    border-radius: 0 !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
    -webkit-transition: color 0.3s ease !important;
    transition: color 0.3s ease !important;
}

.hero-buttons .butn-light a:after {
    content: '' !important;
    width: 0 !important;
    height: 100% !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 100% !important;
    z-index: 1 !important;
    background: #aa8453 !important;
    -webkit-transition: all 0.3s ease !important;
    transition: all 0.3s ease !important;
}

.hero-buttons .butn-light a span {
    color: #1b1b1b !important;
    position: relative !important;
    z-index: 2 !important;
}

.hero-buttons .butn-light a:hover {
    border-color: transparent !important;
}

.hero-buttons .butn-light a:hover:after {
    width: 100% !important;
    left: 0 !important;
}

.hero-buttons .butn-light a:hover span {
    color: #ffffff !important;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .hero-title {
        font-size: 40px;
        letter-spacing: 10px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .butn-light {
        width: 100%;
        max-width: 300px;
    }
    
    .hero-buttons .butn-light a {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 30px;
        letter-spacing: 8px;
        line-height: 1.35em;
    }
    
    .hero-subtitle {
        font-size: 12px;
        letter-spacing: 4px;
    }
    
    .hero-description {
        font-size: 14px;
        padding: 0 20px;
    }
}

/* Banner Header Background Styles */
.banner-header.section-padding.valign.bg-img.bg-fixed {
    background-position: center;
    background-size: cover;
}
