﻿body {
    font-family: "Open Sans", sans-serif;
    color: #444444;
}

/* Sailor Navbar Styling (Updated Background and Contrast) */
.navbar {
    padding: 15px 0;
    background: #445873 !important; /* Your custom navbar color */
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
.navbar-brand {
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff !important; /* White brand text for contrast */
    letter-spacing: 1px;
}
.nav-link {
    color: #e0e6ed !important; /* Light gray text for readable links */
    font-weight: 600;
    padding: 10px 15px !important;
    transition: 0.3s;
}
.nav-link:hover, .nav-link.active {
    color: #fff !important; /* Pure white on hover/active */
    background: rgba(255, 255, 255, 0.1); /* Subtle pill background look */
    border-radius: 4px;
}

/* Portfolio / Gallery Section */
.gallery-title {
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 15px;
    color: #2a2a2a;
}
.gallery-title::after {
    content: '';
    position: absolute;
    display: block;
    width: 60px;
    height: 3px;
    background: #445873; /* Accent line matches the new theme color */
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.portfolio-filters {
    padding: 0;
    margin: 0 auto 35px auto;
    list-style: none;
    text-align: center;
}
.portfolio-filters li {
    cursor: pointer;
    display: inline-block;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    color: #444444;
    margin-bottom: 5px;
    transition: all 0.3s ease-in-out;
}
.portfolio-filters li:hover, .portfolio-filters li.filter-active {
    color: #445873; /* Active category filter match */
}

.gallery-item {
    margin-bottom: 30px;
    overflow: hidden;
    position: relative;
    border-radius: 4px;
    box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
}
.gallery-item img {
    transition: transform 0.3s ease-in-out;
    width: 100%;
    height: 250px;
    object-fit: cover;
}
.gallery-item:hover img {
    transform: scale(1.1);
}
/* Dropdown Specific Color Adjustments */
.dropdown-menu {
    background-color: #ffffff;
    border: none;
    border-radius: 4px;
}
.dropdown-item {
    color: #444444 !important;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 20px;
    transition: 0.2s ease;
}
.dropdown-item:hover {
    background-color: #445873;
    color: #ffffff !important;
}