/* ========================================
   SIMANTAP - Modern Responsive Styles
   ======================================== */

/* ========================================
   1. RESET & BASE STYLES
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #052659;
    --primary-light: #0a4d9e;
    --primary-lighter: #1560bd;
    --accent-green: #37994a;
    --accent-light-green: #b3eb6e;
    --text-white: #ffffff;
    --text-dark: #040404;
    --text-gray: #666666;
    --bg-dark: #000000;
    --bg-overlay: rgba(255, 255, 255, 0.85);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
    --border-radius: 15px;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: auto;
    font-size: 16px;
}

body {
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-white);
    background: var(--bg-dark);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ========================================
   2. SECTION LAYOUTS (RESPONSIVE)
   ======================================== */
section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 80px 5%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Background Effects */
.bg-blur-effect {
    position: absolute;
    border-radius: 50%;
    filter: blur(200px);
    opacity: 0.7;
    z-index: 0;
}

.bg-blur-primary {
    background: var(--primary-color);
    width: 600px;
    height: 600px;
    top: 20%;
    right: 10%;
}

.bg-blur-secondary {
    background: rgba(255, 255, 255, 0.3);
    width: 400px;
    height: 400px;
    top: -10%;
    left: -5%;
}

/* Section Headers */
.section-header {
    position: relative;
    z-index: 10;
    text-align: center;
    margin-bottom: 50px;
    width: 100%;
}

