/* Modern CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --dark-bg: #1a1a1a;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-bg);
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    backdrop-filter: blur(10px);
    box-shadow: none;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.5rem 2rem; /* Diperkecil dari 1rem */
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-controls {
    display: flex;
    align-items: center;
    gap: 0.75rem; /* language-selector dan theme-toggle lebih dekat */
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.logo-image {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.logo:hover {
    color: var(--primary-color);
}

.logo:hover .logo-image {
    transform: scale(1.1);
}

.logo span {
    font-weight: 700;
    color: #ffffff; /* teks logo jadi putih */
    position: relative;
    font-size: 1.25rem; /* Diperkecil dari 1.5rem */
    padding: 0.2rem 0;  /* Diperkecil dari 0.5rem */
}

.logo span::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.logo:hover span::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* opsi warna oranye saat header dalam mode terang saat discroll */
.header.scrolled .logo span {
    color: #ffa733;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.4rem 1.2rem; /* Diperkecil dari 0.55rem 1.4rem */
    border-radius: 12px;
    font-size: 0.85rem;      /* Sedikit lebih kecil agar proporsional */
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    text-decoration: none;
    color: #1a1a1a;
    background: hsl(32, 78%, 52%);
    cursor: pointer;
    outline-offset: 4px;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    will-change: transform;
    transform: translateY(-2px); /* Dikurangi dari -4px agar tidak terlalu tinggi */
    transition:
        transform 600ms cubic-bezier(.3, .7, .4, 1),
        filter 250ms ease;
}

/* navbar text color switches with theme */
body.dark-mode .nav-links a {
    color: #ffffff;
}

.nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: hsl(0deg 0% 0% / 0.25);
    will-change: transform;
    transform: translateY(2px);
    transition: transform 600ms cubic-bezier(.3, .7, .4, 1);
    z-index: -2;
}

.nav-links a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: linear-gradient(
        to left,
        hsl(32, 87%, 35%) 0%,
        hsl(39, 82%, 56%) 8%,
        hsl(39, 94%, 53%) 92%,
        hsl(34, 100%, 33%) 100%
    );
    z-index: -3;
}

.nav-links a:hover {
    filter: brightness(110%);
    -webkit-filter: brightness(110%);
    transform: translateY(-4px); /* Dikurangi dari -6px */
    transition:
        transform 250ms cubic-bezier(.3, .7, .4, 1.5),
        filter 250ms ease;
}

.nav-links a:hover::before {
    transform: translateY(4px);
    transition: transform 250ms cubic-bezier(.3, .7, .4, 1.5);
}

.nav-links a:active {
    transform: translateY(-2px);
    transition: transform 34ms;
}

.nav-links a:active::before {
    transform: translateY(1px);
    transition: transform 34ms;
}

.language-selector {
    display: flex;
    gap: 0.5rem;
    position: relative;
}

.language-selector .menu-item {
    position: relative;
}

.language-selector .menu-item a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.2rem;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.language-selector .menu-item a:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.language-selector .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    list-style: none;
    max-height: 0px;
    overflow: hidden;
    padding: 0;
    margin: 0;
    transform: translateY(-10px) scale(0.95);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 2000;
    min-width: 120px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.language-selector .menu-item:hover .sub-menu,
.language-selector .menu-item:focus .sub-menu,
.language-selector .menu-item:focus-within .sub-menu {
    max-height: 300px;
    transform: translateY(0) scale(1);
    opacity: 1;
}

.language-selector .sub-menu li {
    margin: 0;
}

.language-selector .sub-menu li a {
    display: block;
    padding: 10px 20px;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.2s ease;
    border-radius: 0;
    background: none;
    width: 100%;
    text-align: left;
    box-shadow: none;
    margin: 0;
}

.language-selector .sub-menu li a.lang-btn {
    background: none;
    color: var(--text-color);
    border-radius: 0;
    font-weight: 500;
    box-shadow: none;
    margin: 0;
    width: 100%;
}

