/* ============================================
   Festival AI - Complete Stylesheet
   Dark cinematic theme for film festival platform
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: #0a0a1a;
  color: #e0e0e0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
    Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: #d4a843;
  text-decoration: none;
  transition: color 0.25s ease;
}

a:hover {
  color: #e8c570;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

input, textarea, select, button {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

/* --- Container --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 26, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(34, 34, 68, 0.6);
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.navbar-logo {
  font-size: 1.4rem;
  font-weight: 800;
  background: linear-gradient(135deg, #d4a843, #e8c570);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.5px;
  white-space: nowrap;
  flex-shrink: 0;
  overflow: visible;
  min-width: max-content;
}

.navbar-brand {
  white-space: nowrap;
  flex-shrink: 0;
  overflow: visible;
  min-width: max-content;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.navbar-nav a {
  color: #8888aa;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  transition: color 0.25s ease;
  position: relative;
}

.navbar-nav a:hover,
.navbar-nav a.active {
  color: #e0e0e0;
}

.navbar-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #d4a843, #e8c570);
  transition: width 0.3s ease;
}

.navbar-nav a:hover::after,
.navbar-nav a.active::after {
  width: 100%;
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Language Dropdown */
.lang-dropdown {
  position: relative;
  z-index: 100;
}
.lang-dropdown-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  color: #e0e0e0;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.lang-dropdown-btn:hover {
  background: rgba(255,255,255,0.12);
}
.lang-flag {
  font-size: 16px;
  line-height: 1;
}
.lang-arrow {
  font-size: 10px;
  opacity: 0.6;
  transition: transform 0.2s;
}
.lang-dropdown.open .lang-arrow {
  transform: rotate(180deg);
}
.lang-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: #111125;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 6px;
  min-width: 160px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  z-index: 200;
}
.lang-dropdown.open .lang-dropdown-menu {
  display: block;
}
.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 8px 12px;
  background: none;
  border: none;
  color: #c0c0d0;
  font-size: 13px;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.15s;
  text-align: left;
}
.lang-option:hover {
  background: rgba(255,255,255,0.08);
  color: white;
}
.lang-option.active {
  background: rgba(212,168,67,0.15);
  color: #d4a843;
}

/* Auth Buttons in Navbar */
.btn-login {
  background: transparent;
  border: 1px solid #8888aa;
  color: #e0e0e0;
  padding: 7px 18px;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-login:hover {
  border-color: #d4a843;
  color: #d4a843;
}

.btn-register {
  background: linear-gradient(135deg, #d4a843, #e8c570);
  border: none;
  color: #0a0a1a;
  padding: 8px 20px;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-register:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #e0e0e0;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: calc(100vh - 64px);
  margin-top: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px;
  position: relative;
  overflow: hidden;
}

/* Decorative film-reel circles */
.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(212, 168, 67, 0.08);
  pointer-events: none;
}

.hero::before {
  width: 500px;
  height: 500px;
  top: -120px;
  right: -180px;
  box-shadow: inset 0 0 80px rgba(212, 168, 67, 0.03);
}

.hero::after {
  width: 350px;
  height: 350px;
  bottom: -60px;
  left: -100px;
  border-color: rgba(155, 89, 182, 0.08);
  box-shadow: inset 0 0 60px rgba(155, 89, 182, 0.03);
}

/* Star decorations */
.hero-stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-stars span {
  position: absolute;
  width: 3px;
  height: 3px;
  background: rgba(212, 168, 67, 0.25);
  border-radius: 50%;
  animation: twinkle 3s ease-in-out infinite alternate;
}

@keyframes twinkle {
  0% { opacity: 0.2; }
  100% { opacity: 1; }
}

.hero-badge {
  display: inline-block;
  background: rgba(212, 168, 67, 0.1);
  border: 1px solid rgba(212, 168, 67, 0.25);
  color: #d4a843;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  max-width: 720px;
  color: #ffffff;
}

.hero h1 .gradient-text {
  background: linear-gradient(135deg, #d4a843, #e8c570);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 1.15rem;
  color: #8888aa;
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #d4a843, #e8c570);
  color: #0a0a1a;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 168, 67, 0.25);
  color: #0a0a1a;
}

.btn-ghost {
  background: transparent;
  border: 1px solid #222244;
  color: #e0e0e0;
}

.btn-ghost:hover {
  border-color: #d4a843;
  color: #d4a843;
  background: rgba(212, 168, 67, 0.05);
}

.btn-sm {
  padding: 7px 16px;
  font-size: 0.8rem;
  border-radius: 6px;
}

.btn-danger {
  background: #e74c3c;
  color: #fff;
}

.btn-danger:hover {
  background: #c0392b;
}

.btn-secondary {
  background: rgba(155, 89, 182, 0.15);
  border: 1px solid rgba(155, 89, 182, 0.3);
  color: #c39bd3;
}

.btn-secondary:hover {
  background: rgba(155, 89, 182, 0.25);
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 40px 24px;
}

.stats-bar .stat-item {
  background: rgba(17, 17, 37, 0.8);
  border: 1px solid #222244;
  border-radius: 12px;
  padding: 20px 32px;
  text-align: center;
  min-width: 160px;
  backdrop-filter: blur(8px);
}

.stats-bar .stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: #d4a843;
  display: block;
}

.stats-bar .stat-label {
  font-size: 0.8rem;
  color: #8888aa;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 4px;
}

/* ============================================
   SECTION COMMON
   ============================================ */
.section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
}

