/* ===== Holiday Gallery — Shared Styles (Full) ===== */
:root {
  --bg: #0f172a;
  --panel: #111827;
  --text: #e5e7eb;
  --muted: #9ca3af;
  --accent: #60a5fa;
  --card: #0b1220;
  --border: #1f2937;
}
body {
    font-family: system-ui, Segoe UI, Roboto, Arial, sans-serif;
    margin: 0;
    background: #0f172a;
    color: #e5e7eb
}

a {
    color: #60a5fa;
    text-decoration: none
}

a:hover {
    text-decoration: underline
}

.navbar {
    background: #0b1220;
    border-bottom: 1px solid #1f2937;
    color: #fff;
    padding: 12px 16px;
    display: flex;
    gap: 12px;
    align-items: center
}

.navbar .spacer {
    flex: 1
}

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

h1 {
    margin: 12px 0 16px 0
}

.card {
    background: #0b1220;
    border: 1px solid #1f2937;
    border-radius: 14px;
    padding: 14px
}

.row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap
}

label {
    display: block;
    margin: 8px 0 6px 0;
    font-weight: 600
}

input[type=text],
input[type=datetime-local],
select,
textarea {
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #1f2937;
    background: #0a1120;
    color: #e5e7eb
}

textarea {
    min-height: 90px
}

.btn {
    display: inline-block;
    background: #0a8;
    color: #081b1b;
    font-weight: 700;
    padding: 10px 14px;
    border-radius: 10px;
    border: none;
    cursor: pointer
}

.btn.secondary {
    background: #223043;
    color: #e5e7eb
}

.btn.danger {
    background: #b91c1c;
    color: #fff
}

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

.gallery-card {
    background: #0b1220;
    border: 1px solid #1f2937;
    border-radius: 12px;
    overflow: hidden
}

.gallery-thumb {
    width: 100%;
    height: 180px;
    object-fit: cover;
    background: #000
}

.small {
    color: #9ca3af;
    font-size: 12px
}

.tag {
    display: inline-block;
    margin: 2px 6px 0 0;
    padding: 4px 8px;
    border-radius: 999px;
    border: 1px solid #1f2937;
    background: #0a1220
}

.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .85);
    align-items: center;
    justify-content: center;
    z-index: 9999
}

.lightbox img {
    max-width: 90%;
    max-height: 90%
}

.skel {
    background: #0a0f1a;
    height: 150px;
    border-radius: 10px;
    animation: pulse 1.2s ease-in-out infinite
}

@keyframes pulse {
    0% {
        opacity: .6
    }

    50% {
        opacity: .9
    }

    100% {
        opacity: .6
    }
}

.video-badge{position:absolute;right:8px;bottom:8px;background:rgba(0,0,0,.6);padding:4px 8px;border-radius:8px;font-size:12px;color:#fff}
.video-wrap{position:relative}