.language-selector .sub-menu li a.lang-btn:hover {
    background: rgba(0, 0, 0, 0.03);
    transform: none;
    box-shadow: none;
}

.language-selector .sub-menu li a.lang-btn.active {
    background: rgba(0, 0, 0, 0.06);
    box-shadow: none;
}



.theme-toggle {
    background: transparent;
    border: none;
    color: var(--text-color);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    position: relative;
}

.theme-toggle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.1;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.theme-toggle:hover::before {
    transform: scale(1);
}

/* Dark mode styles for header */
body.dark-mode .header {
    background: rgba(18, 18, 18, 0.95);
}

body.dark-mode .header.scrolled {
    background: rgba(18, 18, 18, 0.98);
}

body.dark-mode .nav-links a {
    color: var(--text-color);
}

body.dark-mode .theme-toggle {
    color: var(--text-color);
}

/* Responsive styles for header */
@media (max-width: 768px) {
    .nav-container {
        padding: 1rem;
    }

    .nav-links {
        display: none;
    }

    .nav-right {
        gap: 0.75rem;
    }

    .language-selector {
        margin-right: 0.5rem;
    }

    .lang-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }

    .logo {
        font-size: 1.1rem;
    }

    .logo-image {
      width: 32px;  /* Diperkecil dari 40px */
      height: 32px; /* Diperkecil dari 40px */
    }
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: none;
    outline: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary-color), #2980b9);
    color: white;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
}

.btn-outline:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--text-color);
    border: 2px solid transparent;
}

.btn-ghost:hover {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: 0.5s;
}

.btn:hover::before {
    left: 100%;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #FF8C00, #FFA500, #FFD700);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
/* SOLUSI KETUTUP NAVBAR: Tambahkan padding atas yang cukup luas */
    padding-top: 150px; 
    padding-bottom: 50px;
    box-sizing: border-box;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.1;
    animation: backgroundMove 20s linear infinite;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.2) 100%);
}

.logo-banner {
    display: flex !important;
    flex-direction: column !important;
    font-size: 10px;
    position: relative;
    z-index: 10;
    text-align: center !important;
    justify-content: center !important;
    margin: 2rem auto;
    margin-bottom: 2rem !important;
    max-width: 1200px;
    width: 100% !important;
    padding: 0 1rem;
    animation: bounceIn 1.5s ease-out;
}

.logo-banner img {
    margin: 0;
    padding: 0;
    line-height: 1.2;
    width: 120px;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(255, 215, 0, 1));
    margin-bottom: 1rem;
}

.logo-banner h2 {
    /* Ukuran font diperkecil menjadi 0.75rem (sekitar 12px) */
    font-size: 25px !important; 
    
    /* Menambah jarak antar huruf agar tetap mudah dibaca meskipun kecil */
    letter-spacing: 4px; 
    
    /* Ketebalan font dibuat sedikit lebih tipis */
    font-weight: 500;
    
    /* Warna putih dengan transparansi agar tidak terlalu mencolok */
    color: rgba(255, 255, 255, 0.7); 
    
    text-transform: uppercase;
    margin: 0 !important;
    padding: 0 !important;
    text-align: center;
}

@keyframes bounceIn {
    0% { transform: scale(0.3) translateY(-50px); opacity: 0; }
    50% { transform: scale(1.05) translateY(10px); opacity: 1; }
    70% { transform: scale(0.9) translateY(-5px); }
    100% { transform: scale(1) translateY(0); }
}

@keyframes rotateGlow {
    0% { transform: rotate(0deg); filter: drop-shadow(0 0 30px rgba(255, 215, 0, 1)) hue-rotate(0deg); }
    25% { filter: drop-shadow(0 0 30px rgba(255, 0, 0, 1)) hue-rotate(90deg); }
    50% { transform: rotate(180deg); filter: drop-shadow(0 0 30px rgba(0, 255, 0, 1)) hue-rotate(180deg); }
    75% { filter: drop-shadow(0 0 30px rgba(0, 0, 255, 1)) hue-rotate(270deg); }
    100% { transform: rotate(360deg); filter: drop-shadow(0 0 30px rgba(255, 215, 0, 1)) hue-rotate(360deg); }
}

