/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
@font-face {
  font-family: Cinzel;
  src: url('./fonts/Cinzel.ttf') format('ttf');
}
/* Landscape Photography Color Scheme */
:root {
    --forest-green: #2D5A27;
    --deep-green: #1A3D16;
    --golden-yellow: #D4A017;
    --warm-yellow: #F4D03F;
    --dark-red: #8B0000;
    --burgundy: #722F37;
    --rust: #B7410E;
    
    --sky-blue: #5DADE2;
    --soft-blue: #AED6F1;
    --cream: #FDF5E6;
    --warm-gray: #4A4A4A;
    --dark-charcoal: #1C1C1C;
    --rich-brown: #5D4037;
    
    --text-primary: #FDF5E6;
    --text-secondary: #D4A017;
    --text-muted: #AED6F1;
    
    --bg-primary: #1C1C1C;
    --bg-secondary: #2D2D2D;
    --bg-accent: #1A3D16;
    --bg-card: #2D2D2D;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: linear-gradient(135deg, var(--deep-green) 0%, var(--dark-charcoal) 100%);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--golden-yellow);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.nav-brand a {
    color: var(--golden-yellow);
    text-decoration: none;
    font-size: 1.9rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 14px;
}

.nav-brand a:hover {
    color: var(--warm-yellow);
}

.logo {
    width: 64px;
    height: auto;
    display: block;
}

.brand-text {
    font-family: Cinzel;
    letter-spacing: 0.4em;
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    color: var(--cream);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
    font-weight: 500;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--golden-yellow);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--golden-yellow);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Slideshow */
.slideshow {
    margin-top: 70px;
}

.slideshow-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--deep-green) 0%, var(--dark-charcoal) 100%);
}

.slideshow-inner {
    width: 100%;
    height: 100%;
}

.slide {
    display: none;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.slide.active {
    display: flex;
}

.slide img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--dark-red) 100%);
    color: var(--cream);
    border: 2px solid var(--golden-yellow);
    padding: 15px;
    cursor: pointer;
    font-size: 20px;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.slide-btn:hover {
    background: linear-gradient(135deg, var(--dark-red) 0%, var(--burgundy) 100%);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.slide-btn.prev {
    left: 20px;
}

.slide-btn.next {
    right: 20px;
}

.slide-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(253, 245, 230, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot.active,
.dot:hover {
    background-color: var(--golden-yellow);
    border-color: var(--cream);
    transform: scale(1.2);
}

/* Latest Post Section */
.latest-post {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.latest-post h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--golden-yellow);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.blog-card.featured {
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-accent) 100%);
    padding: 40px;
    border-radius: 12px;
    border: 2px solid var(--golden-yellow);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.blog-card.featured h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--golden-yellow);
}

.blog-excerpt {
    color: var(--cream);
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Previous Posts Section */
.previous-posts {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.previous-posts h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--golden-yellow);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.blog-card {
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-secondary) 100%);
    padding: 30px;
    border-radius: 12px;
    border: 2px solid var(--forest-green);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    display: block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(212, 160, 23, 0.3);
    border-color: var(--golden-yellow);
}

.blog-card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--golden-yellow);
}

.blog-card p {
    color: var(--cream);
    font-size: 0.9rem;
}

/* Gallery Header */
.gallery-header {
    padding: 120px 20px 20px;
    text-align: center;
    background: linear-gradient(135deg, var(--deep-green) 0%, var(--forest-green) 50%, var(--dark-charcoal) 100%);
    border-bottom: 3px solid var(--golden-yellow);
}

.gallery-header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: var(--golden-yellow);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.gallery-header p {
    color: var(--cream);
    font-size: 1.2rem;
}

/* Gallery Section */
.gallery {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid var(--forest-green);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    background: var(--bg-card);
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(212, 160, 23, 0.4);
    border-color: var(--golden-yellow);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.85);
    color: var(--cream);
    padding: 15px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
}

.gallery-caption h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--golden-yellow);
}

