/* =========================================
   GamerSkopi – Premium Gaming Cafe CSS
   ========================================= */

:root {
  --purple: #7c3aed;
  --purple-light: #a855f7;
  --cyan: #06b6d4;
  --pink: #ec4899;
  --dark: #0a0a1a;
  --dark-card: #111127;
  --dark-border: #1e1e3f;
  --text: #e2e8f0;
  --text-muted: #94a3b8;
  --white: #ffffff;
  --gradient: linear-gradient(135deg, #7c3aed, #06b6d4);
  --gradient-hot: linear-gradient(135deg, #ec4899, #7c3aed);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Rajdhani', sans-serif;
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
  font-size: 1.05rem;
}

h1, h2, h3, h4 { font-family: 'Orbitron', sans-serif; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section-tag {
  display: inline-block;
  background: var(--gradient);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 1rem;
  font-family: 'Orbitron', sans-serif;
}
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { font-size: 2.2rem; margin-bottom: 0.75rem; }
.section-header p { color: var(--text-muted); max-width: 600px; margin: 0 auto; }
.accent { color: var(--cyan); }
.neon-text {
  color: var(--cyan);
  text-shadow: 0 0 20px var(--cyan), 0 0 40px var(--cyan);
}
.text-center { text-align: center; }

/* Buttons */
.btn-primary {
  display: inline-block;
  background: var(--gradient);
  color: #fff;
  padding: 0.8rem 2rem;
  border-radius: 8px;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(124,58,237,0.5); }
.btn-outline {
  display: inline-block;
  border: 2px solid var(--cyan);
  color: var(--cyan);
  padding: 0.75rem 1.8rem;
  border-radius: 8px;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-outline:hover { background: var(--cyan); color: var(--dark); }
.btn-large { padding: 1rem 2.5rem; font-size: 1rem; }

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: background 0.3s, box-shadow 0.3s;
}
.navbar.scrolled {
  background: rgba(10,10,26,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(124,58,237,0.3);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}
.logo-icon { font-size: 1.6rem; color: var(--cyan); }
.logo-text {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 2px;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--cyan); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s;
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,26,0.88) 0%, rgba(124,58,237,0.3) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  padding-top: 100px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(6,182,212,0.15);
  border: 1px solid var(--cyan);
  color: var(--cyan);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.hero-content h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.2rem;
  color: #fff;
}
.hero-sub {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 600px;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--cyan);
}
.stat-label { font-size: 0.8rem; color: var(--text-muted); letter-spacing: 1px; }

/* FEATURES */
.features { padding: 5rem 0; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.feature-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 16px;
  padding: 2rem;
  transition: transform 0.3s, border-color 0.3s;
}
.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--purple);
}
.feat-icon {
  width: 56px; height: 56px;
  border-radius: 12px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 1.2rem;
}
.feature-card h3 { font-size: 1rem; margin-bottom: 0.7rem; color: #fff; }
.feature-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; }

/* ABOUT STRIP */
.about-strip { padding: 5rem 0; background: var(--dark-card); }
.about-flex { display: flex; gap: 4rem; align-items: center; }
.about-img-wrap {
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid var(--dark-border);
}
.about-img-wrap img { width: 100%; height: 400px; object-fit: cover; display: block; }
.about-text { flex: 1; }
.about-text h2 { font-size: 2rem; margin-bottom: 1.2rem; }
.about-text p { color: var(--text-muted); margin-bottom: 1rem; line-height: 1.7; }
.about-text .btn-primary { margin-top: 1rem; }

/* PRICING */
.pricing-preview { padding: 5rem 0; }
.plans-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.plan-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  position: relative;
  transition: transform 0.3s;
}
.plan-card:hover { transform: translateY(-6px); }
.plan-card.featured {
  border-color: var(--purple);
  background: linear-gradient(135deg, rgba(124,58,237,0.1), rgba(6,182,212,0.05));
  box-shadow: 0 0 40px rgba(124,58,237,0.2);
}
.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%; transform: translateX(-50%);
  background: var(--gradient);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  font-family: 'Orbitron', sans-serif;
}
.plan-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--cyan);
}
.plan-card h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #fff;
  letter-spacing: 2px;
}
.plan-price { display: flex; align-items: flex-end; justify-content: center; gap: 4px; margin-bottom: 1.5rem; }
.currency { font-size: 1.2rem; color: var(--text-muted); font-family: 'Orbitron', sans-serif; align-self: flex-start; margin-top: 8px; }
.amount { font-family: 'Orbitron', sans-serif; font-size: 3.5rem; font-weight: 900; color: var(--purple-light); line-height: 1; }
.per { font-size: 1rem; color: var(--text-muted); margin-bottom: 8px; }
.plan-features { list-style: none; text-align: left; margin-bottom: 2rem; }
.plan-features li { padding: 0.4rem 0; display: flex; align-items: center; gap: 0.6rem; color: var(--text-muted); font-size: 0.95rem; }
.plan-features li i { color: var(--cyan); }
.btn-plan {
  display: block;
  background: var(--gradient);
  color: #fff;
  padding: 0.75rem;
  border-radius: 8px;
  text-decoration: none;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  transition: opacity 0.2s, transform 0.2s;
}
.btn-plan:hover { opacity: 0.85; transform: scale(1.02); }

