@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');

:root {
  /* Dark & Purple Palette for Premium/Modern feel */
  --primary-color: #8E44AD;
  --secondary-color: #9B59B6;
  --accent-color: #F39C12; /* Gold */
  --light-color: #BDC3C7;
  --dark-color: #1a1a1a;
  --gradient-primary: linear-gradient(135deg, #2c1e33 0%, #1a1a1a 100%);
  --hover-color: #6C3483;
  --background-color: #2D2D2D; /* Dark Grey */
  --text-color: #E0E0E0;
  --border-color: rgba(142, 68, 173, 0.3);
  --divider-color: rgba(243, 156, 18, 0.2);
  --shadow-color: rgba(0, 0, 0, 0.5);
  --highlight-color: #27AE60;
  --main-font: 'Oswald', sans-serif;
  --alt-font: 'Roboto', sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--alt-font); background-color: var(--background-color); color: var(--text-color); margin: 0; padding: 0; }
h1, h2, h3, h4, h5, h6 { font-family: var(--main-font); color: #FFF; letter-spacing: 1px; }

/* Dark Neumorphism */
.neumorphic {
    background: linear-gradient(145deg, #303030, #292929);
    box-shadow: 6px 6px 12px #1f1f1f, -6px -6px 12px #3b3b3b;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.05);
}
.neumorphic-inset {
    background: #2D2D2D;
    box-shadow: inset 5px 5px 10px #1f1f1f, inset -5px -5px 10px #3b3b3b;
    border-radius: 8px;
    color: #fff;
}

.hero-bg {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.6)), url('./img/bg.jpg') no-repeat top center/cover;
    height: 80vh;
}
.cta-bg {
    background: linear-gradient(rgba(45, 10, 88, 0.8), rgba(0, 0, 0, 0.9)), url('./img/bg.jpg') no-repeat center center/cover;
    background-attachment: fixed;
}
.section-padding { padding-top: 10dvh; padding-bottom: 10dvh; }

/* Mobile Menu */
#menu-toggle { display: none; }
.mobile-menu { display: none; }
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: block; color: var(--accent-color); font-size: 1.8rem; cursor: pointer; }
    #menu-toggle:checked ~ .mobile-menu { display: flex; flex-direction: column; background: #000; position: absolute; top: 70px; left: 0; width: 100%; z-index: 100; border-bottom: 2px solid var(--primary-color); }
    .mobile-menu a { padding: 15px; text-align: center; color: #fff; text-decoration: none; border-bottom: 1px solid #333; }
}

/* FAQ */
details summary { padding: 20px; font-weight: bold; cursor: pointer; color: var(--accent-color); list-style: none; }
details[open] summary { border-bottom: 1px solid #444; }
details .content { padding: 20px; color: #ccc; }