/* Increase logo size and ensure vertical alignment */
.navbar-brand img {
    max-height: 60px;
    /* Maximized within navbar */
    width: auto;
    transition: all 0.3s ease;
}

/* Adjust navbar brand container to accommodate larger logo */
.navbar-brand {
    padding: 5px 15px;
    /* Reduced padding to fit larger logo */
    height: auto;
    display: flex;
    align-items: center;
    /* Vertically center */
}

/* Ensure navbar has enough height */
.navbar {
    min-height: 70px;
    /* Standard height */
}

/* Image overrides */
.bar.background-image-fixed-2 {
    background-image: url('../img/photographs/works-compressed.jpg') !important;
}

.home-carousel {
    background-image: url('../img/photographs/lago-gate-2025-cropped.jpg') !important;
}

#heading-breadcrumbs {
    background-image: url('../img/texture-bw.png') !important;
    background-size: auto !important;
    background-repeat: repeat !important;
    background-position: center center !important;
}

/* Remove underline from nav links except Black Friday Sale */
#navigation .navbar-nav>li>a:not(.black-friday-nav-link) {
    text-decoration: none !important;
    border-bottom: none !important;
}

/* Reduce nav link padding to prevent overflow */
#navigation .navbar-nav>li>a {
    padding-left: 8px !important;
    padding-right: 8px !important;
    font-size: 13px !important;
}

#navigation .navbar-nav>li>a:not(.black-friday-nav-link):hover,
#navigation .navbar-nav>li>a:not(.black-friday-nav-link):focus,
#navigation .navbar-nav>li.active>a:not(.black-friday-nav-link) {
    text-decoration: none !important;
    border-bottom: none !important;
}

/* Features Section - Modernization */
.box-simple {
    padding: 30px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border: 1px solid #eee;
}

.box-simple:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.box-simple .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: #f8f9fa;
    border-radius: 50%;
    margin-bottom: 20px;
    color: #333;
    transition: all 0.3s ease;
}

.box-simple:hover .icon {
    background: #333;
    color: #fff;
    transform: scale(1.1);
}

.box-simple h3 {
    margin-bottom: 15px;
    font-weight: 600;
}