:root {
    --primary-color: #000000;
    --accent-color: #2A8BCC;
    --secondary-color: #2A8BCC;
    --bg-color: #f0f4f8;
    /* Slightly tinted for glass effect */
    --gray-light: #f5f5f5;
    --text-color: #333333;
    --text-light: #555555;
    --white: #FFFFFF;
    --border-radius: 6px;
    /* Strakker/Tighter corners */
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);

    /* Glassmorphism Variables */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: 1px solid rgba(255, 255, 255, 0.4);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
    --glass-blur: blur(12px);
    --card-hover-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    --brand-orange: #ec671b;
}

[data-theme="dark"] {
    --primary-color: #ffffff;
    --accent-color: #52a8e5;
    --secondary-color: #52a8e5;
    --bg-color: #121212;
    --gray-light: #2d2d2d;
    --text-color: #e0e0e0;
    --text-light: #b0b0b0;
    --white: #1e1e1e;

    /* Glassmorphism Dark */
    --glass-bg: rgba(30, 30, 30, 0.85);
    --glass-border: 1px solid rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.6);
    --card-hover-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

[data-theme="dark"] body {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d1117 100%);
    color: var(--text-color);
}



[data-theme="dark"] header {
    background-color: rgba(30, 30, 30, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}



/* Theme Switcher */
.theme-switch-wrapper {
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.theme-switch {
    display: inline-block;
    height: 24px;
    position: relative;
    width: 50px;
}

.theme-switch input {
    display: none;
}

.slider {
    background-color: #ccc;
    bottom: 0;
    cursor: pointer;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: .4s;
    border-radius: 34px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
}

.slider:before {
    background-color: #fff;
    bottom: 3px;
    content: "";
    height: 18px;
    left: 3px;
    position: absolute;
    transition: .4s;
    width: 18px;
    border-radius: 50%;
    z-index: 2;
}

input:checked+.slider {
    background-color: var(--accent-color);
}

input:checked+.slider:before {
    transform: translateX(26px);
}




/* Generic Toggle Switch (Content) */
.switch-toggle {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 20px;
}

.switch-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.switch-toggle .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 20px;
}

.switch-toggle .slider:before {
    position: absolute;
    content: "";
    height: 14px;
    width: 14px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

.switch-toggle input:checked+.slider {
    background-color: var(--accent-color);
}

.switch-toggle input:checked+.slider:before {
    transform: translateX(20px);
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    background-attachment: fixed;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.25;
}

h2 {
    color: var(--accent-color);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
/* Header */
header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

header.header-transparent {
    background-color: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    border-bottom: none;
}

header.scrolled {
    background-color: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

header.mobile-active {
    background-color: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 40px;
    position: relative;
    max-width: 100% !important;
    width: 100%;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
    text-transform: uppercase;
    margin-left: 10px;
    display: flex;
    align-items: center;
}

.logo img {
    transition: filter 0.3s ease;
}

.logo svg {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

.logo svg .st0,
.logo svg .st1 {
    transition: fill 0.3s ease;
}

/* Make blue letters white on transparent header */
header.header-transparent:not(.scrolled):not(.mobile-active) .logo svg .st0 {
    fill: #ffffff;
}

.logo span {
    color: var(--accent-color);
}

.nav-links {
    display: flex;
    gap: 2rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin-right: 0;
}

@media (max-width: 1600px) {
    .nav-links {
        position: static;
        transform: none;
        margin-left: auto;
        padding-right: 20px;
    }
}

.nav-icon {
    display: none;
    color: var(--brand-orange);
    margin-right: 10px;
    width: 20px;
    text-align: center;
}



.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--accent-color);
    transition: var(--transition);
    box-shadow: 0 0 10px var(--accent-color);
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
    width: 100%;
}

.nav-cta {
    background: linear-gradient(135deg, var(--primary-color), #333);
    color: var(--white) !important;
    padding: 0.7rem 1.5rem;
    border-radius: 6px;
    text-transform: uppercase;
    font-size: 0.85rem !important;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.nav-cta:hover::before {
    left: 100%;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.hamburger {
    display: none;
    cursor: pointer;
    margin-right: 10px;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 5px;
    transition: var(--transition);
}

header.header-transparent .hamburger div {
    background-color: #ffffff;
}

header.scrolled .hamburger div,
header.mobile-active .hamburger div {
    background-color: var(--primary-color);
}

.hamburger.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}

/* ... */
.nav-links li a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--primary-color);
    position: relative;
    padding: 5px 0;
    transition: var(--transition);
}

header.header-transparent .nav-links li a {
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

header.scrolled .nav-links li a {
    color: var(--primary-color);
    text-shadow: none;
}

.hamburger.toggle .line2 {
    opacity: 0;
}

.hamburger.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url('../images/hero_camper_driving_wide_v2.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 2rem;
    cursor: pointer;
    opacity: 1;
    transition: opacity 0.5s ease;
    z-index: 10;
}

.scroll-indicator.hidden {
    opacity: 0;
    pointer-events: none;
}

@keyframes scrollBounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 150px);
    /* Gradient for nav readability */
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1280px;
    padding: 0 20px;
    text-align: left;
    /* transform: translateY(-170px); Removed to keep text lower */
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
    color: var(--white);
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
    max-width: 480px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1.2s ease;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    max-width: 480px;
}

.hero-buttons {
    display: flex;
    flex-wrap: nowrap;
    gap: 1rem;
}

.hero-buttons .btn-secondary {
    margin-left: 0;
}


.btn {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 0.8rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.btn-secondary {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(220, 220, 220, 0.9));
    color: var(--primary-color);
    margin-left: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(4px);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #ffffff, #f0f0f0);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* USPs Section */
.usps {
    padding: 4rem 0;
    background-color: var(--white);
}

.usp-grid {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.usp-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 2rem;
}

.usp-item h3 {
    margin: 1rem 0;
    color: var(--primary-color);
}

.usp-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Featured Campers */
.featured {
    padding: 5rem 0;
    /* Background is handled by body */
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.camper-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    align-items: stretch;
    justify-content: center;
    /* Center grid items */
    max-width: 1400px;
    margin: 0 auto;
}

.camper-grid-3 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.camper-grid-3 .camper-card {
    flex: 1 1 300px;
    max-width: 380px;
    /* Slightly smaller than global 400px to fit 3 nicely in 1200px with gaps */
}

.camper-card {
    background: var(--glass-bg);
    border: var(--glass-border);
    box-shadow: var(--glass-shadow);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
    max-width: 400px;
    /* Prevent overly wide cards on mobile */
    margin: 0 auto;
    /* Center card if grid is 1 column */
    width: 100%;
}

.camper-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.1) 100%);
    pointer-events: none;
    z-index: 0;
}

