/* ============================================
   EZEMVELO KZN WILDLIFE - PREMIUM DESIGN SYSTEM
   A refined, nature-inspired aesthetic
   ============================================ */

/* CSS Variables - Nature-Inspired Palette */
:root {
    /* Primary Colors - Deep Forest Greens */
    --primary-green: #1a4d2e;
    --primary-dark: #0d2818;
    --primary-light: #2d6a4f;
    
    /* Accent Colors - Savanna Gold & Earth */
    --accent-gold: #d4a853;
    --accent-copper: #b87333;
    --accent-sand: #e8dcc4;
    
    /* Neutrals */
    --white: #ffffff;
    --off-white: #faf9f7;
    --cream: #f5f3ef;
    --warm-gray: #8b8680;
    --charcoal: #2d2d2d;
    --black: #1a1a1a;
    
    /* Functional */
    --success: #2d6a4f;
    --warning: #d4a853;
    --error: #c9463d;
    
    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    
    /* Spacing Scale */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Source+Sans+3:wght@300;400;500;600;700&display=swap');

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    color: var(--charcoal);
    background: var(--off-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    color: var(--primary-dark);
    margin-bottom: var(--space-md);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: var(--space-md);
    max-width: 70ch;
}

a {
    color: var(--primary-green);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--accent-copper);
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -100%;
    left: var(--space-md);
    background: var(--primary-dark);
    color: var(--white);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-sm);
    z-index: 9999;
}

.skip-link:focus {
    top: var(--space-md);
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md) var(--space-xl);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-green) 100%);
    box-shadow: var(--shadow-lg);
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 80px;
    width: auto;
    filter: brightness(1.1);
    transition: transform var(--transition-base);
}

.logo:hover img {
    transform: scale(1.05);
}

.logo-fallback {
    display: flex;
    flex-direction: column;
    color: var(--white);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.logo-subtitle {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    opacity: 0.9;
}

.book-now-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    background: var(--accent-gold);
    color: var(--primary-dark);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.book-now-btn:hover {
    background: var(--white);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ============================================
   NAVIGATION
   ============================================ */
.main-nav, .conservation-nav {
    background: var(--white);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    padding: 0 var(--space-xl);
}

.main-nav ul, .conservation-nav ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-xs);
    list-style: none;
    max-width: 1200px;
    margin: 0 auto;
}

.main-nav li a, .conservation-nav li a {
    display: block;
    padding: var(--space-md) var(--space-lg);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--charcoal);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    transition: color var(--transition-fast);
}

.main-nav li a::after, .conservation-nav li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--accent-gold);
    transition: width var(--transition-base);
}

.main-nav li a:hover, .conservation-nav li a:hover,
.main-nav li a.active, .conservation-nav li a.active {
    color: var(--primary-green);
}

.main-nav li a:hover::after, .conservation-nav li a:hover::after,
.main-nav li a.active::after, .conservation-nav li a.active::after {
    width: 30px;
}

.conservation-nav {
    background: var(--cream);
}

/* ============================================
   HERO SLIDER
   ============================================ */
.hero-slider {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 400px;
    max-height: 700px;
    overflow: hidden;
    background: var(--primary-dark);
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.95);
    color: var(--primary-dark);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
    z-index: 10;
}

.slider-btn:hover {
    background: var(--accent-gold);
    transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev { left: var(--space-xl); }
.slider-btn.next { right: var(--space-xl); }

.slider-dots {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--space-sm);
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: 2px solid var(--white);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.slider-dots .dot.active {
    background: var(--accent-gold);
    transform: scale(1.2);
}

/* ============================================
   GALLERY SECTIONS
   ============================================ */
.gallery-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.3));
    opacity: 0;
    transition: opacity var(--transition-base);
}

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

/* ============================================
   RHINO CLUB SECTION
   ============================================ */