@keyframes glitchImg {
    0%, 100% { transform: translate(0); }
    10% { transform: translate(-3px, 2px); }
    20% { transform: translate(-3px, -2px); }
    30% { transform: translate(3px, 2px); }
    40% { transform: translate(3px, -2px); }
    50% { transform: translate(-2px, 3px); }
    60% { transform: translate(2px, 3px); }
    70% { transform: translate(-2px, -3px); }
    80% { transform: translate(2px, -3px); }
    90% { transform: translate(-1px, 1px); }
}

@keyframes glitchText {
    0%, 100% { transform: translate(0); }
    10% { transform: translate(-2px, 1px); }
    20% { transform: translate(-2px, -1px); }
    30% { transform: translate(2px, 1px); }
    40% { transform: translate(2px, -1px); }
    50% { transform: translate(-1px, 2px); }
    60% { transform: translate(1px, 2px); }
    70% { transform: translate(-1px, -2px); }
    80% { transform: translate(1px, -2px); }
    90% { transform: translate(-0.5px, 0.5px); }
}

@keyframes textGlow {
    from { text-shadow: 0 0 20px rgba(255, 215, 0, 1), 0 0 40px rgba(255, 215, 0, 0.8), 0 0 60px rgba(255, 215, 0, 0.6); }
    to { text-shadow: 0 0 30px rgba(255, 215, 0, 1.5), 0 0 60px rgba(255, 215, 0, 1), 0 0 90px rgba(255, 215, 0, 0.8); }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-2px); }
    20%, 40%, 60%, 80% { transform: translateX(2px); }
}

.hero-content {
    display: flex;
    max-width: 800px;
    margin: 0 auto;
    margin-top: 0 !important;
    position: relative;
    z-index: 1;
    padding: 2rem;
    padding-top: 0 !important;
    font-size: 3rem;
    flex-direction: column;
    align-items: center;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease;
    line-height: 1.2;
}

.hero-content h1 .highlight {
    color: #FFD700;
    font-weight: 800;
    position: relative;
    display: inline-block;
}

.hero-content h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #FFD700;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s ease;
}

.hero-content h1:hover .highlight::after {
    transform: scaleX(1);
    transform-origin: left;
}

.typing-text {
    font-size: 2.2rem;
    color: #ffffff;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}
/* CSS Khusus Logo agar bulat sempurna dan di tengah */
.hero-logo {
    width: 140px; /* Ukuran bisa disesuaikan */
    height: 140px;
    object-fit: cover;
    border-radius: 50%;
    font-size: 40%;
    
    /* Gunakan margin auto untuk memastikan posisi absolut di tengah container */
    margin: 0 auto 1rem auto !important;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5rem;
    
    display: block !important;
    box-shadow: 0 0 20px rgba(0,0,0,0.2); /* Opsional: memberi sedikit kedalaman */
}
.cursor {
    display: inline-block;
    width: 3px;
    height: 2.2rem;
    background-color: #FFD700;
    margin-left: 5px;
    animation: blink 0.7s infinite;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.hero-content p {
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease 0.2s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.hero-buttons {
    margin-top: 2.5rem;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    opacity: 1;
    width: 100%;
}

.hero-buttons .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.hero-buttons .btn-primary {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border: none;
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.3);
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 165, 0, 0.4);
}

.hero-buttons .btn-outline {
    background: transparent;
    border: 2px solid #FFD700;
    color: #FFD700;
}

/* adjust button-90 for hero CTAs */
.hero-buttons .button-90.hero-cta {
    text-decoration: none;
    display: inline-block;
}

.hero-buttons .button-90.hero-cta-secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
    box-shadow: 2px 19px 31px rgba(0, 0, 0, 0.15);
}