.gallery-caption p {
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.gallery-reference {
    font-size: 0.85rem;
    color: var(--soft-blue);
}

/* About Section */
.about {
    padding: 120px 20px 60px;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.about h1 {
    font-size: 3rem;
    margin-bottom: 40px;
    color: var(--golden-yellow);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.about-content {
    max-width: 800px;
}

.about-content h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--golden-yellow);
}

.about-content p {
    color: var(--cream);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-content ul {
    list-style: none;
    margin-bottom: 20px;
}

.about-content li {
    color: var(--cream);
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.about-content li::before {
    content: '🌿';
    position: absolute;
    left: 0;
}

/* Blog Section */
.blog {
    padding: 120px 20px 60px;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.blog h1 {
    font-size: 3rem;
    margin-bottom: 40px;
    color: var(--golden-yellow);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.blog-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.blog-list .blog-card {
    padding: 40px;
}

.blog-date {
    color: var(--soft-blue);
    font-size: 0.85rem;
    margin-top: 15px;
    display: block;
}

/* Blog Post Section */
.blog-post {
    padding: 120px 20px 60px;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.blog-post h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: var(--golden-yellow);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.blog-post .blog-date {
    color: var(--soft-blue);
    font-size: 1rem;
    margin-bottom: 40px;
}

.back-link {
    color: var(--golden-yellow);
    text-decoration: none;
    display: inline-block;
    margin-bottom: 20px;
    transition: color 0.3s ease;
    font-weight: 500;
}

.back-link:hover {
    color: var(--warm-yellow);
}

.blog-content {
    max-width: 800px;
}

.blog-content h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--golden-yellow);
}

.blog-content p {
    color: var(--cream);
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Button */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--golden-yellow) 0%, var(--warm-yellow) 100%);
    color: var(--dark-charcoal);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--golden-yellow);
    box-shadow: 0 4px 15px rgba(212, 160, 23, 0.3);
}

.btn:hover {
    background: linear-gradient(135deg, var(--warm-yellow) 0%, var(--golden-yellow) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 160, 23, 0.4);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--deep-green) 0%, var(--dark-charcoal) 100%);
    padding: 40px 0;
    margin-top: 60px;
    border-top: 3px solid var(--golden-yellow);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.footer p {
    text-align: center;
    color: var(--cream);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar .container {
        flex-direction: column;
        gap: 15px;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .slideshow-container {
        height: 400px;
    }

    .gallery-header h1,
    .about h1,
    .blog h1,
    .blog-post h1 {
        font-size: 2rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .slide-btn {
        padding: 10px;
        font-size: 16px;
    }

    .logo {
        width: 48px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
}
/* ────────────────────────────────────────
   Lightbox / Modal Gallery
─────────────────────────────────────────── */

.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.94);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 94vw;
    max-height: 90vh;
    overflow: hidden;
}

#lightbox-img {
    max-width: 94vw;
    max-height: 84vh;
    object-fit: contain;
    border: 2px solid var(--golden-yellow);
    border-radius: 8px;
    box-shadow: 0 12px 60px rgba(0, 0, 0, 0.7);
    background: #111;
}

.lightbox-close {
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 48px;
    color: var(--golden-yellow);
    cursor: pointer;
    font-weight: bold;
    line-height: 1;
    text-shadow: 0 2px 8px rgba(0,0,0,0.8);
    transition: all 0.25s ease;
    z-index: 10;
}

.lightbox-close:hover {
    color: var(--warm-yellow);
    transform: scale(1.15);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(30, 30, 30, 0.6);
    color: var(--golden-yellow);
    border: 2px solid var(--golden-yellow);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 32px;
    cursor: pointer;
    transition: all 0.25s ease;
    backdrop-filter: blur(4px);
}

.lightbox-nav:hover {
    background: rgba(50, 50, 50, 0.8);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(212, 160, 23, 0.4);
}

.lightbox-nav.prev {
    left: 30px;
}

.lightbox-nav.next {
    right: 30px;
}

.lightbox-caption {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.75);
    color: var(--cream);
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 1.1rem;
    max-width: 80%;
    text-align: center;
    border: 1px solid var(--forest-green);
    backdrop-filter: blur(4px);
}

@media (max-width: 768px) {
    .lightbox-nav {
        width: 50px;
        height: 50px;
        font-size: 26px;
    }
    
    .lightbox-nav.prev { left: 15px; }
    .lightbox-nav.next { right: 15px; }
    
    .lightbox-close {
        top: 15px;
        right: 20px;
        font-size: 40px;
    }
}
/* Sub-Gallery Cards */
.sub-galleries {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.sub-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid var(--forest-green);
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
    background: var(--bg-card);
    aspect-ratio: 4 / 3;
}

.sub-gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(212,160,23,0.45);
    border-color: var(--golden-yellow);
}

.sub-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.sub-gallery-item:hover img {
    transform: scale(1.07);
}

.sub-gallery-caption {
    position: absolute;
    inset: 0 0 0 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
    color: var(--cream);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    text-align: center;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.sub-gallery-item:hover .sub-gallery-caption {
    opacity: 1;
}

.sub-gallery-caption h3 {
    font-size: 1.35rem;
    margin-bottom: 8px;
    color: var(--golden-yellow);
}

.sub-gallery-caption p {
    font-size: 1rem;
    margin: 0;
    color: var(--soft-blue);
}