.section-header p {
  color: #8888aa;
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ============================================
   FEATURE CARDS
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: #111125;
  border: 1px solid #222244;
  border-radius: 14px;
  padding: 32px 28px;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 168, 67, 0.3);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3);
}

.feature-card .icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(212, 168, 67, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
  color: #d4a843;
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.92rem;
  color: #8888aa;
  line-height: 1.6;
}

/* ============================================
   FESTIVALS SECTION (Featured)
   ============================================ */
.festivals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.festival-card {
  background: #111125;
  border: 1px solid #222244;
  border-radius: 14px;
  padding: 28px 24px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.festival-card:hover {
  border-color: rgba(212, 168, 67, 0.25);
  box-shadow: 0 0 30px rgba(212, 168, 67, 0.06), 0 8px 30px rgba(0, 0, 0, 0.25);
}

.festival-card .festival-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(155, 89, 182, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.festival-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.festival-card .festival-meta {
  display: flex;
  gap: 12px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.festival-card .festival-meta span {
  font-size: 0.78rem;
  color: #8888aa;
}

.festival-card p {
  font-size: 0.88rem;
  color: #8888aa;
  line-height: 1.6;
}

/* ============================================
   GUIDES SECTION
   ============================================ */
.guides-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.guide-card {
  background: #111125;
  border: 1px solid #222244;
  border-radius: 14px;
  padding: 28px 24px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.guide-card:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 168, 67, 0.2);
}

.guide-card .tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 14px;
  width: fit-content;
}

.tag-guide {
  background: rgba(52, 152, 219, 0.15);
  color: #3498db;
}

.tag-tips {
  background: rgba(46, 204, 113, 0.15);
  color: #2ecc71;
}

.tag-strategy {
  background: rgba(212, 168, 67, 0.15);
  color: #d4a843;
}

.tag-news {
  background: rgba(155, 89, 182, 0.15);
  color: #9b59b6;
}

.guide-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.guide-card p {
  font-size: 0.88rem;
  color: #8888aa;
  line-height: 1.6;
  flex: 1;
}

.guide-card .read-more {
  margin-top: 14px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #d4a843;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: #111125;
  border: 1px solid #222244;
  border-radius: 14px;
  padding: 28px 24px;
}

.testimonial-card .stars {
  color: #d4a843;
  font-size: 0.95rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testimonial-card blockquote {
  font-size: 0.95rem;
  color: #c0c0d0;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 18px;
  position: relative;
  padding-left: 16px;
  border-left: 2px solid rgba(212, 168, 67, 0.3);
}

.testimonial-card .author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card .author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d4a843, #9b59b6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: #0a0a1a;
}

.testimonial-card .author-info .name {
  font-weight: 600;
  font-size: 0.9rem;
  color: #ffffff;
}

.testimonial-card .author-info .role {
  font-size: 0.78rem;
  color: #8888aa;
}

/* ============================================
   NEWSLETTER / DEADLINES SECTION
   ============================================ */
.newsletter-section {
  background: #111125;
  border-top: 1px solid #222244;
  border-bottom: 1px solid #222244;
  padding: 60px 0;
}

.newsletter-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.newsletter-form h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.newsletter-form > p {
  color: #8888aa;
  font-size: 0.92rem;
  margin-bottom: 20px;
}

.newsletter-form .input-row {
  display: flex;
  gap: 12px;
}

.newsletter-form input[type="email"] {
  flex: 1;
  background: #0a0a1a;
  border: 1px solid #222244;
  border-radius: 8px;
  padding: 12px 16px;
  color: #e0e0e0;
  outline: none;
  transition: border-color 0.25s ease;
}

.newsletter-form input[type="email"]:focus {
  border-color: #d4a843;
}

.newsletter-form input[type="email"]::placeholder {
  color: #555577;
}

.deadlines-list h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}

