* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  background: #f9f9f9;
  color: #333;
 
}

/* ===== NAVBAR BASE ===== */
/* ===== NAVBAR ===== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #0d1b2a;
  padding: 10px 30px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo img {
  height: 80px;
  width: auto;
  object-fit: contain;
  margin-left: 90px;
}

/* ===== NAV LINKS ===== */
.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Make all nav items (buttons + links) share alignment */
.nav-item,
.dropbtn {
  color: white;
  background: none;
  border: none;
  text-decoration: none;
  font-size: 1em;
  padding: 10px 15px;
  cursor: pointer;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
}

.nav-item:hover,
.dropbtn:hover {
  color: #d9a5e6;
}

/* ===== DROPDOWN ===== */
.dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  flex-direction: column;
  background: #14213d;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  min-width: 220px;
  z-index: 999;
}

.dropdown.show .dropdown-content {
  display: flex;
}

/* ===== RESPONSIVE ===== */
.menu-toggle {
  display: none;
  font-size: 1.8em;
  color: white;
  cursor: pointer;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #0d1b2a;
    padding: 20px 0;
  }

  .nav-links.show {
    display: flex;
  }

  .dropdown-content {
    position: static;
    box-shadow: none;
  }
}



.nav-links a {
  color: white;
  text-decoration: none;
  margin: 0 12px;
  font-weight: 500;
}

.nav-links a:hover {
  color: #ffce00;
}

main {
  margin-top: 100px;
  padding: 20px;
}

/* Hero section */

.hero-content h2 {
  font-size: 2.5em;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 1.2em;
}

.btn {
  display: inline-block;
  padding: 10px 25px;
  background: #d9a5e6;
  color: black;
  border-radius: 5px;
  margin-top: 20px;
  text-decoration: none;
  font-weight: bold;
}

.btn:hover {
  background: #dbc2e1;
}

/* Footer */
footer {
  background: #222;
  color: #ccc;
  text-align: center;
  padding: 20px 10px;
}

/* Responsive Design */
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .navbar {
    flex-direction: column;
  }

  .hero-content h2 {
    font-size: 1.8em;
  }
}

@media (max-width: 600px) {
  .hero {
    height: 70vh;
  }

  .btn {
    padding: 8px 18px;
  }
}
/* ---------- NAVIGATION BAR ---------- */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background-color: rgba(0, 0, 0, 0.85);
  color: white;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
}

.logo h1 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
}

.logo p {
  font-size: 0.9rem;
  margin: 0;
  color: #ccc;
}

.nav-links {
  display: flex;
  gap: 25px;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #d9a5e6;
}

/* ---------- HAMBURGER MENU (MOBILE) ---------- */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.95);
    position: absolute;
    top: 70px;
    right: 0;
    width: 200px;
    text-align: right;
    padding: 15px;
    border-radius: 0 0 0 10px;
  }

  .nav-links.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}
/* ---------- CLICKABLE DROPDOWN ---------- */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  cursor: pointer;
  color: white;
  text-decoration: none;
}

.dropdown-content {
  display: none;                     /* hidden by default */
  position: absolute;
  top: 100%;
  left: 0;
  flex-direction: column;
  background: rgba(41, 40, 40, 0.95);
  border-radius: 6px;
  min-width: 180px;
  z-index: 1000;
}

.dropdown-content.show {             /* visible only when JS adds .show */
  display: flex;
}

.dropdown-content li a {
  display: block;
  padding: 10px 15px;
  color: white;
  text-decoration: none;
  transition: background 0.3s ease;
}

.dropdown-content li a:hover {
  background: rgba(255, 255, 255, 0.1);
}
/* Remove bullet points and default spacing from nav lists */
nav ul,
.nav-links ul,
.dropdown-content {
  list-style: none;
  margin: 0;
  padding: 0;
}


/* ====== HERO TEXT FADE ANIMATION ====== */
.fade-text {
  animation: fadeInOut 5s ease-in-out infinite;
  opacity: 80;
}

/* Keyframes for fade effect */
@keyframes fadeInOut {
  0%, 100% {
    opacity: 0;
    transform: translateY(10px);
  }
  50% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  body {
    padding-top: 85px;
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 75px;
  }
}

@media (max-width: 480px) {
  body {
    padding-top: 65px;
  }
}








