/* Reset and Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #d4af37;
    --dark-bg: #0a0a0a;
    --light-text: #f5f5f5;
    --gray-text: #a0a0a0;
    --card-bg: #1a1a1a;
    --border-color: #2a2a2a;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Crimson Text', serif;
    line-height: 1.6;
    color: var(--light-text);
    background: var(--dark-bg);
    overflow-x: hidden;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

h1, h2, h3 {
    font-family: 'Bebas Neue', cursive;
    letter-spacing: 2px;
}

p {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Loader */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--primary-color);
    z-index: 10000;
    display: none; /* Hide loader by default */
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader.active {
    display: flex;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-text {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--light-text);
    margin-bottom: 2rem;
    font-weight: 700;
}

.loader-bar {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.loader-progress {
    height: 100%;
    background: var(--primary-color);
    width: 0;
    animation: loadProgress 2s ease forwards;
}

@keyframes loadProgress {
    to { width: 100%; }
}

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

@keyframes float {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

@keyframes scroll {
    0% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(15px);
        opacity: 0;
    }
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

nav.scrolled {
    padding: 0.7rem 0;
    background: rgba(0, 0, 0, 0.98);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--light-text);
    letter-spacing: -1px;
}

.logo-subtitle {
    font-size: 0.9rem;
    color: var(--gray-text);
    font-weight: 300;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    color: var(--gray-text);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--light-text);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--light-text);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    margin-bottom: 0;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    z-index: 1;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-gradient {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 25%, #d4af37 50%, #2a2a2a 75%, #1a1a1a 100%);
    opacity: 1;
    animation: gradientShift 15s ease infinite;
    background-size: 400% 400%;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-content {
    text-align: center;
    z-index: 2;
    color: var(--light-text);
    max-width: 900px;
    padding: 0 2rem;
    animation: fadeInUp 1.5s ease;
    position: relative;
}

.hero-subtitle {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 3px;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.hero-tagline {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    margin-top: 1rem;
}

.hero-title {
    font-size: clamp(4rem, 12vw, 10rem);
    font-weight: 900;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    line-height: 0.9;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    opacity: 0;
    animation: fadeInUp 1s ease 0.6s forwards;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--dark-bg);
}

.btn-primary:hover {
    background: #b8941f;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--light-text);
    border: 2px solid var(--light-text);
}

.btn-secondary:hover {
    background: var(--light-text);
    color: var(--dark-bg);
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    animation: float 3s ease-in-out infinite;
    z-index: 3;
}

.mouse-icon {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    margin: 0 auto 10px;
    position: relative;
}

.mouse-icon::before {
    content: '';
    width: 4px;
    height: 10px;
    background: var(--primary-color);
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

.scroll-text {
    font-family: 'Oswald', sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
}

/* Introduction Section */
.intro-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, var(--dark-bg), #0f0f0f);
    min-height: 50vh;
    position: relative;
    z-index: 1;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-title {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.intro-text {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.85);
}

.intro-verse {
    padding: 2rem;
    border-left: 3px solid var(--primary-color);
    background: rgba(212, 175, 55, 0.05);
    margin: 2rem auto;
    max-width: 500px;
}

.intro-verse p {
    font-style: italic;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.intro-verse span {
    font-size: 0.9rem;
    color: var(--gray-text);
    font-family: 'Oswald', sans-serif;
}

/* Gallery Sections */
.gallery-section {
    padding: 6rem 0;
    position: relative;
}

.gallery-section.dark-section {
    background: var(--dark-bg);
    color: var(--light-text);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.section-header {
    margin-bottom: 4rem;
    text-align: center;
}

.section-number {
    display: block;
    font-size: 0.9rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 500;
    letter-spacing: 2px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.dark-section .section-title {
    color: var(--light-text);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-text);
    font-weight: 300;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    gap: 2rem;
    grid-auto-flow: dense;
}

.wildlife-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.night-grid {
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
}

.landscape-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    height: 400px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.gallery-item.large {
    grid-column: span 2;
    height: 500px;
}

.gallery-item.wide {
    grid-column: span 2;
}

.gallery-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--transition-smooth);
}

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

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    transform: translateY(100%);
    transition: transform 0.4s var(--transition-smooth);
}

.gallery-item:hover .image-overlay {
    transform: translateY(0);
}

.image-overlay h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--light-text);
    margin-bottom: 0.5rem;
}

.image-overlay p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

/* Map gallery styles to current HTML classes */
.category-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.filter-btn {
    padding: 0.5rem 1rem;
    border-radius: 999px;
    border: 1px solid var(--border-color);
    background: transparent;
    color: var(--gray-text);
    cursor: pointer;
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--light-text);
}

.filter-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #111;
}

.photo-grid {
    column-count: 4;
    column-gap: 1.25rem;
}

.photo-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    background: #111;
    display: block;
    break-inside: avoid;
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 14px rgba(0,0,0,0.35);
}