.deadline-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(34, 34, 68, 0.5);
}

.deadline-item:last-child {
  border-bottom: none;
}

.deadline-item .deadline-icon {
  font-size: 1.2rem;
  width: 36px;
  text-align: center;
  flex-shrink: 0;
}

.deadline-item .deadline-info {
  flex: 1;
}

.deadline-item .deadline-info .festival-name {
  font-weight: 600;
  font-size: 0.92rem;
  color: #e0e0e0;
}

.deadline-item .deadline-info .deadline-detail {
  font-size: 0.78rem;
  color: #8888aa;
}

.deadline-item .deadline-date {
  background: rgba(212, 168, 67, 0.1);
  border: 1px solid rgba(212, 168, 67, 0.2);
  color: #d4a843;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #080816;
  border-top: 1px solid #222244;
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-brand p {
  color: #8888aa;
  font-size: 0.88rem;
  margin-top: 12px;
  line-height: 1.6;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #e0e0e0;
  margin-bottom: 16px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #8888aa;
  font-size: 0.88rem;
  transition: color 0.25s ease;
}

.footer-col ul li a:hover {
  color: #d4a843;
}

.footer-newsletter {
  margin-top: 16px;
}

.footer-newsletter input {
  width: 100%;
  background: #0a0a1a;
  border: 1px solid #222244;
  border-radius: 6px;
  padding: 10px 14px;
  color: #e0e0e0;
  margin-bottom: 8px;
  outline: none;
}

.footer-newsletter input:focus {
  border-color: #d4a843;
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.social-icons a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(34, 34, 68, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8888aa;
  font-size: 0.95rem;
  transition: all 0.25s ease;
}

.social-icons a:hover {
  background: rgba(212, 168, 67, 0.15);
  color: #d4a843;
}

.footer-bottom {
  border-top: 1px solid #222244;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: #555577;
}

.footer-bottom a {
  color: #555577;
  margin-left: 20px;
}

.footer-bottom a:hover {
  color: #8888aa;
}

/* ============================================
   FESTIVAL EXPLORER PAGE
   ============================================ */
.page-header {
  padding-top: 100px;
  padding-bottom: 40px;
  text-align: center;
}

.page-header h1 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
}

.page-header p {
  color: #8888aa;
  font-size: 1rem;
}

/* Filter Bar */
.filter-bar {
  background: #111125;
  border: 1px solid #222244;
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 32px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.filter-bar .search-input {
  flex: 1;
  min-width: 200px;
  background: #0a0a1a;
  border: 1px solid #222244;
  border-radius: 8px;
  padding: 10px 14px;
  color: #e0e0e0;
  outline: none;
  transition: border-color 0.25s ease;
}

.filter-bar .search-input:focus {
  border-color: #d4a843;
}

.filter-bar .search-input::placeholder {
  color: #555577;
}

.filter-bar select {
  background: #0a0a1a;
  border: 1px solid #222244;
  border-radius: 8px;
  padding: 10px 14px;
  color: #e0e0e0;
  outline: none;
  cursor: pointer;
  min-width: 140px;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%238888aa' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
  transition: border-color 0.25s ease;
}

.filter-bar select:focus {
  border-color: #d4a843;
}

.filter-bar .toggle-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #8888aa;
}

.toggle-switch {
  width: 40px;
  height: 22px;
  background: #222244;
  border-radius: 11px;
  position: relative;
  cursor: pointer;
  transition: background 0.25s ease;
}

.toggle-switch.active {
  background: #d4a843;
}

.toggle-switch::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  background: #e0e0e0;
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: transform 0.25s ease;
}

.toggle-switch.active::after {
  transform: translateX(18px);
}

