/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  line-height: 1.7;
  color: #222;
  background: #ffffff;
  overflow-x: hidden; /* 🚫 no sideways scrolling allowed */
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Navbar */
.nav-left {
  display: flex;
  align-items: center;
  position: relative;
}

.nav-logo {
  height: 50px;
  width: auto;
}
.nav-links ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav-links li {
  white-space: nowrap; /* prevent text from wrapping */
  margin-right: 2rem; /* space between menu items */
}
.nav-links li:last-child {
  margin-right: 0; /* no extra margin on last item */
}

.navbar {
  background: rgba(10, 37, 64, 0.9);
  color: #fff;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(8px);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links {
  list-style: none;
  display: flex;
  /* remove gap here */
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #00c6ff;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, #0a2540, #00c6ff);
  color: #fff;
  text-align: center;
  padding: 6rem 2rem;
  border-radius: 0 0 40px 40px;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  max-width: 650px;
  margin: 0 auto;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.8rem;
  margin: 0 0.5rem;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary {
  background: #442c2e;
  color: #fddbd0;
}

.btn-primary:hover {
  background: #5a3d3f;
}

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

.btn-outline:hover {
  background: #fff;
  color: #0a2540;
}

.btn-send {
  background: rgba(16, 40, 63, 0.9);
  color: #fff;
  border-radius: 30px;
  padding: 0.75rem 1.8rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-send:hover {
  background: #17538e;
}

.btn-waitlist {
  display: inline-block;
  padding: 0.75rem 2rem;
  margin: 1rem 0;
  border: 2px solid #442c2e;
  background-color: #fddbd0;
  color: #442c2e;
  font-weight: 600;
  text-decoration: none;
  border-radius: 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.btn-waitlist:hover {
  background-color: #442c2e;
  color: #fddbd0;
  border-color: #442c2e;
}

/* Sections */
.section {
  padding: 5rem 2rem;
  text-align: center;
}

.section.light {
  background: #fff;
}

.section.dark {
  background: #0a2540;
  color: #fff;
}

/* Patterned Section */
.section.patterned {
  background: #fddbd0;
  color: #442c2e;
  text-align: center;
  padding: 5rem 2rem;
  border-radius: 40px;
  position: relative;
  overflow: hidden;
}

.patterned-logo {
  max-width: 180px;
  margin: 0 auto 1.5rem;
  display: block;
}

/* Features Grid */
.features-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: #442c2e;
  color: #fddbd0;
  padding: 1.4rem;
  border-radius: 16px;
  font-weight: 500;
  transition: transform 0.3s ease, background 0.3s;
}

.feature-card:hover {
  transform: translateY(-6px);
  background: #5a3d3f;
}

/* Video */
.video-container {
  margin: 2rem 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

/* Crowdfunding */
.crowdfund-box.patterned-crowdfund {
  margin-top: 2rem;
  padding: 2rem;
  background: #ffe7e0;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
  color: #442c2e;
}

.progress-bar {
  background: #ffd5cb;
  border-radius: 10px;
  margin: 1rem 0;
  height: 20px;
  overflow: hidden;
}

.progress {
  height: 100%;
  background: #442c2e;
  border-radius: 10px;
}

/* Contact */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 500px;
  margin: 2rem auto 0;
}

.contact-form input,
.contact-form textarea {
  padding: 0.9rem;
  border: 1px solid #ccc;
  border-radius: 12px;
  font-size: 1rem;
  transition: border 0.3s;
  font-family: "Montserrat";
}

.contact-form input:focus,
.contact-form textarea:focus {
  border: 1px solid #00c6ff;
  outline: none;
}

/* Footer */
.footer {
  background: #0a2540;
  color: #fff;
  text-align: center;
  padding: 1.5rem 0;
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Social Links */
.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-icon {
  width: 24px;
  height: 24px;
}

.twitter-btn {
  background-color: #1da1f2;
}
.twitter-btn:hover {
  background-color: #0d95e8;
  transform: scale(1.1);
}
.instagram-btn {
  background: #e1306c;
}
.instagram-btn:hover {
  background: #c72c5f;
  transform: scale(1.1);
}

/* Widgets Stacked */
.widgets-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 2.5rem auto;
  max-width: 800px;
}

/* Updates Section */
.updates-section {
  padding: 2rem;
  background: linear-gradient(135deg, #578eda, rgba(10, 37, 64, 0.9));
  border-radius: 40px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
  color: #fff;
}

.updates-section h3 {
  margin-bottom: 12px;
  font-size: 1.5rem;
}

.updates-form {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.updates-form input[type="email"] {
  padding: 0.75rem 1rem;
  border-radius: 30px;
  border: none;
  font-size: 1rem;
  flex: 1 1 250px;
}

.updates-form button {
  padding: 0.75rem 1.8rem;
  border-radius: 30px;
  border: none;
  background: rgba(10, 37, 64, 0.9);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.updates-form button:hover {
  background: #123a63;
}
.btn-loader {
  margin-left: 0.5rem;
  animation: spin 1s linear infinite;
  display: inline-block;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.updates-form button:active,
.contact-form button:active,
.updates-form button:focus,
.contact-form button:focus {
  background: #0a2340; /* Slightly darker to show click */
  outline: none; /* Optional: removes default focus outline */
}
/* Events */
.events-container {
  margin-bottom: 1.5rem;
  text-align: left;
}

.events-container ul {
  list-style: none;
  padding: 0;
  border-radius: 12px;
  overflow: hidden;
}

.events-container li {
  margin: 0;
  padding: 0.75rem 1rem;
  font-size: 1rem;
}

.events-container li:nth-child(odd) {
  background: rgba(255, 255, 255, 0.1);
}
.events-container li:nth-child(even) {
  background: rgba(255, 255, 255, 0.2);
}

/* Playlist Section */
.playlist-section {
  padding: 2rem;
  background: linear-gradient(135deg, #0a2540, #123a63);
  border-radius: 40px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
  color: #fff;
}

.playlist-section h3 {
  margin-bottom: 1rem;
}

/* Burger Menu */
/* Burger Menu */

/* Add this to your CSS */
.hidden {
  display: none !important;
}
