/* -------------------------------------------------------
   CSS Design System — Pure CSS Custom Properties (HSL)
------------------------------------------------------- */

:root {
    --background: hsl(140 30% 8%);
    --foreground: hsl(0 0% 98%);

    --card: hsl(140 25% 12%);
    --card-foreground: hsl(0 0% 98%);

    --primary: hsl(140 55% 45%);
    --primary-foreground: hsl(0 0% 100%);

    --accent: hsl(35 100% 55%);
    --accent-foreground: hsl(140 30% 10%);

    --festive-green: hsl(140 55% 45%);
    --festive-red: hsl(0 60% 50%);
    --festive-gold: hsl(35 100% 55%);
    --festive-white: hsl(0 0% 98%);

    --gradient-festive: linear-gradient(135deg,
            hsl(140 55% 45%),
            hsl(140 60% 35%));

    --gradient-overlay: linear-gradient(180deg,
            transparent,
            hsl(140 30% 8% / 0.8));

    --glow-gold: 0 0 30px hsl(35 100% 55% / 0.5);

    --radius: 0.75rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;

    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);

    --card-bg: var(--card);
    --card-border: hsl(140 20% 20%);
    --shadow-card: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --foreground-soft: hsl(0 0% 80%);
    --festive-green-light: hsl(140 50% 55%);
    --card-lighter: hsl(140 25% 20%);
}


/* -------------------------------------------------------
   Base
------------------------------------------------------- */
body {
    margin: 0;
    background: var(--background);
    color: var(--foreground);
    font-family: "Inter", sans-serif;
    line-height: 1.5;
}

h1,
h2,
h3,
h4 {
    font-family: "Playfair Display", serif;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

/* -------------------------------------------------------
   Header + Sticky Nav
------------------------------------------------------- */
.header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: hsl(140 30% 8% / 0.8);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid hsl(140 20% 20%);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 700;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 80px;
    width: auto;
}

.nav {
    display: none;
    gap: 2rem;
    align-items: center;
}

.nav a {
    color: var(--foreground);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav a:hover {
    color: var(--festive-gold);
}

.mobile-menu {
    font-size: 1.5rem;
    cursor: pointer;
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--background);
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
}

.mobile-nav-overlay.active {
    transform: translateX(0);
}

.mobile-nav-overlay a {
    font-size: 1.5rem;
    font-weight: 600;
}

.close-mobile-nav {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2rem;
    cursor: pointer;
}


@media (min-width: 768px) {
    .nav {
        display: flex;
    }

    .mobile-menu {
        display: none;
    }
}


/* -------------------------------------------------------
   Hero
------------------------------------------------------- */

.hero {
    position: relative;
    width: 100%;
    padding: 6rem 1.25rem 4rem;
    text-align: center;
    background-image:
        var(--gradient-overlay),
        url("images/dildolights.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-title {
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(90deg,
            var(--festive-white) 0%,
            var(--festive-gold) 50%,
            var(--festive-white) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2.25rem;
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 6rem;
    }
}

.hero-subtitle {
    max-width: 650px;
    margin: 0 auto;
    margin-bottom: 2rem;
    opacity: 0.9;
    font-size: 1rem;
}

@media (min-width: 640px) {
    .hero-subtitle {
        font-size: 1.125rem;
    }
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .hero-subtitle {
        font-size: 1.5rem;
    }
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .hero-actions {
        flex-direction: row;
    }
}

/* Button Styles */
.btn-gold {
    background: var(--festive-gold);
    color: var(--accent-foreground);
    padding: 0.9rem 1.5rem;
    font-size: 1rem;
    border-radius: var(--radius);
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: inline-block;
    text-align: center;
}

.btn-gold:hover {
    filter: brightness(1.08);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--festive-gold);
    padding: 0.9rem 1.5rem;
    font-size: 1rem;
    color: var(--festive-gold);
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: inline-block;
    text-align: center;
}

.btn-outline:hover {
    background: var(--festive-gold);
    color: var(--accent-foreground);
}

.btn-gold.lg,
.btn-outline.lg {
    padding: 1.25rem 2rem;
    font-size: 1.125rem;
}

.btn-gold.small {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}


/* -------------------------------------------------------
   Animations
------------------------------------------------------- */

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}