.hero-buttons .btn-outline:hover {
    background: #FFD700;
    color: #FF8C00;
    transform: translateY(-3px);
}

@keyframes backgroundMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100% 100%;
    }
}

/* Responsive Design for Hero Section */
@media (max-width: 768px) {
    .logo-banner img {
        width: 120px;
    }

    .logo-banner h2 {
        font-size: 0.5rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

.typing-container {
    min-height: 3rem;
    margin-top: 0;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

    .typing-text {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 5.5rem;
    }

    .hero-buttons .btn {
        width: 100%;
    }
}

.btn-view-more {
    /* Tampilan Awal (Gambar Pertama) */
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 35px;
    background-color: #fa7000; /* Warna biru sesuai gambar */
    color: #ffffff;
    border: 2px solid #fa7000;
    border-radius: 50px; /* Membuat bentuk kapsul sempurna */
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Efek Saat Disentuh (Gambar Kedua) */
.btn-view-more:hover {
    background-color: #ffffff; /* Berubah jadi putih */
    color: #000000;            /* Teks berubah jadi biru */
    border-color: #ffffff;
    transform: translateY(-2px); /* Sedikit efek angkat (opsional) */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Styling Ikon di dalam Button */
.btn-view-more i {
    font-size: 1.2rem;
}

/* Featured Posts Section */
.featured-posts {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 1rem;
}

.featured-posts h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.post-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.post-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.post-image {
    height: 200px;
    background: linear-gradient(45deg, #6c5ce7, #a8e6cf);
}

.post-content {
    padding: 1.5rem;
}

.post-content h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.post-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.read-more {
    display: inline-block;
    margin-top: 1rem;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

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

/* ===== FIX FOOTER BOTTOM SESUAI GAMBAR ===== */
/* 1. Warna latar belakang utama untuk seluruh footer */
/* Container Utama Footer */
.footer {
    background: #0d0d0d; /* Hitam pekat agar tidak keputihan */
    color: rgba(255, 255, 255, 0.7);
    width: 100%;
    font-family: sans-serif;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* Aligment ke atas agar sejajar antara kiri dan kanan */
}

/* Sisi Kiri: Copyright & Links */
.footer-left {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-left p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-links-bottom {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.3);
}

.footer-links-bottom a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links-bottom a:hover {
    color: #FFD700; /* Warna aksen emas saat hover */
}

/* Sisi Kanan: Ikon & Made With (Fokus Perbaikan di Sini) */
.footer-right {
    display: flex;
    flex-direction: column;
    /* Menggunakan center agar ikon dan teks "Made with" lurus di tengah satu sama lain */
    align-items: center; 
    gap: 0.8rem;
}

/* Container Ikon: Mengatur susunan ikon secara horizontal */
.footer-right .icons {
    display: flex;
    justify-content: center; /* Memastikan ikon berjejer di tengah */
    gap: 1.5rem;
}

.footer-right .icons a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.2rem;
    transition: color 0.3s, transform 0.2s;
}

.footer-right .icons a:hover {
    color: #ffffff;
    transform: translateY(-3px);
}

/* Teks Made With */
.footer-copy {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    text-align: center; /* Menyelaraskan teks ke tengah */
    white-space: nowrap; /* Mencegah teks turun ke baris baru jika container sempit */
}
@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column-reverse; /* Ikon di atas, teks di bawah */
        align-items: center;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-left {
        align-items: center;
    }

    .footer-links-bottom {
        justify-content: center;
        flex-wrap: wrap;
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 100px; /* Dikurangi dari 150px agar konten naik */
        height: auto;
        min-height: 100vh;
    }

    .hero-content h1 {
        font-size: 2rem; /* Diperkecil lagi agar tidak pecah */
        padding: 0 10px;
    }

    .typing-text {
        font-size: 1.4rem;
    }

    .hero-buttons {
        flex-direction: row; /* Ubah ke baris jika tombol pendek, atau column jika panjang */
        flex-wrap: wrap;
        gap: 1rem;
        padding: 0 1rem;
    }

    .hero-buttons .btn {
        flex: 1; /* Membuat tombol berdampingan dan sama lebar */
        min-width: 140px;
        font-size: 0.9rem;
        padding: 0.8rem 1.5rem;
    }
}
@media (max-width: 768px) {
    .nav-container {
        padding: 0.5rem 1rem; /* Tetap ramping di mobile */
    }

    /* Jika ingin membuat menu scroll horizontal untuk navigasi mobile */
    .nav-links {
        display: flex;
        overflow-x: auto;
        gap: 0.8rem;
        padding: 0.5rem 0;
        width: 100%;
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
    }
    
    .nav-links a {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
        white-space: nowrap; /* Mencegah teks menu turun ke bawah */
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Dark Mode Styles */
body.dark-mode {
    background-color: var(--dark-bg);
    color: white;
}

body.dark-mode .header {
    background-color: rgba(26, 26, 26, 0.95);
}

body.dark-mode .post-card {
    background-color: #2d2d2d;
}

body.dark-mode .nav-links a {
    color: white;
}

body.dark-mode .logo {
    color: white;
}

body.dark-mode .btn-outline {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

body.dark-mode .btn-outline:hover {
    background: var(--secondary-color);
    color: white;
}

body.dark-mode .btn-ghost {
    color: white;
}

body.dark-mode .btn-ghost:hover {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

:root {
    --card-bg: #121212;
    --border-color: rgba(255, 255, 255, 0.08);
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 260px));
    gap: 20px;
    justify-content: center;
    perspective: 1000px; /* Efek 3D untuk animasi masuk */
}

.social-box {
    position: relative;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 30px 20px;
    text-align: center;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: default;
}

/* Efek Glassmorphism di Background */
.glass-morph {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    filter: blur(40px);
    z-index: 0;
    pointer-events: none;
}

.social-box:hover .glass-morph {
    opacity: 0.15; /* Pendaran halus saat hover */
}

.social-box:hover {
    transform: translateY(-10px) rotateX(5deg);
    border-color: var(--accent-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Ikon dengan Animasi Pulse */
.icon-wrapper {
    position: relative;
    z-index: 1;
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.social-box:hover .icon-wrapper {
    background: var(--accent-color);
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 0 20px var(--accent-color);
}

.icon-wrapper i {
    font-size: 1.8rem;
    color: #fff;
}

/* Tipografi */
.social-box h3 {
    position: relative;
    z-index: 1;
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.social-box p {
    position: relative;
    z-index: 1;
    color: #888;
    font-size: 0.8rem;
    line-height: 1.5;
    margin-bottom: 25px;
}

/* Rampingkan Tombol 3D */
.front {
    padding: 10px 25px;
    font-size: 0.75rem;
    letter-spacing: 1px;
    border-radius: 12px;
}

/* Animasi Masuk (Fade-in Up) */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.social-box {
    animation: fadeInUp 0.6s ease backwards;
}

/* Delay Animasi tiap kotak agar bergantian */
.social-box:nth-child(1) { animation-delay: 0.1s; }
.social-box:nth-child(2) { animation-delay: 0.2s; }
.social-box:nth-child(3) { animation-delay: 0.3s; }

.footer-divider {
    /* Menghilangkan gaya bawaan browser */
    border: none;
    
    /* Membuat garis tipis 1px dengan warna abu-abu gelap transparan */
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1); 
    
    /* Memberikan jarak yang jauh (misal 80px) antara grid dan footer */
    margin: 80px 0 40px 0;
    
    /* Memastikan garis memanjang penuh */
    width: 100%;
}

/* Penyesuaian untuk footer di bawahnya agar teks berada di tengah */
footer {
    padding-bottom: 40px;
    text-align: center;
}

.join-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 20px;
}

.join-title {
    font-size: 2.5rem; /* Ukuran besar dan tegas */
    font-weight: 800;
    letter-spacing: 2px;
    color: #000000;
    margin-bottom: 10px;
    text-transform: uppercase;
}

/* Garis bawah biru yang elegan */
.title-underline {
    width: 60px; /* Panjang garis */
    height: 4px; /* Ketebalan garis */
    background: #fd6500; /* Warna biru sesuai gambar */
    margin: 0 auto 20px;
    border-radius: 2px;
}

.join-subtitle {
    color: #000000;
    font-size: 0.95rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Penyesuaian Responsif */
@media (max-width: 768px) {
    .join-title {
        font-size: 1.8rem;
    }
    .join-subtitle {
        font-size: 0.85rem;
    }
}

/* Styling Gambar di Icon Wrapper Atas */
.custom-icon-img {
    width: 100%; /* Mengikuti ukuran icon-wrapper */
    height: 100%;
    object-fit: contain; /* Menjaga proporsi gambar tetap bagus */
    border-radius: 12px; /* Opsional: jika ingin logo membulat halus */
}

/* Styling Gambar di Dalam Tombol */
.btn-icon-img {
    width: 20px; /* Ukuran ikon kecil di dalam tombol */
    height: 20px;
    object-fit: contain;
    /* Memberikan filter putih jika logo Anda berwarna gelap dan ingin terlihat di tombol gold */
    /* filter: brightness(0) invert(1); */
}

/* Gaya Tombol Kapsul (Referensi: image_bf5822.png) */
.capsule-button {
    display: inline-block;
    padding: 10px 35px; /* Ukuran lebih ramping dan proporsional */
    border-radius: 50px; /* Bentuk kapsul sempurna */
    font-size: 0.9rem;
    font-weight: 800; /* Teks tebal sesuai referensi */
    text-decoration: none;
    letter-spacing: 0.5px;
    gap: 25px; /* Jarak antara ikon dan teks */
    
    /* Gradasi Background Oranye/Emas Glossy */
    background: linear-gradient(180deg, #000000 0%, #000000 100%);
    
    /* Warna Teks Kuning Emas */
    color: #ffffff !important;
    
    /* Border Kuning Terang yang Tegas */
    border: 2px solid #fd6500;
    
    /* Efek Bayangan Halus untuk Kedalaman */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    z-index: 2;
}
/* Ukuran Ikon di Dalam Tombol */
.capsule-button i {
    font-size: 1rem;
    /* Pastikan warna ikon mengikuti warna teks */
    color: inherit; 
    /* Hilangkan background/gradient jika ada dari style ikon sebelumnya */
    background: none;
    -webkit-text-fill-color: initial;
}

/* Animasi Hover */
.capsule-button:hover {
    transform: scale(1.08) translateY(-2px);
    background: linear-gradient(180deg, #000000 0%, #000000 100%);
    box-shadow: 0 8px 25px rgba(212, 140, 0, 0.5);
    filter: brightness(1.1);
    color: #ffffff !important; /* Teks berubah putih saat hover agar lebih modern */
}

/* Efek Klik (Micro-interaction) */
.capsule-button:active {
    transform: scale(0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Penyesuaian Grid agar Tombol Berada di Tengah */
.social-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.button-90 {
  color: #fff;
  padding: 15px 25px;
  border-radius: 100px;
  background-color: #ca6d17;
  background-image: radial-gradient(93% 87% at 87% 89%, rgba(0, 0, 0, 0.23) 0%, transparent 86.18%), radial-gradient(66% 87% at 26% 20%, rgba(255, 255, 255, 0.41) 0%, rgba(255, 255, 255, 0) 69.79%, rgba(255, 255, 255, 0) 100%);
  box-shadow: 2px 19px 31px rgba(0, 0, 0, 0.2);
  font-weight: bold;
  font-size: 16px;
  border: 0;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  cursor: pointer;
  transition: all 0.3s ease;
}

.button-90:hover {
  background-color: #ce8322;
  box-shadow: 2px 19px 31px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

.button-90:active {
  transform: translateY(0);
  box-shadow: 2px 19px 31px rgba(0, 0, 0, 0.2);
}

/* Dark Mode Styles for Elegant Elements */
body.dark-mode .elegant-elements {
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
}

body.dark-mode .element-card {
    background: #2d2d2d;
}

body.dark-mode .social-box {
    background: rgba(45, 45, 45, 0.9);
    color: white;
}

body.dark-mode .social-box h3 {
    color: #FFD700;
}

body.dark-mode .social-box p {
    color: #ccc;
}

@media (max-width: 768px) {
    .social-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Social Media Feeds */
.social-feeds {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.feed-container {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feed-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.feed-container h3 {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
}

.feed-container h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #FFD700, transparent);
}

.feed-content {
    width: 100%;
    overflow: hidden;
    border-radius: 15px;
    min-height: 500px;
    background: rgba(0, 0, 0, 0.2);
}

.twitter-timeline,
.feed-content iframe {
    width: 100% !important;
    height: 500px !important;
    border: none;
    border-radius: 15px;
}

/* Responsive Design for Social Feeds */
@media (max-width: 992px) {
    .social-feeds {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .feed-container {
        padding: 1rem;
    }
    
    .feed-container h3 {
        font-size: 1.3rem;
    }

    .feed-content {
        min-height: 400px;
    }

    .twitter-timeline,
    .feed-content iframe {
        height: 400px !important;
    }
}

/* Login Styles */
.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    padding: 2rem;
}

.login-box {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    width: 100%;
    max-width: 400px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.login-box h2 {
    color: #FFD700;
    text-align: center;
    margin-bottom: 2rem;
}

.input-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.input-group i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #FFD700;
}

.input-group input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.input-group input:focus {
    outline: none;
    border-color: #FFD700;
    background: rgba(255, 255, 255, 0.1);
}

/* Community Styles */
.community-main {
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    color: white;
}

.community-hero {
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #FF8C00, #FFA500, #FFD700);
    position: relative;
    overflow: hidden;
}

.community-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.1;
    animation: backgroundMove 20s linear infinite;
}

.community-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 2rem;
}

.community-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.community-hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

.community-posts {
    padding: 4rem 2rem;
}

.community-container {
    max-width: 1200px;
    margin: 0 auto;
}

.post-form-container {
    margin-bottom: 3rem;
}

.post-form {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.post-form h3 {
    color: #FFD700;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FFD700;
    background: rgba(255, 255, 255, 0.1);
}

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

.posts-container h2 {
    color: #FFD700;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.post-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.post-header {
    margin-bottom: 1rem;
}

.post-header h3 {
    color: #FFD700;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.post-meta {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.post-content {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .community-hero h1 {
        font-size: 2.5rem;
    }

    .community-hero p {
        font-size: 1rem;
    }

    .post-form {
        padding: 1.5rem;
    }

    .posts-grid {
        grid-template-columns: 1fr;
    }
}

/* Login and Registration Styles */
.login-tabs {
    display: flex;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tab-btn {
    flex: 1;
    padding: 1rem;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #FFD700;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.tab-btn.active {
    color: #FFD700;
}

.tab-btn.active::after {
    transform: scaleX(1);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Post Actions Styles */
.post-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.post-actions button {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.post-actions button:hover {
    color: #FFD700;
}

.post-actions button i {
    font-size: 1.2rem;
}

/* Comments Section Styles */
.comments-section {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.comments-list {
    margin-bottom: 1rem;
}

.comment {
    background: rgba(255, 255, 255, 0.03);
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 0.5rem;
}

.comment-meta {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.comment-content {
    color: rgba(255, 255, 255, 0.9);
}

.add-comment {
    display: flex;
    gap: 1rem;
}

.add-comment textarea {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 0.8rem;
    color: white;
    resize: vertical;
    min-height: 60px;
}

.add-comment textarea:focus {
    outline: none;
    border-color: #FFD700;
}

.add-comment button {
    background: #FFD700;
    color: #1a1a1a;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-comment button:hover {
    background: #FFA500;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .login-tabs {
        flex-direction: column;
    }
    
    .tab-btn {
        padding: 0.8rem;
    }
    
    .post-actions {
        flex-wrap: wrap;
    }
    
    .add-comment {
        flex-direction: column;
    }
    
    .add-comment button {
        width: 100%;
    }
}

/* Notification Styles */
.notification {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    background: var(--card-bg);
    color: var(--text-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1000;
}

.notification.show {
    transform: translateY(0);
    opacity: 1;
}

.notification.success {
    background: #4caf50;
    color: white;
}

.notification.error {
    background: #f44336;
    color: white;
}

/* Form Button Styles */
.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 2rem;
}

.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-hover);
}

.btn-secondary {
    background: var(--border-color);
    color: var(--text-color);
}

.btn-secondary:hover {
    background: var(--hover-bg);
}

/* Avatar Preview Styles */
.avatar-preview {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.avatar-preview .profile-avatar-large {
    width: 80px;
    height: 80px;
    font-size: 2rem;
}

.avatar-preview-info {
    color: var(--text-secondary);
}

/* Form Group Styles */
.form-group {
    position: relative;
}

.form-group .form-help {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.form-group .form-error {
    color: #f44336;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: none;
}

.form-group.error .form-error {
    display: block;
}

.form-group.error input,
.form-group.error textarea {
    border-color: #f44336;
}

/* Settings Section Styles */
.settings-section-header {
    margin-bottom: 2rem;
}

.settings-section-header h2 {
    margin: 0 0 0.5rem;
    color: var(--text-color);
}

.settings-section-header p {
    color: var(--text-secondary);
    margin: 0;
}

/* Dark mode adjustments */
.dark-mode .notification {
    background: var(--dark-card-bg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.dark-mode .btn-secondary {
    background: var(--dark-border-color);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .notification {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
    }

    .form-actions {
        flex-direction: column;
    }

    .form-actions .btn {
        width: 100%;
    }
}

/* Remove user menu styles */
.user-menu,
.user-menu-btn,
.user-dropdown,
.user-actions,
.user-action-btn,
.login-btn,
.register-btn,
.logout-btn {
    display: none !important;
}

/* Dark mode adjustments */
.dark-mode .user-dropdown {
    display: none !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .user-dropdown {
        display: none !important;
    }
}

/* Privacy Policy Page Styles */
.privacy-policy-page {
    padding: 120px 20px 60px;
    background: var(--light-bg);
    min-height: 100vh;
    transition: background-color 0.3s ease;
}

.privacy-container {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--card-bg);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 40px;
    color: var(--text-color);
}

.privacy-container h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--primary-color);
    text-align: center;
}

.last-updated {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-style: italic;
}

.privacy-section {
    margin-bottom: 40px;
}

.privacy-section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 10px;
}

.privacy-section h3 {
    font-size: 1.4rem;
    margin: 25px 0 15px;
    color: var(--primary-color);
}

.privacy-section p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.privacy-section ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.privacy-section ul li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.privacy-section a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.privacy-section a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Dark mode adjustments for privacy policy */
body.dark-mode .privacy-policy-page {
    background: var(--dark-bg);
}

body.dark-mode .privacy-container {
    background: var(--dark-card-bg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

body.dark-mode .privacy-container h1,
body.dark-mode .privacy-section h2,
body.dark-mode .privacy-section h3 {
    color: var(--text-color);
}

body.dark-mode .privacy-section h2 {
    border-bottom-color: var(--dark-border-color);
}

/* Responsive adjustments for privacy policy */
@media (max-width: 768px) {
    .privacy-policy-page {
        padding: 100px 15px 40px;
    }
    
    .privacy-container {
        padding: 25px;
    }
    
    .privacy-container h1 {
        font-size: 2rem;
    }
    
    .privacy-section h2 {
        font-size: 1.5rem;
    }
    
    .privacy-section h3 {
        font-size: 1.2rem;
    }
} 