/* ============================= */
/* CLASINOVA ULTRA PREMIUM THEME */
/* ============================= */

:root {
  --dark: #111418;
  --steel: #2B2F36;
  --light: #F7F8FA;
  --silver: #C0C4CC;
  --gold: #C6A75E;
  --text: #1C1F26;
  --max-width: 1280px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  background: white;
  line-height: 1.7;
}

.container {
  max-width: var(--max-width);
  margin: auto;
  padding: 0 20px;
}

/* HEADER */

header {
  background: var(--dark);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  color: white;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1px;
}

nav ul {
  display: flex;
  gap: 30px;
  list-style: none;
}

nav a {
  color: var(--silver);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1px;
  transition: 0.3s;
}

nav a:hover {
  color: white;
}

/* HERO */

.hero {
  position: relative;
  height: 90vh;
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: 1.2s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.hero-overlay {
  background: linear-gradient(to right, rgba(0,0,0,0.85), rgba(0,0,0,0.4));
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-content {
  color: white;
  max-width: 600px;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
}

.btn {
  background: var(--gold);
  color: black;
  padding: 14px 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn:hover {
  background: white;
}

/* SECTION */

section {
  padding: 90px 0;
}

.section-title {
  font-size: 32px;
  margin-bottom: 20px;
  text-align: center;
}

.section-sub {
  text-align: center;
  max-width: 800px;
  margin: auto;
  margin-bottom: 60px;
}

/* CATEGORY GRID */

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.card {
  border: 1px solid #eee;
  padding: 30px;
  transition: 0.4s;
  background: white;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

/* DARK SECTION */

.dark-section {
  background: var(--dark);
  color: white;
}

/* COUNTERS */

.counter {
  text-align: center;
}

.counter h3 {
  font-size: 40px;
  color: var(--gold);
}

/* TESTIMONIAL */

.testimonial {
  text-align: center;
  max-width: 800px;
  margin: auto;
  display: none;
}

.testimonial.active {
  display: block;
}

/* FOOTER */

footer {
  background: var(--dark);
  color: var(--silver);
  padding: 60px 0;
}

footer a {
  color: var(--silver);
  text-decoration: none;
}

footer a:hover {
  color: white;
}
.menu { display:flex; gap:30px; list-style:none; }
.dropdown { position:relative; }
.mega-menu {
  position:absolute;
  background:white;
  padding:20px;
  display:none;
  list-style:none;
  box-shadow:0 10px 30px rgba(0,0,0,0.1);
}
.dropdown:hover .mega-menu { display:block; }
.mega-menu li { margin-bottom:10px; }
section {
  padding: 80px 0;
}