* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.hero {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    background: rgba(0, 0, 0, 0.4);
    padding: 20px 40px;
    border-radius: 10px;
}

.hero-overlay h1 {
    font-size: 3rem;
    font-weight: bold;
    margin: 0;
}

.date-bar {
    background-color: #48704E;
    color: white;
    padding: 10px 20px;
    font-size: 0.9rem;
    position: absolute;
    bottom: 10px;
    right: 20px;
    background: rgba(0, 0, 0, 0.6);
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 500;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 5;
}

#current-date {
    display: inline-block;
    letter-spacing: 0.5px;
}

/* Navigation */
.main-nav {
    background-color: #FAD814;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
    margin: 0;
    padding: 0;
    justify-content: center;
    flex-wrap: nowrap;
}

.nav-menu li {
    margin: 0;
}

.nav-link {
    display: block;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    border-bottom: 3px solid transparent;
}

.nav-link:hover {
    background-color: rgba(72, 112, 78, 0.1);
    color: #48704E;
    border-bottom-color: #48704E;
}

.nav-link.active {
    background-color: #48704E;
    color: white;
    border-bottom-color: #48704E;
}

/* Language Switcher - FIXED */
.lang-switch {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(72, 112, 78, 0.9);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    z-index: 10;
}

.lang-switch:hover {
    background: #48704E;
    border-color: #FAD814;
    transform: translateY(-50%) scale(1.05);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 11;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hamburger Animation */
.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 15px;
    }
    
    .hamburger {
        display: flex;
        right: 60px;
    }
    
    .lang-switch {
        right: 15px;
        padding: 6px 10px;
        font-size: 0.8rem;
    }
    
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #FAD814;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        gap: 0;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-link {
        padding: 18px 25px;
        border-bottom: none;
        border-left: 4px solid transparent;
        width: 100%;
        text-align: left;
    }
    
    .nav-link:hover {
        background-color: rgba(72, 112, 78, 0.1);
        border-left-color: #48704E;
        border-bottom-color: transparent;
    }
    
    .nav-link.active {
        background-color: #48704E;
        color: white;
        border-left-color: #FAD814;
        border-bottom-color: transparent;
    }

    .date-bar {
        bottom: 15px;
        right: 15px;
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 10px;
    }
    
    .hamburger {
        right: 50px;
    }
    
    .lang-switch {
        right: 10px;
        padding: 5px 8px;
        font-size: 0.75rem;
    }
    
    .nav-link {
        padding: 15px 20px;
        font-size: 0.9rem;
    }

    .date-bar {
        bottom: 10px;
        right: 10px;
        padding: 5px 10px;
        font-size: 0.75rem;
    }
}

/* Main Content */
.main-content {
    display: flex;
    gap: 30px;
    padding: 40px 20px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: flex-start;
}

.main-content .container {
    flex: 1;
    max-width: none;
    padding: 0;
    margin: 0;
}

/* FLORA & FAUNA PAGE STYLES */
.content-section {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    max-width: none;
}

/* Content Grid - Text Left, Image Right */
.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin: 30px 0;
    align-items: start;
}

.text-column {
    line-height: 1.8;
}

.text-column .content-text p {
    margin-bottom: 20px;
    text-align: justify;
    line-height: 1.8;
    font-size: 1rem;
    color: #333;
}

.text-column .content-text p em {
    font-style: italic;
    color: #48704E;
    font-weight: 500;
}

/* Image Column - Sticky on Right */
.image-column {
    position: sticky;
    top: 20px;
    height: fit-content;
}

.main-figure {
    margin: 0;
    text-align: center;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.main-figure img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.main-figure:hover img {
    transform: scale(1.02);
}

.main-figure figcaption {
    padding: 15px;
    font-style: italic;
    color: #666;
    font-size: 0.9rem;
    background: #f8f9fa;
    border-top: 2px solid #FAD814;
}

/* Content Text Outside Grid */
.content-section > .content-text {
    margin: 30px 0;
    max-width: none;
}

.content-section > .content-text p {
    margin-bottom: 20px;
    text-align: justify;
    line-height: 1.8;
    font-size: 1rem;
    color: #333;
}

/* Image Gallery - 3 Images Horizontal */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 40px 0;
    padding: 30px 0;
    border-top: 2px solid #f0f0f0;
    border-bottom: 2px solid #f0f0f0;
}