.camper-card>* {
    position: relative;
    z-index: 1;
}

.camper-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--card-hover-shadow);
    border-color: rgba(255, 255, 255, 0.8);
}

.camper-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.camper-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Featured specific adjustments */
.featured .camper-card .camper-image {
    height: auto;
    aspect-ratio: 3/2;
    /* Standard photo ratio */
    overflow: hidden;
}

.featured .camper-card .camper-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transform: none !important;
}

.featured .camper-card .camper-details {
    padding: 1rem;
}

.featured .camper-card .camper-type {
    margin-bottom: 0.2rem;
    font-size: 0.7rem;
}

.featured .camper-card h3 {
    margin-bottom: 0.3rem;
    font-size: 1.15rem;
    min-height: unset;
    /* Remove min-height for compactness */
    line-height: 1.3;
}

.featured .camper-card .camper-specs {
    margin: 0.5rem 0 1rem 0;
    padding: 0;
    justify-content: flex-start;
    gap: 1rem;
    border: none;
    /* Remove borders for cleaner look if preferred, or keep minimal */
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 0.5rem 0;
    font-size: 0.85rem;
}

.featured .camper-card .camper-specs i {
    color: var(--brand-orange);
    margin-right: 5px;
}

.featured .camper-card .price {
    font-size: 1.2rem;
}

.featured .camper-card .btn {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
}

.camper-card:hover .camper-image img {
    transform: scale(1.1);
}

.camper-details {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.camper-type {
    color: var(--accent-color);
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    display: block;
}

.camper-details h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    min-height: 3rem;
    /* Align titles */
}

.camper-specs {
    display: flex;
    gap: 1rem;
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 0.8rem 0;
    justify-content: center;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.camper-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.price {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-color);
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

/* Unified Button Styles - All buttons share the same premium look */
.btn,
.btn-secondary,
.nav-cta,
.filter-btn,
.view-btn,
.btn-edit,
button[type="submit"],
.btn-submit {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, var(--accent-color), #217dbb) !important;
    color: var(--white) !important;
    padding: 0.7rem 1.8rem;
    border-radius: 6px !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    border: none !important;
    box-shadow: 0 4px 15px rgba(42, 139, 204, 0.3) !important;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
}

.btn:hover,
.btn-secondary:hover,
.nav-cta:hover,
.filter-btn:hover,
.view-btn:hover,
.btn-edit:hover,
button[type="submit"]:hover,
.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(42, 139, 204, 0.5) !important;
    filter: brightness(1.1);
}