/* Festival Result Cards */
.festival-results {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.festival-result-card {
  background: #111125;
  border: 1px solid #222244;
  border-radius: 14px;
  padding: 24px;
  transition: all 0.3s ease;
}

.festival-result-card:hover {
  border-color: rgba(212, 168, 67, 0.2);
}

.festival-result-card .card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
}

.festival-result-card .card-header h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
}

.festival-result-card .country-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(34, 34, 68, 0.5);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.78rem;
  color: #8888aa;
}

.festival-result-card .deadline-countdown {
  font-size: 0.82rem;
  color: #e74c3c;
  font-weight: 600;
  margin-bottom: 10px;
}

.festival-result-card .deadline-countdown.soon {
  color: #f39c12;
}

.festival-result-card .deadline-countdown.plenty {
  color: #2ecc71;
}

.festival-result-card .card-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
  font-size: 0.82rem;
  color: #8888aa;
}

.festival-result-card .categories {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.category-badge {
  background: rgba(155, 89, 182, 0.12);
  border: 1px solid rgba(155, 89, 182, 0.2);
  color: #c39bd3;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.acceptance-bar {
  height: 6px;
  background: #222244;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 6px;
}

.acceptance-bar .fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(135deg, #d4a843, #e8c570);
  transition: width 0.5s ease;
}

.acceptance-label {
  font-size: 0.75rem;
  color: #8888aa;
  margin-bottom: 16px;
}

.festival-result-card .card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.festival-result-card .fee {
  font-size: 0.92rem;
  font-weight: 700;
  color: #d4a843;
}

/* ============================================
   SUBMISSIONS PAGE
   ============================================ */
.submissions-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.submission-card {
  background: #111125;
  border: 1px solid #222244;
  border-radius: 12px;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: border-color 0.25s ease;
}

.submission-card:hover {
  border-color: rgba(212, 168, 67, 0.2);
}

.submission-card .submission-info {
  flex: 1;
}

.submission-card .submission-info h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.submission-card .submission-info .sub-meta {
  font-size: 0.82rem;
  color: #8888aa;
}

/* Status Badges */
.badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-draft {
  background: rgba(136, 136, 170, 0.15);
  color: #8888aa;
}

.badge-submitted {
  background: rgba(52, 152, 219, 0.15);
  color: #3498db;
}

.badge-accepted {
  background: rgba(46, 204, 113, 0.15);
  color: #2ecc71;
}

.badge-rejected {
  background: rgba(231, 76, 60, 0.15);
  color: #e74c3c;
}

.badge-waitlisted {
  background: rgba(243, 156, 18, 0.15);
  color: #f39c12;
}

.badge-gold {
  background: rgba(212, 168, 67, 0.15);
  color: #d4a843;
}

.badge-purple {
  background: rgba(155, 89, 182, 0.15);
  color: #9b59b6;
}

/* Submission Form */
.submission-form {
  background: #111125;
  border: 1px solid #222244;
  border-radius: 14px;
  padding: 32px;
}

.submission-form h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 24px;
}

/* ============================================
   AI WRITER PAGE
   ============================================ */
.ai-writer-section {
  max-width: 800px;
  margin: 0 auto;
}

.ai-form-section {
  background: #111125;
  border: 1px solid #222244;
  border-radius: 14px;
  padding: 28px;
  margin-bottom: 24px;
}

.ai-form-section h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}

.ai-output {
  background: #141428;
  border: 1px solid #222244;
  border-radius: 14px;
  padding: 28px;
  min-height: 200px;
  position: relative;
}

.ai-output .output-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #e0e0e0;
  white-space: pre-wrap;
}

.ai-output .typing-cursor {
  display: inline-block;
  width: 2px;
  height: 1.1em;
  background: #d4a843;
  vertical-align: text-bottom;
  animation: blink 0.8s step-end infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}

.ai-output .output-placeholder {
  color: #555577;
  font-style: italic;
  font-size: 0.92rem;
}

.generate-btn {
  background: linear-gradient(135deg, #d4a843, #e8c570);
  color: #0a0a1a;
  border: none;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.generate-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 168, 67, 0.25);
}

.generate-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.generate-btn .spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(10, 10, 26, 0.3);
  border-top-color: #0a0a1a;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ============================================
   DASHBOARD
   ============================================ */
