/* Main Layout Styles */

/* Header Styles */
.site-navbar {
    position: fixed !important;
    height: 52px !important;
    background-color: #00B5CC;
}

.site-navbar .header-container {
    width: 100%;
}

.site-navbar .header-content {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.site-navbar .logo-container {
    /* Empty container for logo */
}

.site-navbar .nav-container {
    text-align: right;
}

.site-navbar .site-menu-toggle {
    padding: 1.25rem 0;
    padding-top: 27px !important;
}

.site-navbar .icon-menu {
    font-size: 1.5rem;
    color: white;
}

.site-navbar .site-navigation {
    text-align: right;
    margin-left: auto;
}

.site-navbar .site-menu {
    margin-left: auto;
}

.site-navbar .nav-link {
    color: #fcfcfc;
    cursor: pointer !important;
}

.site-navbar .semi-nav {
    display: flex;
    align-items: center;
}

.semi-nav {
    list-style: none;
}

.site-navbar .semi-nav .nav-link {
    color: #fcfcfc;
    cursor: pointer !important;
}



/* Footer Styles */
.site-footer {
    margin-top: 120px;
}

.site-footer .footer-container {
    width: 100%;
}

.site-footer .footer {
    width: 100vw;
}

.site-footer .footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
    padding-right: 370px;
}

.site-footer .footericons {
    display: flex;
    gap: 50px;
}

.site-footer .footericons img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.site-footer .footer-heading {
    color: #333;
    font-weight: bold;
    margin-bottom: 5px;
}

.site-footer .line {
    height: 2px;
    background-color: #00B5CC;
    margin-bottom: 10px;
    width: 50px;
}

.site-footer .FooterText {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.site-footer .FooterText a {
    color: #666;
    text-decoration: none;
}

.site-footer .FooterText a:hover {
    color: #00B5CC;
}

.site-footer .copyright {
    color: #999;
    font-size: 0.9rem;
    margin-top: 20px;
}

.site-footer .footerlogo {
    width: 350px !important;
    height: auto;
    object-fit: contain;
    position: absolute;
    right: 0;
    top: 0;
}

.site-footer .about,
.site-footer .rental {
    color: rgba(14, 13, 13, 0.8) !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.site-footer .about:hover,
.site-footer .rental:hover {
    color: #00B5CC !important;
}





/* Responsive Styles */

/* Desktop styles (default) */
.site-navbar .site-logo {
    margin-left: 24px;
}

@media (max-width: 768px) {
    .site-navbar .site-logo {
        padding-left: 15px;
        margin-left: 0;
    }
    
    .site-navbar .site-menu-toggle {
        padding: 0;
        height: 52px;
        width: 52px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    

    
    .site-footer .footerlogo {
        width: 250px !important;
    }
    
    .site-footer .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding-right: 20px;
    }
    
    .site-footer .footerlogo {
        position: static;
        margin-top: 20px;
    }
    

}

@media (max-width: 480px) {
    .site-navbar .site-logo {
        padding-left: 10px;
        margin-left: 0;
    }
    
    .site-navbar .site-menu-toggle {
        padding: 0;
        height: 52px;
        width: 52px;
    }
    

    
    .site-footer .footerlogo {
        width: 200px !important;
        position: static;
        margin-top: 20px;
    }
    
    .site-footer .footer-content {
        padding-right: 20px;
    }
    

}
 
 
/* Remove focus outlines from all elements */
* {
    outline: none !important;
}

/* Remove focus outlines from links and buttons */
a:focus, button:focus, input:focus, textarea:focus, select:focus {
    outline: none !important;
    box-shadow: none !important;
    border-color: initial !important;
}

/* Remove tap highlight on mobile */
* {
    -webkit-tap-highlight-color: transparent !important;
}