/* GALLERY STRIP */
.gallery-strip { padding: 5rem 0; background: var(--dark-card); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
}
.gal-item { border-radius: 12px; overflow: hidden; }
.gal-item.large { grid-column: 1 / 3; }
.gal-item img { width: 100%; height: 220px; object-fit: cover; display: block; transition: transform 0.4s; }
.gal-item.large img { height: 320px; }
.gal-item:hover img { transform: scale(1.05); }

/* EVENTS */
.events-section { padding: 5rem 0; }
.events-grid { display: flex; flex-direction: column; gap: 1.2rem; }
.event-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 16px;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  transition: border-color 0.3s;
}
.event-card:hover { border-color: var(--purple); }
.event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--gradient);
  border-radius: 12px;
  padding: 0.8rem 1.2rem;
  min-width: 70px;
}
.event-date .day { font-family: 'Orbitron', sans-serif; font-size: 2rem; font-weight: 900; color: #fff; line-height: 1; }
.event-date .month { font-size: 0.75rem; font-weight: 700; color: rgba(255,255,255,0.8); letter-spacing: 1px; text-transform: uppercase; }
.event-info h4 { font-size: 1rem; color: #fff; margin-bottom: 0.3rem; }
.event-info p { color: var(--text-muted); font-size: 0.9rem; }
.event-tag {
  display: inline-block;
  background: rgba(124,58,237,0.2);
  border: 1px solid var(--purple);
  color: var(--purple-light);
  font-size: 0.75rem;
  padding: 2px 10px;
  border-radius: 20px;
  margin-top: 0.5rem;
}

/* CTA */
.cta-section { position: relative; padding: 6rem 0; overflow: hidden; }
.cta-bg { position: absolute; inset: 0; }
.cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-overlay { position: absolute; inset: 0; background: rgba(10,10,26,0.82); }
.cta-content { position: relative; z-index: 2; text-align: center; }
.cta-content h2 { font-size: 2.5rem; margin-bottom: 1rem; color: #fff; }
.cta-content p { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 2rem; max-width: 600px; margin-left: auto; margin-right: auto; }

/* FOOTER */
.footer { padding: 4rem 0 0; background: #070714; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 2fr; gap: 3rem; }
.footer-brand .logo-text { display: block; font-size: 1.3rem; margin-bottom: 1rem; }
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; margin-bottom: 1.5rem; }
.social-links { display: flex; gap: 1rem; }
.social-links a {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.2s;
}
.social-links a:hover { background: var(--gradient); border-color: transparent; color: #fff; }
.footer-links h4, .footer-contact h4 {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.9rem;
  color: #fff;
  margin-bottom: 1.2rem;
  letter-spacing: 1px;
}
.footer-links ul { list-style: none; }
.footer-links ul li { margin-bottom: 0.7rem; }
.footer-links ul a { color: var(--text-muted); text-decoration: none; font-size: 0.95rem; transition: color 0.2s; }
.footer-links ul a:hover { color: var(--cyan); }
.footer-contact p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 0.7rem; display: flex; align-items: flex-start; gap: 0.7rem; line-height: 1.5; }
.footer-contact p i { color: var(--cyan); margin-top: 3px; width: 16px; }
.footer-bottom {
  margin-top: 3rem;
  border-top: 1px solid var(--dark-border);
  padding: 1.5rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  z-index: 9999;
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
  max-width: 600px;
  width: calc(100% - 3rem);
}
.cookie-banner p { color: var(--text-muted); font-size: 0.9rem; }
.cookie-banner a { color: var(--cyan); }
.btn-cookie {
  flex-shrink: 0;
  background: var(--gradient);
  color: #fff;
  border: none;
  padding: 0.5rem 1.2rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.8rem;
}

/* PAGE HERO (inner pages) */
.page-hero {
  padding: 140px 0 60px;
  text-align: center;
  background: linear-gradient(135deg, rgba(124,58,237,0.15), rgba(6,182,212,0.05));
  border-bottom: 1px solid var(--dark-border);
}
.page-hero h1 { font-size: 2.8rem; margin-bottom: 1rem; }
.page-hero p { color: var(--text-muted); max-width: 600px; margin: 0 auto; font-size: 1.1rem; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .plans-grid { grid-template-columns: 1fr; max-width: 450px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(10,10,26,0.98);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--dark-border);
  }
  .nav-links.open { display: flex; }
  .navbar { background: rgba(10,10,26,0.95); }
  .features-grid { grid-template-columns: 1fr; }
  .about-flex { flex-direction: column; }
  .about-img-wrap img { height: 280px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gal-item.large { grid-column: 1 / -1; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-stats { gap: 1.5rem; }
  .event-card { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .section-header h2 { font-size: 1.7rem; }
  .hero-content h1 { font-size: 2.2rem; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .cta-content h2 { font-size: 1.8rem; }
}