.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.dash-stat-card {
  background: #111125;
  border: 1px solid #222244;
  border-radius: 12px;
  padding: 22px 20px;
}

.dash-stat-card .stat-value {
  font-size: 1.8rem;
  font-weight: 800;
  color: #d4a843;
}

.dash-stat-card .stat-label {
  font-size: 0.82rem;
  color: #8888aa;
  margin-top: 4px;
}

.dash-stat-card .stat-change {
  font-size: 0.78rem;
  margin-top: 6px;
}

.stat-change.up { color: #2ecc71; }
.stat-change.down { color: #e74c3c; }

/* Dashboard Tables */
.dash-table-wrap {
  background: #111125;
  border: 1px solid #222244;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 24px;
}

.dash-table-wrap .table-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid #222244;
}

.dash-table-wrap .table-header h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th {
  text-align: left;
  padding: 12px 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #8888aa;
  border-bottom: 1px solid #222244;
  background: rgba(10, 10, 26, 0.5);
}

td {
  padding: 14px 20px;
  font-size: 0.88rem;
  color: #e0e0e0;
  border-bottom: 1px solid rgba(34, 34, 68, 0.4);
}

tr:nth-child(even) td {
  background: rgba(20, 20, 40, 0.3);
}

tr:hover td {
  background: rgba(212, 168, 67, 0.04);
}

/* Progress Bars */
.progress-bar {
  height: 8px;
  background: #222244;
  border-radius: 4px;
  overflow: hidden;
  width: 100px;
}

.progress-bar .fill {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(135deg, #d4a843, #e8c570);
  transition: width 0.5s ease;
}

.progress-bar .fill.success { background: #2ecc71; }
.progress-bar .fill.warning { background: #f39c12; }
.progress-bar .fill.danger { background: #e74c3c; }

/* ============================================
   ADMIN PANEL
   ============================================ */
.admin-layout {
  display: flex;
  min-height: calc(100vh - 64px);
  margin-top: 64px;
}

.admin-sidebar {
  width: 240px;
  background: #0d0d20;
  border-right: 1px solid #222244;
  padding: 20px 0;
  flex-shrink: 0;
}

.admin-sidebar .sidebar-nav {
  display: flex;
  flex-direction: column;
}

.admin-sidebar .sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  font-size: 0.88rem;
  color: #8888aa;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
}

.admin-sidebar .sidebar-nav a:hover,
.admin-sidebar .sidebar-nav a.active {
  background: rgba(212, 168, 67, 0.06);
  color: #e0e0e0;
  border-left-color: #d4a843;
}

.admin-content {
  flex: 1;
  padding: 32px;
  overflow-y: auto;
}

/* Admin Tabs (top tab style) */
.admin-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid #222244;
  margin-bottom: 28px;
}

.admin-tab {
  padding: 12px 22px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #8888aa;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.25s ease;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
}

.admin-tab:hover {
  color: #e0e0e0;
}

.admin-tab.active {
  color: #d4a843;
  border-bottom-color: #d4a843;
}

.admin-panel {
  display: none;
}

.admin-panel.active {
  display: block;
}

/* Admin Tables */
.admin-table {
  width: 100%;
  border-collapse: collapse;
  background: #111125;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #222244;
}

.admin-table th {
  background: rgba(10, 10, 26, 0.7);
  padding: 13px 18px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #8888aa;
  border-bottom: 1px solid #222244;
  text-align: left;
}

.admin-table td {
  padding: 13px 18px;
  font-size: 0.86rem;
  color: #e0e0e0;
  border-bottom: 1px solid rgba(34, 34, 68, 0.4);
}

.admin-table tr:hover td {
  background: rgba(212, 168, 67, 0.04);
}

.admin-table .actions {
  display: flex;
  gap: 8px;
}

.admin-table .actions button {
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 0.75rem;
  cursor: pointer;
  border: none;
  font-weight: 600;
  transition: opacity 0.2s;
}

.admin-table .actions .btn-edit {
  background: rgba(52, 152, 219, 0.15);
  color: #3498db;
}

.admin-table .actions .btn-delete {
  background: rgba(231, 76, 60, 0.15);
  color: #e74c3c;
}

.admin-table .actions button:hover {
  opacity: 0.8;
}

/* Admin Stats Cards */
.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}

.admin-stat-card {
  background: #111125;
  border: 1px solid #222244;
  border-radius: 10px;
  padding: 20px;
}

.admin-stat-card .stat-icon {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.admin-stat-card .stat-value {
  font-size: 1.6rem;
  font-weight: 800;
  color: #d4a843;
}

.admin-stat-card .stat-label {
  font-size: 0.78rem;
  color: #8888aa;
  margin-top: 2px;
}

/* Admin Forms */
.admin-form {
  background: #111125;
  border: 1px solid #222244;
  border-radius: 12px;
  padding: 28px;
}

.admin-form h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

/* ============================================
   MODALS
   ============================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: #141428;
  border: 1px solid #222244;
  border-radius: 16px;
  width: 100%;
  max-width: 480px;
  padding: 36px;
  position: relative;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.3s ease;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-overlay.active .modal {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: #8888aa;
  font-size: 1.3rem;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.modal-close:hover {
  background: rgba(231, 76, 60, 0.15);
  color: #e74c3c;
}

.modal h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.modal p.modal-subtitle {
  font-size: 0.9rem;
  color: #8888aa;
  margin-bottom: 24px;
}

.modal .modal-footer {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 24px;
}

/* Login/Register Forms in Modal */
.auth-form .form-group {
  margin-bottom: 18px;
}

.auth-form .divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 20px 0;
  color: #555577;
  font-size: 0.82rem;
}

.auth-form .divider::before,
.auth-form .divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #222244;
}

.auth-form .social-login {
  display: flex;
  gap: 12px;
}

.auth-form .social-login button {
  flex: 1;
  padding: 10px;
  border: 1px solid #222244;
  border-radius: 8px;
  background: #0a0a1a;
  color: #e0e0e0;
  cursor: pointer;
  font-size: 0.88rem;
  transition: border-color 0.25s ease;
}

.auth-form .social-login button:hover {
  border-color: #d4a843;
}

.auth-form .auth-switch {
  text-align: center;
  margin-top: 18px;
  font-size: 0.85rem;
  color: #8888aa;
}

.auth-form .auth-switch a {
  color: #d4a843;
  font-weight: 600;
}

/* ============================================
   FORM ELEMENTS
   ============================================ */
.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: #c0c0d0;
  margin-bottom: 6px;
}

