:root {
    color-scheme: light only;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #000 !important;
    background-color: #fff !important;
}

.header-nav-wrapper {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-header {
    background-color: #829059;
    padding: 0 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    max-width: 640px;
    width: 100%;
    height: auto;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1000;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background-color: #ede2d5;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.main-nav {
    background-color: #829059;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 10px;
    flex-wrap: wrap;
    margin-top: -1px;
}

.nav-button {
    background-color: #dcc8ad;
    color: #000;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 4px;
    border: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-align: center;
    cursor: pointer;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.nav-button:hover {
    background-color: #7f374b;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.nav-button:active {
    transform: translateY(0);
}

.nav-button.active {
    background-color: #7f374b;
    color: #fff;
}

.content {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
}

.content-section {
    background-color: #ffffff !important;
    color: #333 !important;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: none;
    min-height: 400px;
}

.content-section.active {
    display: block;
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-section h1,
.content-section h2 {
    color: #829059;
    margin-bottom: 20px;
    font-size: 32px;
}

.content-section p {
    color: #333;
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 15px;
}

.content-section a {
    color: #7f374b;
    text-decoration: none;
    font-weight: bold;
}

.content-section a:hover {
    text-decoration: underline;
}

.content-img {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
    border-radius: 8px;
}

ol li {
    margin-bottom: 25px;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr 2fr;
    gap: 15px;
    margin-top: 30px;
}

.contact-card {
    background-color: transparent;
    padding: 20px;
    border-radius: 8px;
    box-shadow: none;
    text-align: center;
}

.contact-card h3 {
    color: #7f374b;
    margin: 15px 0 10px 0;
    font-size: 20px;
}

.contact-icon {
    max-width: 150px;
    width: 100%;
    height: auto;
    margin: 0 auto;
}

.contact-location-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 10px;
}

.contact-card .contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 15px 0;
    text-align: left;
}

.contact-info-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.contact-info-text {
    flex: 1;
    line-height: 1.6;
}

.contact-info-text a {
    color: #7f374b;
    text-decoration: none;
}

.contact-info-text a:hover {
    text-decoration: underline;
}

.contact-info-text strong {
    color: #7f374b;
}

/* Fixed Footer Links */
.footer-links {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 10px 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 900;
    font-size: 12px;
}

.footer-link {
    color: #7f374b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #a58d7f;
    text-decoration: underline;
}

.footer-separator {
    color: #999;
    margin: 0 8px;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
    cursor: default;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 50px;
    font-size: 50px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10000;
}

.lightbox-close:hover {
    color: #dcc8ad;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 60px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    padding: 20px;
    user-select: none;
    transition: color 0.3s ease;
    z-index: 10000;
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    color: #dcc8ad;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .main-nav {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 250px;
        flex-direction: column;
        background-color: #829059;
        box-shadow: -2px 0 10px rgba(0,0,0,0.3);
        transition: right 0.3s ease;
        padding: 20px;
        gap: 10px;
        z-index: 999;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .nav-button {
        width: 100%;
    }
    
    .logo {
        max-width: 400px;
    }

    .content-section {
        padding: 30px 20px;
    }

    .content-section h1,
    .content-section h2 {
        font-size: 26px;
    }
    
    .footer-links {
        bottom: 15px;
        right: 15px;
        font-size: 11px;
        padding: 8px 12px;
    }
    
    .footer-separator {
        margin: 0 5px;
    }
    
    .lightbox img {
        max-width: 95%;
        max-height: 95%;
    }
    
    .lightbox-close {
        top: 20px;
        right: 20px;
        font-size: 40px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        font-size: 40px;
        padding: 10px;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .nav-button {
        font-size: 14px;
        padding: 10px 16px;
    }

    .content-section h1,
    .content-section h2 {
        font-size: 22px;
    }
    
    .logo {
        max-width: 300px;
    }
    
    .main-nav {
        top: 70px;
    }
    
    .footer-links {
        bottom: 10px;
        right: 10px;
        font-size: 10px;
        padding: 6px 10px;
    }
}