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

/* BODY */
body {
  font-family: "DM Sans", sans-serif;
  background: linear-gradient(135deg, #000, #1a1a1a);
  color: #fff;
  padding-top: 70px;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 70px;
  background: #ffc107;
  display: flex;
  align-items: center;
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
}

.logo {
  font-family: "Syne", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  text-decoration: none;
  color: #fff;
}

.logo span {
  color: #000;
}

.nav-links {
  display: flex;
  gap: 8px;
  flex: 1;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  padding: 8px 14px;
  border-radius: 8px;
}

.nav-links a.active {
  background: rgba(0, 0, 0, 0.2);
}

.nav-actions {
  display: flex;
  gap: 10px;
}

.btn-outline {
  border: 2px solid #fff;
  padding: 8px 18px;
  border-radius: 8px;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
}

.btn-solid {
  background: #000;
  padding: 8px 18px;
  border-radius: 8px;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
}

/* HERO */
.hero {
  text-align: center;
  padding: 100px 20px 60px;
}

.hero h1 {
  font-family: "Syne", sans-serif;
  font-size: 2.8rem;
  margin-bottom: 16px;
}

.hero p {
  opacity: 0.8;
  margin-bottom: 30px;
}

.btn-primary {
  background: #ffc107;
  color: #000;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
}

/* COURSES */
.courses {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px 100px;
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.course-card {
  background: #111;
  padding: 24px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: 0.3s;
}

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

.course-card h3 {
  margin-bottom: 10px;
}

.course-card p {
  opacity: 0.8;
  margin-bottom: 16px;
}

.price {
  font-weight: 700;
  color: #ffc107;
}

/* ---------- NAVBAR STYLES ---------- */
.navbar-links {
  display: flex;
  gap: 4px;
  flex: 1;
}

.navbar-links a {
  color: #fff;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.navbar-links a:hover {
  background: rgba(0, 0, 0, 0.1);
}

.navbar-links a.active {
  background: rgba(0, 0, 0, 0.15);
}

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

.navbar-btn {
  padding: 8px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.navbar-btn-outline {
  border: 2px solid #fff;
  color: #fff;
}

.navbar-btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.navbar-btn-solid {
  background: #000;
  color: #fff;
}

.navbar-btn-solid:hover {
  background: #333;
}

/* ---------- MAIN NAVBAR STYLES ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: #ffc107;
  display: flex;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar-container {
  width: 100%;
  max-width: 1280px;
  margin: auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.navbar-logo {
  font-family: Syne, sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
}

.navbar-logo span {
  color: #000;
}

/* ---------- HERO STYLES ---------- */
.hero h1 {
  text-align: center;
  margin-bottom: 30px;
}

/* Responsive styles moved to css/responsive-mobile.css */