.form-group label .required {
  color: #e74c3c;
  margin-left: 2px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-control {
  width: 100%;
  background: #0a0a1a;
  border: 1px solid #222244;
  border-radius: 8px;
  padding: 11px 14px;
  color: #e0e0e0;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.form-control:focus {
  border-color: #d4a843;
  box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.1);
}

.form-control::placeholder {
  color: #555577;
}

textarea.form-control {
  resize: vertical;
  min-height: 100px;
  line-height: 1.6;
}

select.form-control {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%238888aa' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}

.form-hint {
  font-size: 0.78rem;
  color: #555577;
  margin-top: 4px;
}

.form-error {
  font-size: 0.78rem;
  color: #e74c3c;
  margin-top: 4px;
}

/* Checkbox / Radio */
.form-check {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.form-check input[type="checkbox"],
.form-check input[type="radio"] {
  width: 16px;
  height: 16px;
  accent-color: #d4a843;
  cursor: pointer;
}

.form-check label {
  font-size: 0.88rem;
  color: #c0c0d0;
  cursor: pointer;
  margin-bottom: 0;
}

/* ============================================
   ALERTS
   ============================================ */
.alert {
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 0.88rem;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid;
}

.alert-success {
  background: rgba(46, 204, 113, 0.1);
  border-color: rgba(46, 204, 113, 0.25);
  color: #2ecc71;
}

.alert-error {
  background: rgba(231, 76, 60, 0.1);
  border-color: rgba(231, 76, 60, 0.25);
  color: #e74c3c;
}

.alert-warning {
  background: rgba(243, 156, 18, 0.1);
  border-color: rgba(243, 156, 18, 0.25);
  color: #f39c12;
}

.alert-info {
  background: rgba(52, 152, 219, 0.1);
  border-color: rgba(52, 152, 219, 0.25);
  color: #3498db;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.hidden {
  display: none !important;
}

.text-gold {
  color: #d4a843;
}

.text-muted {
  color: #8888aa;
}

.text-white {
  color: #ffffff;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-sm {
  font-size: 0.82rem;
}

.text-xs {
  font-size: 0.72rem;
}

.fw-bold {
  font-weight: 700;
}

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }

.w-full { width: 100%; }

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #0a0a1a;
}

