:root {
  --primary: #ff4b6e;
  --bg: #ffffff;
  --dark: #222;
  --gray: #666;
  font-family: "Inter", sans-serif;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: inherit;
}
body {
  line-height: 1.6;
  background: var(--bg);
  color: var(--dark);
  overflow-x: hidden;
  padding-top: 0;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.top-banner {
  background: #000;
  color: #fff;
  text-align: center;
  font-size: 1rem;
  padding: 0.5rem;
  position: sticky;
  top: 0;
  z-index: 1002;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.logo {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--primary);
  text-decoration: none;
}
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  color: var(--dark);
  text-decoration: none;
  font-weight: 600;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: 0.3s;
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  gap: 2rem;
  padding: 4rem 1rem 6rem 1rem;
  background: none;
  flex-direction: row-reverse;
  flex-wrap: wrap;
}
.hero::before {
  display: none;
}
.hero-img {
  flex: 1;
  max-width: 500px;
}
.hero-img img {
  width: 100%;
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.hero-overlay {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex: 1 1 50%;
  max-width: none;
  min-width: 300px;
  padding: 2rem 0;
}
.hero-overlay h1,
.hero-overlay p,
.tagline,
.hero-benefits {
  width: 100%;
  text-align: center;
}
.hero-benefits {
  list-style: none;
  padding: 0;
  margin: 1rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.hero-benefits li {
  display: block;
  padding-left: 0;
  font-size: 1.08rem;
  position: static;
}
.hero-benefits li::before,
.hero-benefits li i {
  display: none !important;
}
.hero-overlay h1 {
  font-size: 2.75rem;
  margin-bottom: 1rem;
}
.hero-overlay p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
}
.btn {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  border: none;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s;
}
.btn:hover {
  transform: scale(1.05);
}
.events {
  padding: 4rem 0;
}
.events h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}
.event-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}
.card {
  background: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}
.card-img {
  position: relative;
  height: 180px;
  overflow: hidden;
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.price-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: var(--primary);
  color: #fff;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  opacity: 0;
  transform: translateY(-6px);
  transition: 0.3s;
}
.card:hover .price-badge {
  opacity: 1;
  transform: translateY(0);
}
.card-body {
  padding: 1rem;
}
.card-body h3 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}
.card-body p {
  margin-bottom: 1rem;
  color: var(--gray);
}
.about {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 4rem 0;
}
.about-img img {
  width: 100%;
  border-radius: 0.5rem;
}
.about-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.contact {
  padding: 4rem 0;
}
.contact h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}
form {
  max-width: 600px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 0.25rem;
  font: inherit;
}
.disclaimer {
  background: #f9f9f9;
  padding: 2rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--gray);
}
.footer {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 1rem;
  font-size: 0.85rem;
}
.success-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s;
}
.success-overlay.visible {
  opacity: 1;
  visibility: visible;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
header {
  position: sticky;
  top: 2.5rem;
  z-index: 1000;
  background: var(--bg);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 102px;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    width: 200px;
    padding: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1001;
  }
  .nav-links.open {
    transform: translateX(0);
  }
  .nav-toggle {
    display: block;
  }
}
.live-present {
  padding: 4rem 0;
  text-align: center;
}
.live-present h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.live-present p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1rem;
  color: var(--gray);
}
.contact-info {
  margin: 1rem 0;
  text-align: center;
  font-size: 0.9rem;
}
.contact-info a {
  color: var(--primary);
  text-decoration: underline;
}
@media (max-width: 600px) {
  .container {
    width: 95%;
    padding: 0 0.5rem;
  }
  .hero-overlay {
    padding: 2rem 1rem;
  }
  .hero-overlay h1 {
    font-size: 2rem;
  }
  .hero-overlay p {
    font-size: 1rem;
  }
  .top-banner {
    font-size: 1rem;
  }
  .events {
    padding: 4rem 0 2rem 0;
  }
  .about {
    padding: 2rem 0;
  }
  .contact {
    padding: 2rem 0;
  }
  .hero {
    padding: 2rem 1rem 4rem 1rem;
    min-height: 85vh;
  }
  .hero-cta {
    margin-bottom: 2rem;
  }
}
@media (max-width: 490px) {
  .hero {
    margin: 5rem 0.5rem 2rem 0.5rem; /* extra top padding to clear banner + header */
    min-height: 90vh;
  }
  .hero-overlay {
    padding: 1rem 0.5rem 2rem 0.5rem;
  }
  .hero-overlay h1 {
    font-size: 1.8rem;
    margin-top: 1rem;
  }
  .hero-cta {
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 4rem;
  }
  .events {
    padding: 5rem 0 2rem 0;
  }
  .top-banner {
    font-size: 0.85rem;
    padding: 0.4rem 0.5rem;
  }
  .nav {
    height: 50px;
  }
  header {
    top: 2.1rem;
  }
}