.image-gallery figure {
    margin: 0;
    text-align: center;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.image-gallery figure:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.gallery-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.image-gallery figure:hover .gallery-image {
    transform: scale(1.05);
}

.image-gallery figcaption {
    padding: 12px 15px;
    font-style: italic;
    color: #666;
    font-size: 0.9rem;
    background: #f8f9fa;
    border-top: 2px solid #FAD814;
    font-weight: 500;
}

/* Article Footer */
.article-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 2px solid #FAD814;
    text-align: center;
}

.article-footer p {
    color: #48704E;
    font-size: 0.9rem;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    color: #48704E;
    font-size: 2.5rem;
    margin-bottom: 15px;
    border-bottom: 3px solid #FAD814;
    padding-bottom: 10px;
    display: inline-block;
}

/* Sidebar */
.sidebar {
    width: 280px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-self: flex-start;
}

.welcome-section,
.lakes-section,
.gallery-section {
    flex: 1;
    background: white;
    padding: 45px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    max-width: none;
}

.welcome-section h2 {
    color: #48704E;
    font-size: 2.5rem;
    margin-bottom: 30px;
    border-bottom: 3px solid #FAD814;
    padding-bottom: 10px;
}

.content-text p {
    margin-bottom: 20px;
    text-align: justify;
    line-height: 1.8;
    font-size: 1.1rem;
}

.image-container {
    text-align: center;
    margin: 30px 0;
}

.main-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Lakes Page */
.lakes-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
    max-width: none;
}

.lake-card {
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
    max-width: 100%;
}

.lake-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.lake-image {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 280px;
    background: #f0f0f0;
}

.lake-photo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    background: #f8f9fa;
    transition: transform 0.3s ease;
}

.lake-photo.cover-mode {
    object-fit: cover;
    object-position: center 30%;
}

.lake-card:hover .lake-photo {
    transform: scale(1.05);
}

.lake-altitude {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(72, 112, 78, 0.95);
    color: white;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    backdrop-filter: blur(5px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(250, 216, 20, 0.8);
    z-index: 10;
}

.lake-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    order: 2;
}

.lake-info {
    width: 100%;
}

.lake-info h3 {
    color: #48704E;
    font-size: 1.6rem;
    margin-bottom: 20px;
    border-bottom: 3px solid #FAD814;
    padding-bottom: 12px;
    line-height: 1.2;
    font-weight: 700;
}

.lake-description {
    line-height: 1.7;
    margin-bottom: 25px;
}

.lake-description p {
    color: #555;
    margin-bottom: 15px;
    font-size: 1rem;
    text-align: justify;
    line-height: 1.7;
}

.lake-description p:last-child {
    margin-bottom: 0;
}

.lake-stats {
    background: white;
    padding: 25px;
    border-radius: 12px;
    border: 2px solid #FAD814;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 400px;
    align-self: center;
    order: 3;
}

.lake-stats h4 {
    color: #48704E;
    font-size: 1.2rem;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
}

.stats-grid {
    display: grid;
    gap: 15px;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #48704E;
}

.stat-label {
    font-weight: 600;
    color: #48704E;
    font-size: 1rem;
}

.stat-value {
    color: #333;
    font-size: 1rem;
    font-weight: 700;
    text-align: right;
    min-width: 120px;
}

.stat-value.swimming-yes { 
    color: #28a745; 
    font-weight: 700;
}

.stat-value.swimming-no { 
    color: #dc3545; 
    font-weight: 700;
}

.stat-value.swimming-limited { 
    color: #ffc107; 
    font-weight: 700;
}