::-webkit-scrollbar-thumb {
  background: #222244;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #333355;
}

/* Selection */
::selection {
  background: rgba(212, 168, 67, 0.3);
  color: #ffffff;
}

/* ============================================
   RESPONSIVE - 1024px
   ============================================ */
@media (max-width: 1024px) {
  .features-grid,
  .festivals-grid,
  .guides-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dashboard-stats,
  .admin-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .admin-sidebar {
    width: 200px;
  }
}

/* ============================================
   RESPONSIVE - 768px
   ============================================ */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  .navbar-logo {
    font-size: 1.15rem;
    min-width: max-content;
  }

  .navbar-nav {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 26, 0.97);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 20px 24px;
    gap: 16px;
    border-bottom: 1px solid #222244;
  }

  .navbar-nav.open {
    display: flex;
  }

  .navbar-actions {
    display: none;
  }

  .navbar-actions.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 26, 0.97);
    padding: 0 24px 20px;
  }

  .hamburger {
    display: flex;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

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

  .features-grid,
  .festivals-grid,
  .guides-grid,
  .testimonials-grid,
  .festival-results {
    grid-template-columns: 1fr;
  }

  .newsletter-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .stats-bar {
    flex-direction: column;
    align-items: center;
  }

  .stats-bar .stat-item {
    width: 100%;
    max-width: 320px;
  }

  .dashboard-stats,
  .admin-stats {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .filter-bar {
    flex-direction: column;
  }

  .filter-bar select,
  .filter-bar .search-input {
    width: 100%;
  }

  .admin-layout {
    flex-direction: column;
  }

  .admin-sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #222244;
    padding: 12px 0;
  }

  .admin-sidebar .sidebar-nav {
    flex-direction: row;
    overflow-x: auto;
    padding: 0 16px;
    gap: 4px;
  }

  .admin-sidebar .sidebar-nav a {
    border-left: none;
    border-bottom: 2px solid transparent;
    padding: 10px 16px;
    white-space: nowrap;
    font-size: 0.82rem;
  }

  .admin-sidebar .sidebar-nav a.active {
    border-left-color: transparent;
    border-bottom-color: #d4a843;
  }

  .admin-content {
    padding: 20px;
  }

  .admin-tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .admin-tab {
    white-space: nowrap;
    padding: 10px 16px;
    font-size: 0.8rem;
  }

  .submission-card {
    flex-direction: column;
    align-items: flex-start;
  }

  /* Table horizontal scroll */
  .dash-table-wrap {
    overflow-x: auto;
  }

  table {
    min-width: 600px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .hero-cta .btn {
    width: 100%;
    max-width: 280px;
  }

  .modal {
    padding: 28px 24px;
    margin: 16px;
  }
}

/* ============================================
   RESPONSIVE - 480px
   ============================================ */
@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .navbar-logo {
    font-size: 1rem;
    min-width: max-content;
  }

  .container {
    padding: 0 16px;
  }

  .hero {
    padding: 40px 16px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 0.92rem;
  }

  .section {
    padding: 52px 0;
  }

  .section-header h2 {
    font-size: 1.6rem;
  }

  .feature-card,
  .festival-card,
  .guide-card,
  .testimonial-card {
    padding: 22px 18px;
  }

  .page-header {
    padding-top: 84px;
    padding-bottom: 28px;
  }

  .page-header h1 {
    font-size: 1.7rem;
  }

  .festival-result-card {
    padding: 18px;
  }

  .festival-result-card .card-header {
    flex-direction: column;
    gap: 8px;
  }

  .submission-form {
    padding: 22px 18px;
  }

  .ai-form-section,
  .ai-output {
    padding: 20px;
  }

  .newsletter-form .input-row {
    flex-direction: column;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .footer-bottom a {
    margin-left: 0;
    margin: 0 8px;
  }

  .modal {
    padding: 22px 18px;
    border-radius: 12px;
  }

  .admin-stat-card .stat-value,
  .dash-stat-card .stat-value {
    font-size: 1.4rem;
  }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
  .navbar,
  .footer,
  .hamburger,
  .modal-overlay {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
  }

  .hero {
    min-height: auto;
    margin-top: 0;
  }
}