/* -------------------------------------------------------
   Gallery
------------------------------------------------------- */
section {
    padding: 4rem 1.25rem;
    max-width: 1280px;
    margin: 0 auto;
}

h2 {
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-align: center;
    letter-spacing: -0.5px;
}

.subtitle {
    font-size: clamp(1rem, 1.6vw, 1.25rem);
    color: var(--foreground-soft);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 2.5rem auto;
}

/* ==============================
   CATEGORY FILTER BAR
   ============================== */
.filter-bar {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2.75rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.5rem 1.1rem;
    border-radius: 999px;
    font-size: 0.95rem;
    background: hsl(0 0% 100% / 0.5);
    border: 1px solid hsl(0 0% 100% / 0.35);
    color: var(--foreground-soft);
    cursor: pointer;
    transition: all 0.25s ease;
    backdrop-filter: blur(6px);
}

.filter-btn:hover {
    background: hsl(0 0% 100% / 0.75);
    color: var(--foreground);
}

.filter-btn.active {
    background: var(--festive-gold);
    color: #000;
    border-color: var(--festive-gold);
}

/* ==============================
   GALLERY GRID
   ============================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.75rem;
}

@media (min-width: 640px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ==============================
   GALLERY CARD
   ============================== */
.card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    padding: 0.75rem;
    border: 1px solid var(--card-border);
    display: flex;
    flex-direction: column;
}

.card-img {
    border-radius: var(--radius-md);
    width: 100%;
    height: 220px;
    object-fit: cover;
    margin-bottom: 0.9rem;
}

.badge {
    display: inline-block;
    padding: 0.35rem 0.8rem;
    background: var(--festive-green-light);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 999px;
    margin-bottom: 0.75rem;
    width: fit-content;
}

.card-title {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
}

.location {
    font-size: 0.85rem;
    color: var(--foreground-soft);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.9rem;
}

.stats {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--foreground-soft);
    margin-top: auto;
}

.stats-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stats-left span {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.stats button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
    font-size: 1.25rem;
    color: var(--foreground-soft);
    transition: color 0.25s;
}

.stats button:hover {
    color: var(--festive-gold);
}

.heart-container {
    transition: transform 0.2s ease;
    cursor: pointer;
}

.heart-container:hover .fa-heart {
    color: var(--festive-red);
}

.heart-button.active {
    color: var(--festive-red);
}

.btn-load {
    display: block;
    margin: 2rem auto 0;
    padding: 0.75rem 1.5rem;
    background: var(--primary);
    color: white;
    border-radius: var(--radius);
    font-weight: 600;
}


/* -------------------------------------------------------
   Footer
------------------------------------------------------- */
.footer {
    background: hsl(140 25% 12%);
    color: var(--foreground);
    padding-top: 3rem;
    margin-top: 4rem;
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.footer-brand .footer-logo {
    font-weight: 900;
    font-size: 1.5rem;
}

.footer-columns {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.footer-columns h4 {
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.footer-columns a {
    display: block;
    color: var(--foreground);
    opacity: 0.8;
    margin: 0.25rem 0;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-bottom {
    text-align: center;
    margin-top: 2.5rem;
    opacity: 0.65;
    padding-bottom: 2rem;
}

/* Map Styles */
#map {
    width: 100%;
    height: 500px;
    border-radius: var(--radius-lg);
    border: 2px solid var(--festive-gold);
    margin-bottom: 2rem;
}

/* Form Styles */
.form-container {
    background: var(--card-lighter);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--card-border);
    max-width: 800px;
    margin: 0 auto;
}

.form-section {
    margin-bottom: 2rem;
}

.form-section h4 {
    color: var(--festive-gold);
    margin-bottom: 1rem;
}

input[type="text"],
input[type="file"],
textarea,
select {
    width: 100%;
    padding: 0.75rem;
    background: hsl(140 30% 8%);
    border: 1px solid hsl(140 20% 20%);
    border-radius: var(--radius-md);
    color: var(--foreground);
    font-family: inherit;
    margin-bottom: 1rem;
}

input[type="text"]:focus,
textarea:focus {
    outline: none;
    border-color: var(--festive-gold);
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

/* Spinner */
.spinner-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.spinner {
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top: 4px solid var(--festive-gold);
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}