/* Specific Adjustments for Sizing only */
.btn-secondary {
    margin-left: 1rem;
    /* Force same look, no transparency */
}

.nav-cta {
    font-size: 0.8rem !important;
    padding: 0.6rem 1.2rem;
}

.view-btn {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    gap: 0.5rem;
}

.view-btn.active {
    box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.2) !important;
    filter: brightness(0.9);
}

.btn-edit {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
    gap: 0.5rem;
}

/* Call to Action Section */
.cta-section {
    padding: 5rem 0;
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    margin-bottom: 2rem;
    opacity: 0.9;
    font-size: 1.1rem;
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: #aeaeae;
    padding: 4rem 0 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: #aeaeae;
}

.footer-col ul li a:hover {
    color: var(--secondary-color);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    font-size: 0.9rem;
}

/* Page Specific: Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 4rem 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive */
/* Mobile Responsive */
@media (max-width: 1200px) {

    .camper-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1250px) {
    .hamburger {
        display: block;
        z-index: 1001;
    }

    .navbar {
        padding: 0.8rem 20px;
        /* Reduced padding to push logo left and hamburger right */
    }

    .nav-links {
        position: absolute;
        top: 100%;
        /* Below header */
        right: 0;
        /* Place on right side */
        left: auto;
        /* Reset left */
        width: 250px;
        /* Less wide */
        height: auto;
        background: var(--accent-color);
        /* Blue background */
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: flex-start;
        /* Left align items */
        justify-content: flex-start;
        padding: 1rem 1.5rem;
        /* Adjusted padding */
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        z-index: -1;
        border-radius: 20px 0 0 20px;
        /* Nice corner */
    }

    .nav-links.active {
        transform: translateX(0);
    }

    /* Force white text on blue background */
    .nav-links li a {
        color: #ffffff !important;
        /* White letters */
        font-size: 1.1rem;
        margin: 0.1rem 0;
        /* Closer together (smaller witregel) */
        text-shadow: none !important;
        display: inline-block;
        /* width fit content for proper underline */
        width: fit-content;
    }

    .nav-icon {
        display: inline-block;
    }

    /* Mobile specific: White underline on blue bg */
    .nav-links li a::after {
        background-color: #ffffff !important;
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.5) !important;
    }

    /* Override transparent header specificity */
    header.header-transparent .nav-links li a {
        color: #ffffff !important;
        text-shadow: none !important;
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateX(0);
        animation: none;
        /* Disable the old side-slide animation */
    }

    .nav-links li {
        opacity: 1;
        /* Make visible by default once menu slides down */
        margin: 0;
        /* Remove container margin to keep them close */
        width: 100%;
        text-align: left;
        /* Ensure left align */
    }

    .camper-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Explicit admin override for tablet landscape */

}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero {
        height: 100vh;
        aspect-ratio: auto;
    }

    .hero::before {
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 300px);
    }

    .usp-grid {
        flex-direction: column;
    }

    .hero-content {
        transform: none;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 150px;
    }

    .hero-buttons {
        position: absolute;
        bottom: 150px;
        left: 0;
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .scroll-indicator {
        bottom: 80px;
    }

    .camper-grid,
    .camper-grid-3 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Allow auto-fill to handle admin grid even on mobile, or force 1 col if needed, but auto-fill is usually safe */


    /* .camper-card .camper-image height is now handled by the main CSS (220px) which works better with cover since we capped width */

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .desktop-only {
        display: none !important;
    }
}



/* Sticker positioning update */
/* Publication Switch: Top Right with transparent background */


/* Glassy Inputs */
.form-group input,
.form-group textarea,
.form-group select {
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    background: rgba(255, 255, 255, 0.9);
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(42, 139, 204, 0.2);
    outline: none;
}

/* Scroll to Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--primary-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
    z-index: 999;
    text-decoration: none;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

.scroll-top-btn.visible {
    opacity: 0.8;
    pointer-events: auto;
    visibility: visible;
}


/* Admin Header Buttons - Consistent Sizing */


.scroll-top-btn:hover {
    transform: translateY(-5px);
    opacity: 1;
    background-color: #ec671b;
}

/* ADMIN LOGO SUBTITLE */


/* Page Header Animations */
.page-header h1 {
    animation: fadeInUp 1s ease;
}

.page-header p {
    animation: fadeInUp 1.2s ease;
}