.photo-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

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

.photo-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.65), rgba(0,0,0,0) 60%);
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
}

.photo-item:hover .photo-overlay {
    opacity: 1;
}

.photo-category {
    font-family: 'Oswald', sans-serif;
    letter-spacing: 1px;
    color: var(--light-text);
    font-size: 0.9rem;
}

/* Veterans Resources */
.veterans-section {
    padding: 5rem 0;
    background: var(--secondary-color);
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.resource-card {
    background: #111;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.25rem 1.25rem 1rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

.resource-card h3 {
    margin-bottom: 0.75rem;
    color: var(--primary-color);
    font-family: 'Oswald', sans-serif;
    letter-spacing: 1px;
}

.resource-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.5rem;
}

.resource-card a {
    color: var(--light-text);
    text-decoration: none;
    border-bottom: 1px dotted transparent;
}

.resource-card a:hover {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.resources-note {
    margin-top: 1.5rem;
    color: var(--gray-text);
}

/* Masonry responsive columns */
@media (max-width: 600px) {
    .photo-grid { column-count: 1; }
}
@media (min-width: 601px) and (max-width: 900px) {
    .photo-grid { column-count: 2; }
}
@media (min-width: 901px) and (max-width: 1200px) {
    .photo-grid { column-count: 3; }
}
@media (min-width: 1201px) {
    .photo-grid { column-count: 4; }
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background: var(--secondary-color);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    padding-right: 2rem;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.about-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-text);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.about-image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    filter: grayscale(20%);
}

.about-text .subtitle {
    color: var(--primary-color);
    font-family: 'Oswald', sans-serif;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mission-box {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    border-left: 3px solid var(--primary-color);
}

.mission-box h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.verse-small {
    font-style: italic;
    color: var(--gray-text);
    margin-top: 1rem;
    font-size: 0.95rem;
}

.youtube-info {
    background: rgba(212, 175, 55, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: var(--dark-bg);
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--light-text);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: var(--primary-color);
}

.form-group label {
    position: absolute;
    top: 1rem;
    left: 0;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    pointer-events: none;
}

.form-group input:focus ~ label,
.form-group input:valid ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:valid ~ label {
    top: -1rem;
    font-size: 0.85rem;
    color: var(--primary-color);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.location {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.contact-details {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.contact-details p {
    margin-bottom: 0.5rem;
}

.social-links {
    margin: 2rem 0;
}

.social-link {
    display: inline-block;
    padding: 1rem 1.5rem;
    background: var(--primary-color);
    color: var(--dark-bg);
    text-decoration: none;
    border-radius: 5px;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    transition: background 0.3s ease;
}

.social-link:hover {
    background: #b8941f;
}

.social-description {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: var(--gray-text);
}

.availability {
    background: rgba(212, 175, 55, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
}

.availability h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Services Section */
.services-section {
    padding: 5rem 0;
    background: var(--dark-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.service-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.pricing-box {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 10px;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-box h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 2rem;
}

.pricing-box ul {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-box li {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 1.1rem;
}

.pricing-box .emphasis {
    color: var(--primary-color);
    font-style: italic;
    font-size: 1.2rem;
    margin-top: 1rem;
}

/* Veterans Section */
.veterans-section {
    padding: 5rem 0;
    background: #0f0f0f;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.resource-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.resource-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.resource-card ul {
    list-style: none;
}

.resource-card li {
    margin-bottom: 1rem;
}

.resource-card a {
    color: var(--light-text);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.resource-card a:hover {
    color: var(--primary-color);
}

.resources-note {
    background: rgba(212, 175, 55, 0.1);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    margin-top: 3rem;
    font-size: 1.1rem;
}

/* Contact Form */
.contact-form {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--light-text);
    border-radius: 5px;
    font-family: 'Crimson Text', serif;
    font-size: 1rem;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: var(--dark-bg);
    border: none;
    border-radius: 5px;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: #b8941f;
}

/* Footer */
.footer {
    padding: 2rem 0;
    background: #0a0a0a;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.lightbox.active {
    display: flex;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: var(--light-text);
    font-size: 3rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.lightbox-close:hover {
    transform: rotate(90deg);
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    text-align: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
}

.lightbox-caption {
    margin-top: 2rem;
    color: var(--light-text);
}

.lightbox-caption h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.lightbox-caption p {
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .gallery-item.large,
    .gallery-item.wide {
        grid-column: span 1;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 4rem;
        flex-direction: column;
        background: rgba(26, 26, 26, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
    }

    .photo-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }

    .photo-item.large,
    .photo-item.wide {
        grid-column: span 1;
        grid-row: span 1;
    }

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

    .contact-content {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-menu.active {
        right: 0;
    }
    .nav-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 8vw, 5rem);
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-stats {
        justify-content: space-between;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }
}