/* Social Share */
.social-share,
.lake-quick-info,
.ad-space {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.social-share h3 {
    color: #48704E;
    font-size: 1.2rem;
    margin-bottom: 15px;
    text-align: center;
    border-bottom: 2px solid #FAD814;
    padding-bottom: 8px;
}

/* Social Share Buttons */
.share-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.share-btn {
    padding: 12px 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    position: relative;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.share-btn.facebook { 
    background: linear-gradient(135deg, #4267B2, #365899);
    color: white;
}

.share-btn.email { 
    background: linear-gradient(135deg, #34495e, #2c3e50);
    color: white;
}

.share-btn.print { 
    background: linear-gradient(135deg, #95a5a6, #7f8c8d);
    color: white;
}

.share-btn.copy-link {
    background: linear-gradient(135deg, #48704E, #3d5d42);
    color: white;
}

.share-btn.whatsapp {
    background: linear-gradient(135deg, #25D366, #1DA851);
    color: white;
}

.share-btn:disabled {
    background: #bdc3c7;
    cursor: not-allowed;
    transform: none;
}

.share-btn:disabled:hover {
    transform: none;
    box-shadow: none;
}

/* Share success message */
.share-success {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #28a745;
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    font-weight: 500;
    z-index: 3000;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.share-success.show {
    transform: translateX(0);
}

.quick-stats {
    display: grid;
    gap: 15px;
}

.stat-item {
    text-align: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #FAD814;
}

.stat-item .number {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: #48704E;
    margin-bottom: 5px;
}

.stat-item .label {
    font-size: 0.9rem;
    color: #666;
}

.ad-space {
    text-align: center;
    color: #666;
    border: 2px dashed #ddd;
}

/* GALLERY PAGE STYLES */
.intro-text {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Gallery Categories */
.gallery-categories {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.category-btn {
    background: #f8f9fa;
    color: #48704E;
    border: 2px solid #e9ecef;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.category-btn:hover {
    background: #48704E;
    color: white;
    transform: translateY(-2px);
}

.category-btn.active {
    background: #48704E;
    color: white;
    border-color: #48704E;
}

/* Photo Gallery Grid */
.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 40px 0;
    min-height: 400px;
}

.photo-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    background: white;
    aspect-ratio: 4/3;
}

.photo-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.photo-item:hover img {
    transform: scale(1.1);
}

.photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 20px 15px 15px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.photo-item:hover .photo-overlay {
    transform: translateY(0);
}

.photo-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.photo-category {
    font-size: 0.85rem;
    opacity: 0.9;
    color: #FAD814;
    font-weight: 500;
}

/* Loading Section */
.loading-section {
    text-align: center;
    padding: 60px 20px;
    color: #666;
    font-size: 1.1rem;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    cursor: pointer;
    overflow: hidden;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    margin: auto;
    cursor: default;
    display: block;
    text-align: center;
}

.lightbox-close {
    position: fixed;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.8);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-weight: 300;
    border: none;
    z-index: 10000;
    line-height: 1;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

#lightbox-image {
    max-width: 100%;
    max-height: 85vh;
    width: auto;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.lightbox-caption {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 15px 20px;
    text-align: center;
    border-radius: 8px;
    font-size: 1.1rem;
    margin-top: 15px;
    max-width: 600px;
    line-height: 1.4;
    margin-left: auto;
    margin-right: auto;
}

.lightbox-nav {
    position: fixed;
    top: 50%;
    left: 0;
    right: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
    padding: 0 20px;
    z-index: 10001;
}

.lightbox-prev,
.lightbox-next {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    font-weight: bold;
    line-height: 1;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.lightbox-prev::before {
    content: "❮";
}

.lightbox-next::before {
    content: "❯";
}

/* Ensure arrows are visible on all screen sizes */
@media (max-width: 768px) {
    .lightbox-nav {
        padding: 0 10px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .lightbox-nav {
        padding: 0 5px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

/* Mobile lightbox adjustments */
@media (max-width: 768px) {
    .lightbox-content {
        max-width: 95%;
        max-height: 95%;
    }
    
    #lightbox-image {
        max-height: 80vh;
    }
    
    .lightbox-close {
        top: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
        font-size: 2rem;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .lightbox-nav {
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .lightbox-content {
        max-width: 98%;
        max-height: 98%;
    }
    
    #lightbox-image {
        max-height: 75vh;
    }
    
    .lightbox-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 1.8rem;
    }
    
    .lightbox-caption {
        font-size: 1rem;
        padding: 12px 15px;
        margin-top: 10px;
    }
    
    .lightbox-nav {
        padding: 0 5px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

/* Sidebar Gallery Specific */
.gallery-info {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.gallery-info h3 {
    color: #48704E;
    margin-bottom: 15px;
    font-size: 1.2rem;
    text-align: center;
}

.gallery-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.stat {
    text-align: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #FAD814;
}

.stat .number {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: #48704E;
    margin-bottom: 5px;
}

.stat .label {
    font-size: 0.9rem;
    color: #666;
}

.photo-discovery {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.photo-discovery h3 {
    color: #48704E;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.discovery-list {
    list-style: none;
    padding: 0;
}

.discovery-list li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.discovery-list li:last-child {
    border-bottom: none;
}

.folder {
    font-family: monospace;
    color: #48704E;
    font-weight: bold;
}

.found {
    font-size: 0.85rem;
    color: #28a745;
}

/* CONTACT PAGE STYLES */
.contact-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.contact-section {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #FAD814;
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-2px);
}

.contact-card h3 {
    color: #48704E;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.contact-card p,
.contact-card address p {
    margin: 5px 0;
    color: #666;
    font-style: normal;
    line-height: 1.5;
}

.contact-card strong {
    color: #333;
}

/* Contact Form Styles */
.contact-form-container {
    background: #fff;
    border-radius: 8px;
    border: 1px solid #eee;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.contact-form h3 {
    color: #48704E;
    font-size: 1.5rem;
    margin-bottom: 25px;
    text-align: center;
    border-bottom: 2px solid #FAD814;
    padding-bottom: 10px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background-color: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #48704E;
    box-shadow: 0 0 0 3px rgba(72, 112, 78, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.5;
}

.form-group input[type="tel"],
.form-group input[type="email"] {
    font-family: inherit;
}

/* Custom Checkbox */
.checkbox-label {
    display: flex !important;
    align-items: flex-start;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
    padding: 10px 0;
}

.checkbox-label input[type="checkbox"] {
    width: auto !important;
    margin-right: 10px;
    margin-top: 2px;
    transform: scale(1.2);
}

.checkbox-label span:not(.checkmark) {
    color: #555;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #48704E, #5a8a62);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-top: 10px;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #3d5d42, #48704E);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(72, 112, 78, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

.btn-loading {
    display: none;
}

.submit-btn.loading .btn-text {
    display: none;
}

.submit-btn.loading .btn-loading {
    display: inline;
}

/* Form Messages */
.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 5px;
    font-weight: 500;
    text-align: center;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f1b0b7;
}

/* Contact Sidebar */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.gallery-preview {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.gallery-preview:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.gallery-preview h3 {
    color: #48704E;
    font-size: 1.1rem;
    margin-bottom: 15px;
    border-bottom: 2px solid #FAD814;
    padding-bottom: 8px;
}

.gallery-preview figure {
    margin: 0;
}

.preview-image {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 8px;
    border: 1px solid #ddd;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    object-fit: contain;
    background: white;
}

.preview-image:hover {
    transform: scale(1.05);
}

.gallery-preview figcaption {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    line-height: 1.4;
}

/* VIDEO PAGE STYLES */
.video-section {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.video-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 30px 0;
}

.video-item {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 30px;
    align-items: start;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.video-item:last-child {
    border-bottom: none;
}

.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-description {
    padding: 10px 0;
}

.video-description h3 {
    color: #48704E;
    font-size: 1.4rem;
    margin-bottom: 15px;
    border-bottom: 2px solid #FAD814;
    padding-bottom: 8px;
}

.video-description p {
    line-height: 1.6;
    color: #666;
    font-size: 1rem;
}

.video-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #FAD814;
    margin-top: 30px;
}

.info-text {
    margin: 0;
    color: #555;
    font-style: italic;
}

/* LINKS PAGE STYLES */
.links-section {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin: 0;
}

.intro-text a {
    color: #48704E;
    text-decoration: none;
    font-weight: 600;
}

.intro-text a:hover {
    text-decoration: underline;
}

/* Links Grid */
.links-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
}

.link-category {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    border-left: 5px solid #FAD814;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.link-category h3 {
    color: #48704E;
    font-size: 1.4rem;
    margin-bottom: 25px;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 10px;
}

.link-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

/* Link Cards */
.link-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    border-color: #FAD814;
}

.link-card a {
    display: flex;
    align-items: center;
    padding: 20px;
    text-decoration: none;
    color: inherit;
    gap: 20px;
}

.link-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    padding: 10px;
    background: white;
    flex-shrink: 0;
}

.link-info {
    flex: 1;
}

.link-info h4 {
    color: #48704E;
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.link-info p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

/* Mountain Gallery Sidebar */
.mountain-gallery {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.mountain-gallery h3 {
    color: #48704E;
    font-size: 1.2rem;
    margin-bottom: 20px;
    text-align: center;
    border-bottom: 2px solid #FAD814;
    padding-bottom: 8px;
}

.gallery-item {
    margin-bottom: 25px;
    text-align: center;
}

.gallery-item:last-child {
    margin-bottom: 0;
}

.gallery-item figure {
    margin: 0;
    background: #f8f9fa;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item figure:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.gallery-thumb {
    width: 100%;
    height: 120px;
    object-fit: contain;
    object-position: center;
    background: #f8f9fa;
}

.gallery-item figcaption {
    padding: 15px;
    background: white;
    border-top: 2px solid #FAD814;
}

.gallery-item figcaption strong {
    color: #48704E;
    font-size: 0.95rem;
    display: block;
    margin-bottom: 8px;
}

.more-info {
    color: #48704E;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
}

.more-info:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: #48704E;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

/* Responsive Design for Flora & Fauna */
@media (max-width: 1200px) {
    .content-grid {
        grid-template-columns: 1.5fr 1fr;
        gap: 30px;
    }
    
    .lake-image {
        height: 280px;
    }
    
    .lake-photo {
        object-fit: cover;
        object-position: center 40%;
    }
}

@media (max-width: 1024px) {
    .main-content {
        flex-direction: column;
    }
    
    /* Different order rules for different pages */
    .links-section ~ .sidebar {
        order: 1;
    }
    
    .gallery-section ~ .sidebar,
    .contact-section ~ .sidebar,
    .video-section ~ .sidebar,
    .lakes-section ~ .sidebar,
    .content-section ~ .sidebar {
        order: -1;
    }
    
    .sidebar {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        align-self: auto;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .image-column {
        position: static;
        order: -1;
    }
    
    .main-figure {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .lake-content {
        padding: 25px;
    }
    
    .lake-stats {
        max-width: none;
    }
    
    .gallery-stats {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }
    
    .stat {
        padding: 10px;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-sidebar {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .contact-grid {
        gap: 30px;
    }
    
    .video-item {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .video-description {
        order: -1;
    }
    
    .link-items {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .main-content {
        padding: 20px 10px;
    }
    
    .lakes-section,
    .gallery-section,
    .content-section,
    .video-section,
    .links-section {
        padding: 25px;
    }
    
    .lake-image {
        height: 250px;
    }
    
    .lake-content {
        padding: 20px;
    }
    
    .lake-info h3 {
        font-size: 1.4rem;
    }
    
    .lake-stats {
        padding: 20px;
    }
    
    .stat-row {
        padding: 10px 12px;
    }
    
    .image-gallery {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gallery-image {
        height: 250px;
    }
    
    .sidebar {
        grid-template-columns: 1fr;
    }
    
    .gallery-categories {
        gap: 10px;
    }
    
    .category-btn {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    
    .photo-gallery {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .lightbox-prev {
        margin-left: -30px;
    }
    
    .lightbox-next {
        margin-right: -30px;
    }
    
    .gallery-stats {
        grid-template-columns: 1fr 1fr;
    }
    
    .main-content .container {
        padding: 20px 10px;
    }
    
    .contact-section {
        padding: 30px 20px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-form-container {
        padding: 25px 20px;
    }
    
    .contact-sidebar {
        grid-template-columns: 1fr;
    }
    
    .gallery-preview {
        padding: 15px;
    }
    
    .link-category {
        padding: 20px;
    }
    
    .link-card a {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .link-logo {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .main-content {
        padding: 15px 10px;
    }
    
    .lakes-section,
    .gallery-section,
    .content-section,
    .video-section,
    .links-section {
        padding: 20px;
    }
    
    .lake-card {
        border-radius: 8px;
        margin-bottom: 25px;
    }
    
    .lake-image {
        height: 220px;
    }
    
    .lake-content {
        padding: 15px;
        gap: 20px;
    }
    
    .lake-info h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .lake-stats {
        padding: 20px;
    }
    
    .lake-stats h4 {
        font-size: 1.1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .image-gallery {
        margin: 30px 0;
        padding: 20px 0;
    }
    
    .gallery-image {
        height: 180px;
    }
    
    .photo-gallery {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
    }
    
    .gallery-categories {
        flex-direction: column;
        align-items: center;
    }
    
    .category-btn {
        width: 200px;
    }
    
    .lightbox-close {
        top: -40px;
        width: 40px;
        height: 40px;
        font-size: 2rem;
    }
    
    .main-content .container {
        padding: 15px 10px;
    }
    
    .contact-section {
        padding: 20px 15px;
    }
    
    .contact-form-container {
        padding: 20px 15px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
    }
    
    .submit-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .contact-card {
        padding: 15px;
    }
    
    .gallery-preview {
        padding: 15px;
    }
    
    .preview-image {
        max-width: 150px;
    }
    
    .link-category {
        padding: 15px;
    }
    
    .gallery-thumb {
        height: 100px;
    }
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #FAD814;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-link {
        padding: 15px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
}

/* Alternative class for lake images that look better with cover */
.lake-image.use-cover .lake-photo {
    object-fit: cover;
    object-position: center 25%;
}