* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.navbar {
    background: linear-gradient(to bottom, #2e7fc5, #21618f);
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 50px;
}

.logo {
    display: none;
}

.mobile-menu-button {
    display: none;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
}

.mobile-menu-button svg {
    stroke: #ffffff;
}

.nav-links {
    display: flex;
    gap: 1rem;
    list-style: none;
}

.nav-item {
    position: relative;
}

.nav-item > button {
    background: none;
    border: none;
    font-size: 0.9rem;
    color: #ffffff;
    padding: 0.4rem 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    transition: color 0.3s;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.nav-item > button.active {
    color: #ffffff;
    font-weight: 700;
    position: relative;
}
/* Add a bottom border/indicator */
.nav-item > button.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background-color: #ffffff;
    border-radius: 3px;
}
/* For dropdown items that are active */
.dropdown a.active {
    background-color: #f0f4f8;
    color: #184a75;
    font-weight: 700;
    border-left: 4px solid #21618f;
}

/* Active menu item for About Us dropdown when one of its items is active */
.nav-item > button.dropdown-active {
    color: #ffffff;
    font-weight: 700;
    position: relative;
}
* Add the same indicator line for dropdown parent */
.nav-item > button.dropdown-active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background-color: #ffffff;
    border-radius: 3px;
}

.nav-item > button:hover {
    color: #e0e0e0;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 100;
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
}

.dropdown a {
    display: block;
    padding: 0.75rem 1rem;
    color: #21618f;
    text-decoration: none;
    transition: background-color 0.3s;
    font-weight: 600;
}

.dropdown a:hover {
    background-color: #f7fafc;
}

/* Main content styles */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.welcome-section {
    text-align: center;
    margin-bottom: 2rem;
    padding-top: 2rem;
}

.welcome-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
}

.welcome-logo img {
    width: 180px;
    height: auto;
    margin-bottom: 1rem;
}

.welcome-tagline {
    font-size: 1.3rem;
    color: #21618f;
    font-style: italic;
    font-family: Verdana, Geneva, sans-serif;
    font-weight: 500;
}

.about-section {
    margin-bottom: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.about-image {
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.about-text {
    font-size: 14px;
    color: #696969;
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-text p {
    line-height: 1.6;
}

.about-text h2 {
    color: #21618f;
    margin-bottom: 10px;
}

.cta-section {
    text-align: center;
    margin-bottom: 2rem;
}

.reviews-section {
    margin-bottom: 2rem;
}

.reviews-title {
    margin-bottom: 15px;
    color: #21618f;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
}

/* Galleries page specific styles */
.galleries-section {
    margin-bottom: 3rem;
}

.section-title {
    margin-bottom: 1.5rem;
    color: #21618f;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
}

/* Footer styles */
.footer {
    background-color: #21618f;
    padding: 3rem 0 1rem;
    color: #ffffff;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    flex: 1;
    justify-content: space-around;
    gap: 2rem;
}

.footer-column {
    flex: 0 0 auto;
}

.footer-column h3 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
    color: #e0e0e0;
    text-align: center;
    gap: 1rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.footer-social a {
    color: #e0e0e0;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: #ffffff;
}

@media (max-width: 992px) {
    .logo .tagline {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 50px;
        left: 0;
        right: 0;
        background: #21618f;
        box-shadow: 0 4px 6px rgba(0,0,0,0.2);
        z-index: 100;
    }

    .nav-links.active {
        display: block;
    }

    .nav-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-item > button {
        width: 100%;
        padding: 1rem;
        justify-content: space-between;
    }

    .dropdown {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        display: none;
        background: rgba(255, 255, 255, 0.1);
    }

    .dropdown.active {
        display: block;
    }

    .dropdown a {
        padding-left: 2rem;
        color: #ffffff;
    }
    
    .dropdown a:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }

    .mobile-menu-button {
        display: block;
    }

    .about-section {
        flex-direction: column;
    }

    .about-image {
        margin: 0 auto 1rem auto;
    }
    
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1.5rem;
        margin-top: 1rem;
        width: 100%;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-social {
        justify-content: center;
    }
}