.rhino-club {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-green) 50%, var(--primary-light) 100%);
    padding: var(--space-4xl) var(--space-xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.rhino-club::before {
    content: '🦏';
    position: absolute;
    font-size: 15rem;
    opacity: 0.05;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.rhino-club-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.rhino-club .price-tag {
    color: var(--accent-gold);
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
}

.rhino-club .price-tag strong {
    font-family: var(--font-display);
    font-size: 3rem;
    display: block;
    margin: var(--space-sm) 0;
}

.rhino-club h2 {
    color: var(--white);
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: var(--space-lg);
}

.rhino-club p {
    color: rgba(255,255,255,0.8);
    margin-bottom: var(--space-xl);
}

/* ============================================
   BUTTONS
   ============================================ */
.download-btn, .submit-btn, .read-more {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    background: var(--accent-gold);
    color: var(--primary-dark);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.download-btn:hover, .submit-btn:hover {
    background: var(--white);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.read-more {
    background: transparent;
    color: var(--primary-green);
    padding: var(--space-sm) 0;
    box-shadow: none;
    text-transform: none;
    font-weight: 500;
}

.read-more::after {
    content: '→';
    transition: transform var(--transition-fast);
}

.read-more:hover {
    color: var(--accent-copper);
}

.read-more:hover::after {
    transform: translateX(4px);
}

/* ============================================
   VIDEO SECTION
   ============================================ */
.video-section {
    background: var(--black);
    padding: var(--space-3xl) var(--space-xl);
}

.video-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.video-container video {
    width: 100%;
    display: block;
}

.video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.4);
    transition: background var(--transition-base);
}

.video-overlay:hover {
    background: rgba(0,0,0,0.3);
}

.play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--accent-gold);
    border: none;
    color: var(--primary-dark);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-lg);
}

.play-btn:hover {
    transform: scale(1.1);
    background: var(--white);
}

/* ============================================
   NEWS SECTION
   ============================================ */
.news-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-xl);
    padding: var(--space-4xl) var(--space-xl);
    max-width: 1400px;
    margin: 0 auto;
}

.news-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.04);
    transition: all var(--transition-base);
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-gold);
}

.news-card h3 {
    font-size: 1.1rem;
    line-height: 1.4;
    margin-bottom: var(--space-md);
    color: var(--primary-dark);
}

.news-card p {
    font-size: 0.95rem;
    color: var(--warm-gray);
    margin-bottom: var(--space-md);
}

/* ============================================
   PAGE HEADER
   ============================================ */
.page-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-green) 100%);
    padding: var(--space-4xl) var(--space-xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-header h1 {
    color: var(--white);
    font-size: clamp(2rem, 6vw, 3.5rem);
    margin-bottom: var(--space-sm);
    position: relative;
}

.page-header p {
    color: var(--accent-sand);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

/* ============================================
   CONTENT SECTIONS
   ============================================ */
.content-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: var(--space-4xl) var(--space-xl);
}

.content-section h2 {
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-sm);
    border-bottom: 3px solid var(--accent-gold);
    display: inline-block;
}

.content-section h2:first-child {
    margin-top: 0;
}

.content-section h3 {
    margin-top: var(--space-xl);
    color: var(--primary-green);
}

.content-section ul, .content-section ol {
    margin: var(--space-md) 0 var(--space-lg) var(--space-xl);
}

.content-section li {
    margin-bottom: var(--space-sm);
}

.content-section li strong {
    color: var(--primary-dark);
}

/* ============================================
   CARDS GRID
   ============================================ */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
    margin: var(--space-xl) 0;
}

.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.04);
    transition: all var(--transition-base);
    text-decoration: none;
    color: inherit;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-gold);
}

.card-content {
    padding: var(--space-xl);
}

.card-content h3 {
    font-size: 1.1rem;
    margin-bottom: var(--space-sm);
    color: var(--primary-dark);
    margin-top: 0;
}

.card-content p {
    font-size: 0.9rem;
    color: var(--warm-gray);
    margin-bottom: var(--space-md);
}

.card-content .read-more {
    font-size: 0.85rem;
}

/* ============================================
   TABLES
   ============================================ */
.tariff-table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--space-xl) 0;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.tariff-table thead {
    background: var(--primary-green);
    color: var(--white);
}

