/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  font-family: Arial, sans-serif;
  height: 100%;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 1000;
}

.logo {
  height: 42px;
}

/* Menu Button */
.menu-btn {
  background-color: white;
  color: black;
  padding: 8px 16px;
  border: none;
  border-radius: 999px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

.menu-btn:hover {
  background-color: #ff2a9d;
  color: white;
}

/* Side Menu */
.side-menu {
  position: fixed;
  top: 0;
  right: -260px;
  width: 260px;
  height: 100%;
  background: black;
  color: white;
  padding: 20px;
  transition: right 0.3s ease;
  z-index: 999;
}

.side-menu.open {
  right: 0;
}

.close-btn {
  font-size: 32px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  margin-bottom: 40px;
}

.side-menu ul {
  list-style: none;
  font-size: 18px;
}

.side-menu ul li {
  margin-bottom: 25px;
}

.side-menu ul li a {
  color: white;
  text-decoration: none;
}

.side-menu ul li a:hover {
  text-decoration: underline;
}

/* Hero Section */
.hero {
  height: 100vh;
  background-image: url('hero.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  margin-top: 60px;
}

/* Countdown in Hero */
.countdown-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  padding: 20px 30px;
  border-radius: 10px;
}

.countdown-container h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
}

.countdown-message {
  font-size: 1.2em;
  margin-bottom: 10px;
}

.countdown {
  font-size: 2em;
  font-weight: bold;
  letter-spacing: 2px;
}

/* Content Sections */
.section {
  padding: 60px 20px;
  text-align: center;
  background: white;
  color: black;
}

.section-alt {
  background: #f5f5f5;
}
