/* Hero with Navigation Module Styles */

.hero-with-navigation-wrapper {
    position: relative;
    width: 100%;
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    margin: 20px 60px;
    max-width: 610px;
}

.hero-content h1 {
    color: var(--New-Palette-White);
    text-align: center;
    font-family: "Noto Serif";
    font-size: 68px;
    font-style: normal;
    font-weight: 400;
    line-height: 125%; /* 85px */
}

.hero-content h4 {
    color: var(--New-Palette-Isabelline);
    text-align: center;
    font-family: Assistant;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 27px */
}

/* Secondary Navigation */
.secondary-navigation {
    width: 100%;
    display: flex;
    align-items: stretch;
    justify-content: center;
    height: 50px;
}
.has-top-bar.header-fixed.header-on-scroll .secondary-navigation {
    position: fixed;
    top: 90px;
    z-index: 9999;
}
.admin-bar.has-top-bar.header-fixed.header-on-scroll .secondary-navigation {
    top: 122px;
}
.secondary-nav-inner {
    display: flex;
    align-items: stretch;
    justify-content: center;
    width: 100%;
    max-width: 1600px;
    position: relative;
}

/* Desktop Navigation */
.secondary-nav-desktop {
    display: flex;
    align-items: stretch;
    justify-content: center;
    width: 100%;
}

.secondary-menu-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 30px;
    flex-shrink: 0;
    height: 100%;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.secondary-menu-item span {
    font-family: 'Assistant', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    white-space: nowrap;
}

.secondary-menu-item:hover {
    opacity: 0.8;
}

.secondary-menu-item.active {
    pointer-events: none;
}

/* Mobile Navigation Dropdown */
.secondary-nav-mobile {
    display: none;
    width: 100%;
    position: relative;
}

.secondary-nav-select {
    width: 100%;
    height: 50px;
    padding: 10px 55px 10px 30px;
    border: none;
    font-family: 'Assistant', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    outline: none;
    background-image: none;
    transition: all 0.3s ease;
}

.secondary-nav-select:focus,
.secondary-nav-select:active {
    outline: none;
    box-shadow: inset 0 0 0 1px rgba(92, 90, 84, 0.2);
}

.secondary-nav-select option {
    padding: 10px;
    background-color: #F2F0ED;
    color: #5C5A54;
}

.secondary-nav-select option:checked,
.secondary-nav-select option:hover {
    background-color: #F2F0ED;
    color: #5C5A54;
}

.secondary-nav-select option[selected] {
    background-color: #F2F0ED !important;
    color:#5C5A54 !important;
    font-weight: 500;
}

.secondary-nav-dropdown-icon {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 20px;
}
.vc_section.hero-section-wrapper .vc_column_container.col-sm-12{
    padding-left: 0px !important;
    padding-right: 0px !important;
}
.home-starts-here-wrapper .cta-module + .nm_column.col-sm-12{
    display: none !important;
}

/* Responsive Styles */
@media screen and (max-width: 1024px) {
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-content h4 {
        font-size: 20px;
    }
    
    .secondary-menu-item {
        padding: 10px 20px;
    }
    
    .secondary-menu-item span {
        font-size: 14px;
    }
    
    .secondary-nav-desktop {
        display: none;
    }
    
    .secondary-nav-mobile {
        display: flex;
        align-items: center;
    }
}

@media screen and (max-width: 992px) {
    .has-top-bar.header-fixed.header-on-scroll .secondary-navigation {
        top: 56px;
    }
    .admin-bar.has-top-bar.header-fixed.header-on-scroll .secondary-navigation {
        top: 88px;
    }
}
@media screen and (max-width: 782px) {
    .has-top-bar.header-fixed.header-on-scroll .secondary-navigation {
        top: 56px;
    }
    .admin-bar.has-top-bar.header-fixed.header-on-scroll .secondary-navigation {
        top: 102px;
    }
}
@media screen and (max-width: 768px) {
    .hero-content h1 {
        font-size: 42px;
    }
    .hero-content h4 {
        font-size: 16px;
    }
    .secondary-navigation {
        height: 50px;
    }
    .hero-content{
        margin: 20px 25px;
    }
}
@media screen and (max-width: 600px) {
    .has-top-bar.header-fixed.header-on-scroll .secondary-navigation,
    .admin-bar.has-top-bar.header-fixed.header-on-scroll .secondary-navigation {
        top: 57px;
    }
}