.tariff-table th {
    padding: var(--space-md) var(--space-lg);
    text-align: left;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tariff-table td {
    padding: var(--space-md) var(--space-lg);
    border-bottom: 1px solid var(--cream);
}

.tariff-table tbody tr:hover {
    background: var(--cream);
}

.tariff-table tbody tr:last-child td {
    border-bottom: none;
}

.tariff-table a {
    color: var(--primary-green);
    font-weight: 500;
}

.tariff-table a:hover {
    color: var(--accent-copper);
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-form {
    background: var(--white);
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-group label {
    display: block;
    margin-bottom: var(--space-sm);
    font-weight: 500;
    color: var(--charcoal);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: var(--space-md);
    border: 2px solid var(--cream);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color var(--transition-fast);
    background: var(--white);
}

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

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* ============================================
   CONTACT INFO CARDS
   ============================================ */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.contact-card {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--accent-gold);
}

.contact-card h3 {
    font-size: 1rem;
    margin-bottom: var(--space-md);
    color: var(--primary-dark);
}

.contact-card p {
    margin-bottom: var(--space-sm);
    font-size: 0.95rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: var(--space-3xl) var(--space-xl) var(--space-xl);
}

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

.footer-copyright {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: var(--space-xl);
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-sm) var(--space-lg);
}

.footer-nav a {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    transition: color var(--transition-fast);
}

.footer-nav a:hover {
    color: var(--accent-gold);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .gallery-section {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --space-xl: 1.5rem;
        --space-2xl: 2rem;
        --space-3xl: 2.5rem;
        --space-4xl: 3rem;
    }
    
    .header {
        padding: var(--space-md);
    }
    
    .logo img {
        height: 60px;
    }
    
    .main-nav ul, .conservation-nav ul {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: var(--space-sm);
        -webkit-overflow-scrolling: touch;
    }
    
    .main-nav li a, .conservation-nav li a {
        padding: var(--space-md);
        white-space: nowrap;
        font-size: 0.8rem;
    }
    
    .hero-slider {
        height: 50vh;
        min-height: 300px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .slider-btn.prev { left: var(--space-md); }
    .slider-btn.next { right: var(--space-md); }
    
    .gallery-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 2px;
    }
    
    .rhino-club .price-tag strong {
        font-size: 2.5rem;
    }
    
    .news-section {
        grid-template-columns: 1fr;
    }
    
    .tariff-table {
        font-size: 0.85rem;
    }
    
    .tariff-table th,
    .tariff-table td {
        padding: var(--space-sm) var(--space-md);
    }
}

@media (max-width: 480px) {
    .gallery-section {
        grid-template-columns: 1fr;
    }
    
    .book-now-btn {
        padding: var(--space-sm) var(--space-md);
        font-size: 0.75rem;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   UTILITIES
   ============================================ */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Print Styles */
@media print {
    .header, .main-nav, .conservation-nav, .footer,
    .hero-slider, .video-section, .gallery-section {
        display: none;
    }
    
    .content-section {
        padding: 0;
        max-width: none;
    }
    
    body {
        font-size: 12pt;
        color: black;
        background: white;
    }
}

/* ==========================================================================
   HOMEPAGE SPECIFIC STYLES
   ========================================================================== */

/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    background: var(--primary-dark, #1a4d2e);
}

.slider-track {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.slider-track .slide {
    min-width: 100%;
    height: 100%;
}

.slider-track .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.9);
    color: var(--primary-dark, #1a4d2e);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.25rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: var(--accent-gold, #d4a853);
    color: white;
}

.slider-btn.prev { left: 20px; }
.slider-btn.next { right: 20px; }

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

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: 2px solid white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dots .dot.active {
    background: var(--accent-gold, #d4a853);
}

/* Homepage Gallery Grid */
.home-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    background: #f5f5f5;
}

.home-gallery .gallery-img {
    height: 220px;
    overflow: hidden;
}

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

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

/* Video Embed */
.video-embed {
    background: var(--primary-dark, #0d2818);
    padding: 60px 20px;
}

.video-embed iframe {
    display: block;
    width: 100%;
    max-width: 900px;
    height: 506px;
    margin: 0 auto;
    border: none;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

/* Responsive */
@media (max-width: 1024px) {
    .home-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    .home-gallery .gallery-img {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 350px;
    }
    .slider-btn {
        width: 40px;
        height: 40px;
    }
    .home-gallery .gallery-img {
        height: 160px;
    }
    .video-embed {
        padding: 40px 15px;
    }
    .video-embed iframe {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 280px;
    }
    .home-gallery {
        grid-template-columns: 1fr 1fr;
        gap: 2px;
    }
    .home-gallery .gallery-img {
        height: 120px;
    }
}
