/* Custom styles for Harbour website */

/* Make the header logo bigger */
.navbar-header .navbar-brand img {
    width: auto;
    height: auto;
    max-height: 80px; /* Increase this value to make the logo bigger */
    max-width: 100%;
    transition: all 0.3s ease;
}

/* Adjust header spacing to accommodate larger logo */
.navbar-header {
    padding: 10px 0;
}

/* Make the footer logo bigger */
.widget.about-widget .logo img {
    width: auto;
    height: auto;
    max-height: 80px; /* Increase this value to make the logo bigger */
    max-width: 100%;
    margin-bottom: 10px;
}

/* Partner logos styling */
.wpo-partner-section {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
}

.wpo-partner-section .grid {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
}

.wpo-partner-section .grid img {
    max-width: 80%;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    margin: 0 auto;
}

/* Remove background dummy image from features section */
.wpo-features-section-s2 {
    background-image: none !important;
    background-color: #f5f5f5 !important;
}

.wpo-features-section-s2:before,
.wpo-features-section-s2:after {
    display: none !important;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .navbar-header .navbar-brand img {
        max-height: 60px; /* Slightly smaller on mobile but still bigger than default */
    }
    
    .widget.about-widget .logo img {
        max-height: 60px; /* Slightly smaller on mobile but still bigger than default */
    }
    
    .wpo-partner-section .grid {
        height: 80px;
    }
    
    .wpo-partner-section .grid img {
        max-height: 50px;
    }
}