.section-title {
    font-family: 'Nunito', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 15px;
    background: linear-gradient(90deg, #005698 0%, #379946 41%, #b3eb6e 82%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

/* Content Container */
.content-wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* ========================================
   3. BERANDA SECTION
   ======================================== */
.beranda {
    background: linear-gradient(180deg, #000000 0%, #0a1929 85%, #0a1929 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

/* Navigation Menu */
.nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.logo-text h1 {
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(90deg, #005698 0%, #379946 36%, #b3eb6e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
}

.logo-text p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
    list-style: none;
}

.nav-links li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-links a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover {
    color: var(--accent-light-green);
    transform: translateY(-2px);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-light-green);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    padding: 60px 20px;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 400;
    margin-bottom: 30px;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.hero-content h1 .gradient-text {
    background: linear-gradient(90deg, #005698 0%, #379946 41%, #b3eb6e 82%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.hero-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.8;
    letter-spacing: 0.3px;
}

.cta-button {
    display: inline-block;
    background: var(--text-white);
    color: var(--text-dark);
    padding: 15px 50px;
    border-radius: 25px;
    font-size: 22px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    background: var(--accent-light-green);
}

/* ========================================
   4. ACARA SECTION
   ======================================== */
.acara {
    background: linear-gradient(180deg, #0a1929 0%, #0a1929 15%, #000000 100%);
}

.acara-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.acara-card {
    background: #0f172a; /* slate-900 */
    border-radius: 16px;
    padding: 0;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(2,6,23,0.4);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
    position: relative;
}

.acara-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(2,6,23,0.6);
    border-color: rgba(148,163,184,0.18); /* slate-400 at low opacity */
}

.acara-date {
    background: linear-gradient(135deg, #0b1540 0%, #0a4d9e 60%, #0b1540 100%);
    color: white;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.acara-date-box {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 12px 16px;
    text-align: center;
    min-width: 70px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.acara-date .day {
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.5px;
    line-height: 1;
    display: block;
}

.acara-date .month {
    font-size: 11px;
    text-transform: uppercase;
    margin-top: 4px;
    font-weight: 600;
    letter-spacing: 0.8px;
    opacity: 0.9;
}

.acara-date-text {
    flex: 1;
}

.acara-date-text h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 6px 0;
    color: white;
    line-height: 1.3;
}

.acara-date-text .time {
    font-size: 13px;
    opacity: 0.85;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.acara-info {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.acara-info h3 {
    color: #e5e7eb; /* text-gray-200 */
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

.acara-info p {
    color: #cbd5e1; /* text-slate-300 */
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.acara-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 12px;
    margin-top: auto;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 13px;
    color: #94a3b8; /* slate-400 */
}

.acara-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.acara-info a.acara-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.14);
    color: #e5e7eb;
    text-decoration: none;
    background: rgba(255,255,255,0.02);
    backdrop-filter: blur(6px);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.acara-info a.acara-link:hover {
    background: rgba(255,255,255,0.06);
    transform: translateX(4px);
    box-shadow: 0 10px 20px rgba(2,6,23,0.35);
}

.acara-card button:hover {
    background: #dc2626 !important;
    transform: scale(1.05);
}

/* ========================================
   5. SEJARAH SECTION
   ======================================== */
.sejarah {
    background: linear-gradient(180deg, #000000 0%, #0a1929 50%, #000000 100%);
}

.sejarah-content {
    background: rgba(10, 25, 41, 0.4);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 50px;
    max-width: 900px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(79, 172, 254, 0.1);
}

.sejarah-content h2 {
    color: var(--primary-color);
    font-size: 32px;
    margin-bottom: 25px;
}

.sejarah-content p {
    color: #ffffff !important;
    font-size: 16px;
    line-height: 1.8;
    text-align: justify;
}

/* Subtitle styling untuk sejarah subsections */
.sejarah-subtitle {
    color: #3886ff;
    font-size: 22px;
    font-weight: 700;
    margin-top: 32px;
    margin-bottom: 12px;
    padding-left: 16px;
    border-left: 4px solid #3886ff;
    font-family: "Nunito", sans-serif;
}

/* First subtitle doesn't need top margin */
.sejarah-subtitle:first-of-type {
    margin-top: 0;
}

/* Text styling untuk sejarah paragraphs */
.sejarah-text {
    color: #FFFFFF !important;
    font-size: 16px;
    line-height: 1.9;
    text-align: justify;
    margin-bottom: 16px;
    font-family: "Nunito", sans-serif;
    font-weight: 400;
}

/* Last paragraph in a section has more bottom margin */
.sejarah-subtitle + .sejarah-text:last-of-type {
    margin-bottom: 24px;
}

/* Strong and em text within sejarah */
.sejarah-text strong {
    color: #3886ff;
    font-weight: 700;
}

.sejarah-text em {
    font-style: italic;
    color: #FFD700;
}

/* Legacy support - remove old desa-wonorejo styles */
.desa-wonorejo {
    color: #FFFFFF !important;
}

/* Semua paragraf dalam sejarah section harus putih */
#sejarah p {
    color: #FFFFFF !important;
}

/* ========================================
   6. BATIK SECTION
   ======================================== */
.batik {
    background: linear-gradient(180deg, #000000 0%, #0a1929 100%);
}

.batik-viewer-container {
    background: var(--text-white);
    border-radius: var(--border-radius);
    padding: 40px;
    text-align: center;
    max-width: 600px;
    box-shadow: var(--shadow-lg);
}

.batik-viewer-container img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 10px;
    cursor: col-resize;
    user-select: none;
}

.batik-info {
    margin-top: 30px;
    color: var(--text-dark);
}

.batik-info h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.batik-info p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.6;
}

.drag-hint {
    font-size: 14px;
    color: var(--text-gray);
    margin-top: 15px;
    opacity: 0.8;
}

/* ========================================
   7. VIDEO SECTION
   ======================================== */
.video {
    background: linear-gradient(180deg, #0a1929 0%, #000000 100%);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    width: 100%;
}

.video-card {
    background: var(--bg-overlay);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.video-thumbnail {
    position: relative;
    height: 200px;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-thumbnail img.play-icon {
    width: 60px;
    height: 60px;
    opacity: 0.9;
    transition: var(--transition);
}

.video-card:hover .play-icon {
    transform: scale(1.2);
    opacity: 1;
}

.video-content {
    padding: 20px;
    background: white;
}

.video-content h3 {
    color: var(--primary-color);
    font-size: 20px;
    margin-bottom: 10px;
}

.video-content p {
    color: var(--text-gray);
    font-size: 15px;
}

/* ========================================
   8. BERITA SECTION
   ======================================== */
.berita {
    background: var(--bg-dark);
}

.berita-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    width: 100%;
}

.berita-card {
    background: var(--text-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.berita-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.berita-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.berita-content {
    padding: 20px;
}

.berita-date {
    font-size: 13px;
    color: var(--text-gray);
    margin-bottom: 10px;
}

.berita-content h3 {
    color: var(--primary-color);
    font-size: 20px;
    margin-bottom: 10px;
    line-height: 1.3;
}

.berita-content p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.6;
}

/* ========================================
   9. LOKER SECTION
   ======================================== */
.info-loker {
    background: linear-gradient(180deg, #0a1929 0%, #000000 100%);
}

.loker-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    width: 100%;
}

/* Modern Loker Card */
.loker-card-modern {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
}

.loker-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.loker-card-modern .modern-card-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.loker-card-modern .modern-card-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.loker-card-modern .modern-card-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.loker-card-modern .modern-card-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.btn-apply-loker {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 12px 28px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    margin-top: auto;
}

.btn-apply-loker:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(5, 38, 89, 0.3);
    background: linear-gradient(135deg, var(--primary-light), #1560bd);
}

/* Old loker card (fallback) */
.loker-card {
    background: var(--primary-color);
    color: var(--text-white);
    border-radius: var(--border-radius);
    padding: 30px;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.loker-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    background: var(--primary-light);
}

.loker-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.loker-card p {
    font-size: 15px;
    margin: 8px 0;
    opacity: 0.95;
}

.loker-card .btn-apply {
    display: inline-block;
    background: var(--text-white);
    color: var(--primary-color);
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    margin-top: 15px;
    transition: var(--transition);
}

.loker-card .btn-apply:hover {
    background: var(--accent-light-green);
    color: var(--text-dark);
}



/* ========================================
   10. ADMIN CONTROLS
   ======================================== */
.admin-controls {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 8999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.admin-controls.hidden {
    display: none;
}

.btn-add {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--text-white);
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-add:hover {
    transform: translateX(-5px);
    box-shadow: var(--shadow-lg);
}

.btn-add::before {
    content: '+';
    font-size: 20px;
    font-weight: 700;
}

/* ========================================
   11. DELETE BUTTON STYLES
   ======================================== */
.btn-delete {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #ff4444, #cc0000);
    color: var(--text-white);
    border: none;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    z-index: 10;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 8px rgba(255, 68, 68, 0.3);
}

.btn-delete:hover {
    background: linear-gradient(135deg, #ff6666, #dd0000);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 68, 68, 0.5);
}

.btn-delete:active {
    transform: scale(0.98);
}

/* Tombol hapus khusus untuk lowongan */
.btn-delete-loker {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(255, 68, 68, 0.3);
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-delete-loker:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 68, 68, 0.5);
    background: linear-gradient(135deg, #ff6666 0%, #dd0000 100%);
}

.btn-delete-loker:active {
    transform: scale(0.95);
}

/* ========================================
   12. MODAL STYLES
   ======================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.hidden {
    display: none;
}

.modal-content {
    background: var(--text-white);
    border-radius: 20px;
    padding: 40px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    position: relative;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
}

.modal-header h2 {
    color: var(--primary-color);
    font-size: 28px;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 32px;
    color: var(--text-gray);
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.modal-close:hover {
    background: #f0f0f0;
    color: var(--text-dark);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 15px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(5, 38, 89, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group input[type="datetime-local"],
.form-group input[type="date"] {
    cursor: pointer;
}

.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.btn-submit,
.btn-cancel {
    flex: 1;
    padding: 14px 20px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit {
    background: var(--primary-color);
    color: var(--text-white);
}

.btn-submit:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-cancel {
    background: #e0e0e0;
    color: var(--text-dark);
}

.btn-cancel:hover {
    background: #d0d0d0;
}

/* ========================================
   12. UTILITIES
   ======================================== */
.hidden {
    display: none !important;
}

.text-center {
    text-align: center;
}

.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }

/* Loading State */
.loading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
    color: var(--text-white);
    font-size: 18px;
}

.empty-state {
    text-align: center;
    padding: 50px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
}

/* Load More Button */
.load-more-btn {
    display: block;
    margin: 40px auto 0;
    padding: 14px 40px;
    background: linear-gradient(135deg, #0a4d9e 0%, #052659 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(5, 38, 89, 0.3);
}

.load-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(5, 38, 89, 0.5);
    background: linear-gradient(135deg, #0b5bb8 0%, #063470 100%);
}

.load-more-btn:active {
    transform: translateY(0);
}

/* ========================================
   13. RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1200px) {
    .section-title {
        font-size: 36px;
    }
    
    .hero-content h1 {
        font-size: 48px;
    }
}

@media (max-width: 992px) {
    .nav-links {
        gap: 20px;
    }
    
    .nav-links a {
        font-size: 14px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .hero-content h1 {
        font-size: 40px;
    }
    
    .hero-content p {
        font-size: 20px;
    }
    
    .acara-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 20px;
    }
    
    .video-grid,
    .berita-grid,
    .loker-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 4%;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 15px;
        padding: 15px 4%;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .hero-content {
        margin-top: 180px;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-content p {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .sejarah-content {
        padding: 30px;
    }
    
    .modal-content {
        padding: 25px;
    }
    
    .admin-controls {
        top: auto;
        bottom: 100px;
        right: 10px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .cta-button {
        padding: 12px 35px;
        font-size: 18px;
    }
    
    .acara-grid,
    .video-grid,
    .berita-grid,
    .loker-grid {
        grid-template-columns: 1fr;
    }
    
    .loker-card-modern .modern-card-image {
        height: 160px;
    }
    
    .acara-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .acara-date {
        flex-direction: row;
        padding: 16px 20px;
    }
    
    .acara-date-box {
        min-width: 60px;
        padding: 10px 12px;
    }
    
    .acara-date .day {
        font-size: 28px;
    }
    
    .acara-date-text h3 {
        font-size: 16px;
    }
    
    .acara-info {
        padding: 20px;
    }
    
    .acara-info h3 {
        font-size: 16px;
    }
    
    .acara-info p {
        font-size: 13px;
    }
    
    .acara-meta {
        font-size: 12px;
        flex-wrap: wrap;
    }
    
    .floating-qna-btn img {
        width: 44px;
        height: 44px;
    }
}

/* ========================================
   15. FOOTER CREDIT
   ======================================== */
.footer-credit {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.9) 0%, #000000 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 20px;
    margin-top: 60px;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 15px 0;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.footer-text strong {
    color: #b3eb6e;
    font-weight: 700;
}

.footer-socials {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-socials a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 8px;
    display: inline-block;
}

.footer-socials a:hover {
    color: #b3eb6e;
    background: rgba(179, 235, 110, 0.1);
    transform: translateY(-2px);
}

.footer-divider {
    color: rgba(255, 255, 255, 0.3);
    font-size: 14px;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-credit {
        padding: 30px 15px;
        margin-top: 40px;
    }
    
    .footer-text {
        font-size: 14px;
    }
    
    .footer-socials a {
        font-size: 13px;
        padding: 6px 12px;
    }
}

/* ========================================
   14. ANIMATIONS
   ======================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-up {
    animation: slideUp 0.5s ease-out;
}

/* Smooth transitions for dynamic content */
.content-wrapper > * {
    animation: fadeIn 0.6s ease-out;
}

/* ========================================
   16. LOVE BUTTON STYLES
   ======================================== */
.love-btn {
    background: linear-gradient(135deg, rgba(56, 134, 255, 0.2) 0%, rgba(56, 134, 255, 0.1) 100%);
    border: 2px solid rgba(56, 134, 255, 0.4);
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    padding: 8px 14px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(56, 134, 255, 0.15);
}

.love-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, rgba(56, 134, 255, 0.35) 0%, rgba(56, 134, 255, 0.25) 100%);
    transform: scale(1.05);
    color: #ffffff;
    border-color: rgba(56, 134, 255, 0.6);
    box-shadow: 0 4px 12px rgba(56, 134, 255, 0.3);
    cursor: pointer;
}

.love-btn:active:not(:disabled) {
    transform: scale(0.98);
    box-shadow: 0 1px 4px rgba(56, 134, 255, 0.2);
}

.love-btn.loved {
    background: linear-gradient(135deg, rgba(255, 71, 87, 0.25) 0%, rgba(255, 71, 87, 0.15) 100%);
    color: #ff4757;
    border: 2px solid rgba(255, 71, 87, 0.5);
    cursor: not-allowed;
    box-shadow: 0 2px 8px rgba(255, 71, 87, 0.2);
}

.love-btn.loved:hover {
    background: linear-gradient(135deg, rgba(255, 71, 87, 0.25) 0%, rgba(255, 71, 87, 0.15) 100%);
    color: #ff4757;
    border-color: rgba(255, 71, 87, 0.5);
    cursor: not-allowed;
    transform: none;
}

.love-btn:disabled {
    opacity: 0.8;
    cursor: not-allowed;
}

/* Mobile specific styles */
@media (max-width: 768px) {
    .love-btn {
        font-size: 14px;
        padding: 7px 12px;
        border-width: 2px;
    }
    
    .love-btn:active:not(:disabled) {
        transform: scale(0.95);
    }
}