@media (max-width: 480px) {
  .event-grid {
    grid-template-columns: 1fr;
  }
  .about {
    grid-template-columns: 1fr;
  }
  .hero {
    height: 95vh;
    padding: 7rem 0.5rem 6rem 0.5rem; /* match top padding for smaller screens */
  }
  .hero-overlay {
    padding: 1rem 0.5rem 2rem 0.5rem;
  }
  .hero-overlay h1 {
    font-size: 1.75rem;
    margin-top: 1.5rem;
  }
  .hero-cta {
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 5rem;
  }
  .btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
    padding: 0.8rem 1.5rem;
  }
  .container {
    width: 98%;
    padding: 0 0.25rem;
  }
  .top-banner {
    font-size: 0.8rem;
    padding: 0.4rem 0.5rem;
  }
  .nav {
    height: 50px;
  }
  header {
    top: 2rem;
  }
  .nav-links {
    top: 90px;
    width: 180px;
  }
  .events {
    padding: 6rem 0 2rem 0;
  }
  .events h2 {
    font-size: 1.8rem;
  }
}
.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}
.disclaimer a {
  color: var(--primary);
  text-decoration: underline;
}
.tagline {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 1rem 0;
}
.hero-note {
  font-size: 0.95rem;
  line-height: 1.4;
  margin: 0.5rem 0;
}
/* Hero sizing & responsiveness overrides */
.hero {
  flex-wrap: wrap;
}
.hero-overlay,
.hero-img {
  flex: 1 1 50%;
  max-width: none;
  min-width: 300px;
}
.hero-overlay {
  padding: 2rem 0;
}
.hero-overlay h1 {
  font-size: clamp(2rem, 4vw+1rem, 3.5rem);
}
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    padding: 2rem 1rem 4rem 1rem;
  }
  .hero-overlay,
  .hero-img {
    flex: 1 1 100%;
    text-align: center;
    max-width: 100%;
  }
  .hero-img {
    order: -1;
    max-width: 600px;
    margin: 0 auto;
  }
  .hero-benefits {
    text-align: center;
  }
  .hero-cta {
    margin-bottom: 2rem;
  }
}
.hero-overlay {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hidden {
  display: none;
}
.support-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 52px;
  height: 52px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  z-index: 1500;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
}
.support-float:hover {
  transform: scale(1.1);
}
.contact-thankyou{margin-top:2rem;text-align:center}.contact-thankyou h3{margin-bottom:1rem;font-size:1.3rem;color:var(--primary)}

@media (max-width: 400px) {
  .hero {
    height: 100vh;
    padding: 7rem 0.25rem 7rem 0.25rem; /* keep consistent spacing */
  }
  .hero-overlay {
    padding: 0.5rem 0.25rem 2rem 0.25rem;
  }
  .hero-overlay h1 {
    font-size: 1.6rem;
    margin-top: 2rem;
    line-height: 1.2;
  }
  .hero-overlay p {
    font-size: 0.9rem;
  }
  .tagline {
    font-size: 1.2rem;
  }
  .hero-benefits {
    font-size: 0.95rem;
  }
  .hero-cta {
    margin-bottom: 6rem;
  }
  .btn {
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
  }
  .events {
    padding: 7rem 0 2rem 0;
  }
  .events h2 {
    font-size: 1.6rem;
  }
  .container {
    width: 100%;
    padding: 0 0.5rem;
  }
  .top-banner {
    font-size: 0.75rem;
    padding: 0.3rem 0.5rem;
  }
  header {
    top: 1.8rem;
  }
  .nav-links {
    top: 85px;
    width: 160px;
  }
}
