
.hero {
    background: url('../images/bg01.jpg') no-repeat center center;
    background-size: cover;
    height: 80vh; /* full screen height */
    position: relative;
    color: white;
    text-align: center;
}
.hero1 {
    background: url('../images/bg02.jpg') no-repeat center center;
    background-size: cover;
    height: 50vh; /* full screen height */
    position: relative;
    color: white;
    text-align: center;
}
.hero2 {
    background: url('../images/bg03.jpg') no-repeat center center;
    background-size: cover;
    height: 50vh; /* full screen height */
    position: relative;
    color: white;
    text-align: center;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(150, 121, 121, 0.2); /* dark overlay for better text visibility */
}
.hero-content {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}
.text-color-black
{
    color: black;
}
.color-btn
{
    background-color: var(--primary-bordo-color) !important;
    border-color: var(--primary-bordo-color) !important;
}
.color-btn:hover
{
    background-color: var(--secondary-bordo-color) !important;
    border-color: var(--secondary-bordo-color) !important;
}
.color-btn:focus
{
    box-shadow: 0 0 0 .2rem rgba(211, 115, 130, 0.5) !important;
}
.color-bordo
{
    color:#7d0808 !important;
}
.font-bold
{
    font-weight: bold !important;
}
#navbarNav ul.navbar-nav li.nav-item a
{
    font-size: 1.2rem;
}

/* Multi-level dropdown support (Bootstrap 4.5) */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu > .dropdown-menu {
    top: 0;
    left: 100%;
    margin-left: .1rem;
    margin-right: .1rem;
}

.dropdown-menu
{
    background: none !important;
    border: none !important;
}
/* Add a right caret on items that open a submenu */
.dropdown-submenu > .dropdown-toggle::after {
    content: " ";
    float: right;
    border-top: .3em solid transparent;
    border-bottom: .3em solid transparent;
    border-left: .3em solid currentColor;
    margin-top: .4em;
}

/* Optional: open on hover for desktops */
@media (min-width: 992px) {
    .navbar .dropdown:hover > .dropdown-menu { display: block; }
    .dropdown-submenu:hover > .dropdown-menu { display: block; }
}

/* On mobile, stack the nested menu under its parent for easier tapping */
@media (max-width: 991.98px) {
    .logotext
    {
        display: none !important;
    }
    .dropdown-submenu > .dropdown-menu {
        left: 0;
        margin-left: 0;
    }
}


#boxmap {
    position: relative;
    min-height: 50vh;
    overflow: hidden;
}

.map-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 500px;
    z-index: 1;
}

.map-background iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.contact-overlay {
    position: relative;
    z-index: 2;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 15px;
}

.contact-container {
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    max-width: 950px;
    width: 100%;
}

.contact-block {
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease;
}

.contact-block:hover {
    transform: translateY(-5px);
}

.contact-block img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 15px;
}

.contact-block p {
    color: #949494;
    margin-bottom: 0;
    line-height: 1.6;
}

.contact-block h3 {
    color: #a51c30;
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .contact-container {
        margin: 20px;
        padding: 30px 20px;
    }

    .contact-overlay {
        padding: 40px 0;
        min-height: 100vh;
    }
}

@media (max-width: 576px) {
    .contact-block {
        padding: 15px 10px;
    }

    .contact-block img {
        width: 50px;
        height: 50px;
    }
}

.mt-8
{
    margin-top: 80px !important;
}
.mb-8
{
    margin-bottom: 80px !important;
}
.text-black {
    color: #000000 !important;
}

.font20
{
    font-size: 20px !important;
}
.color-grey
{
    color: darkgrey !important;
}