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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background-color: #ffffff;
  color: #000000;
  line-height: 1.6;
  font-size: 16px;

}

/* navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  max-width: 1100px;
  margin: 0 auto;
}

.navbar .logo1 {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.5px;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.navbar a {
  text-decoration: none;
  color: inherit;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.navbar a:hover {
  opacity: 1;
}
.nav-tabs {
  display: flex;
  gap: 0.5rem;
}

.tab {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background-color: #f1f3f5;
  border: none;
  border-radius: 999px;
  padding: 0.5rem 1rem;
  font-size: 0.95rem;
  color: #333;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.tab:hover {
  background-color: #e2e6ea;
}

.tab.active {
  background-color: #414e57;
  color: #fff;
}

/* hero section */
.hero {
  text-align: center;
  padding: 6rem 1rem 4rem;
  max-width: 700px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: -1px;
}

.hero p {
  font-size: 1.2rem;
  opacity: 0.75;
  margin-bottom: 2rem;
}

.cta {
  display: inline-block;
  background-color: #000;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.25s ease;
}

.cta:hover {
  background-color: #222;
}

/* features */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 4rem auto;
  padding: 0 1rem;
}

.feature-card {
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: box-shadow 0.3s ease;
}

.feature-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.feature-card h2 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

/* footer */
.footer {
  text-align: center;
  padding: 4rem 1rem 2rem;
  font-size: 0.9rem;
  opacity: 0.6;
}
.what-we-do {
  background: white;
  padding: 4rem 1rem;
  text-align: center;
}

.what-we-do h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: #111;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.card {
  background: #fff;
  border-radius: 18px;
  padding: 2rem 1.5rem;
  width: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
  border: 2px solid transparent;
}

.card img {
  height: 40px;
  opacity: 0.8;
}

.card span {
  font-size: 0.95rem;
  font-weight: 500;
  color: #333;
}

.card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.card.selected {
  border: 2px solid #414e57;
}
.about {
  text-align: center;
  padding: 4rem 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.about h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.about p {
  font-size: 1.1rem;
  opacity: 0.75;
}

.cta-bar {
  background-color: #f2f5fa;
  padding: 3rem 1rem;
  text-align: center;
}

.cta-bar h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.cta-bar .cta {
  font-size: 1rem;
  padding: 0.75rem 1.75rem;
  background-color: #000;
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.2s ease;
}

.cta-bar .cta:hover {
  background-color: #222;
}
.event-preview {
  text-align: center;
  padding: 5rem 1rem;
  background-color: #f9fbfd;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.event-preview h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  color: #111;
}

.event-preview p {
  font-size: 1.15rem;
  color: #444;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.event-preview .cta {
  display: inline-block;
  background-color: #000;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.25s ease;
}

.event-preview .cta:hover {
  background-color: #222;
}
.event-highlight {
  text-align: center;
  padding: 5rem 1rem 6rem;
  max-width: 1200px;
  margin: 0 auto;
}

.event-highlight h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.event-card {
  background-color: #f5f5f7;
  border-radius: 24px;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .event-card {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.event-text {
  flex: 1;
}

.event-text p {
  font-size: 1.25rem;
  color: #111;
  margin-bottom: 1.5rem;
  max-width: 400px;
}

.event-image {

}

.event-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

/* blue CTA */
.cta.blue {
  background-color: #0071e3;
  color: #fff;
  font-weight: 500;
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  text-decoration: none;
  transition: background-color 0.25s ease;
}

.cta.blue:hover {
  background-color: #005ec4;
}
.faq {
  padding: 5rem 1rem;
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}

.faq h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.faq-item {
  border-bottom: 1px solid #eee;
  margin-bottom: 1rem;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1rem 0;
  font-size: 1.05rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  color: #111;
  transition: color 0.2s;
}

.faq-question:hover {
  color: #0071e3;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.open .faq-answer {
  max-height: 200px;
}
.signup-section {
  background-color: #f9fbfd;
  padding: 5rem 1rem;
  text-align: center;
}

.signup-section h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.signup-section p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 2rem;
}

.signup-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: 400px;
  margin: 0 auto;
}

.signup-form input {
  padding: 0.75rem 1rem;
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 999px;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s ease;
}

.signup-form input:focus {
  border-color: #0071e3;
}

.signup-form button {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  border: none;
  border-radius: 999px;
  background-color: #0071e3;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.25s ease;
}

.signup-form button:hover {
  background-color: #005ec4;
}
.quiz-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  backdrop-filter: blur(12px);
  background-color: rgba(0, 0, 0, 0.4);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  animation: fadeIn 0.3s ease forwards;
}

.quiz-modal {
  background: #fff;
  border-radius: 18px;
  width: 90%;
  max-width: 500px;
  padding: 2rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  animation: slideUp 0.3s ease forwards;
}

.close-btn {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  background: none;
  font-size: 1.5rem;
  border: none;
  cursor: pointer;
}

.quiz-step h3 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.quiz-options button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  border-radius: 999px;
  background-color: #f2f2f2;
  border: none;
  font-size: 0.95rem;
  font-weight: 500;
  color: #111;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}

.quiz-options button:hover {
  background-color: #e4e4e4;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.quiz-options button:active {
  background-color: #d9d9d9;
  box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.1);
}


.next-btn {
  background-color: #0071e3;
  color: white;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.next-btn:hover {
  background-color: #005ec4;
}

.next-btn:active {
  background-color: #004bb2;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.15);
}


@keyframes fadeIn {
  from { opacity: 0 }
  to { opacity: 1 }
}

@keyframes slideUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.events-page-hero {
  text-align: center;
  padding: 5rem 1rem 3rem;
  max-width: 700px;
  margin: 0 auto;
}

.events-page-hero h1 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.events-page-hero p {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.6;
}

.event-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem 5rem;
}

.event-card {
  background: #f9fbfd;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.04);
}

.event-card h2 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.event-card p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: #444;
}

.cta-outline {
  background: transparent;
  color: #0071e3;
  border: 2px solid #0071e3;
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
}

.cta-outline:hover {
  background: #0071e3;
  color: #fff;
}
.contact-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 6rem 1rem;
  text-align: center;
}

.contact-container h1 {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.contact-container p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 2rem;
}

.contact-box p {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.contact-box a {
  color: #0071e3;
  text-decoration: none;
}

.contact-box a:hover {
  text-decoration: underline;
}

.contact-form {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #ccc;
  border-radius: 999px;
  font-size: 1rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s ease;
}

.contact-form textarea {
  border-radius: 16px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #0071e3;
}

.contact-form button {
  align-self: center;
  background-color: #0071e3;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: background-color 0.25s ease;
}

.contact-form button:hover {
  background-color: #005ec4;
}
/* announcement-bar.css */
.announcement-bar{
  --grad-start:#67154d;
  --grad-end:#2a0d9f;
  background:linear-gradient(90deg,var(--grad-start),var(--grad-end));
  color:#fff;
  font:14px/1.4 "Inter",system-ui,sans-serif;
  padding:8px 0;
  position:relative;
  width: 100%;
  z-index:1000;
}

/* keeps content centered like Apple sites */
.announcement-inner{
  max-width:1280px;
  margin:0 auto;
  padding:0 24px;
  display:flex;
  gap:24px;
  align-items:center;
  justify-content:center; /* text looks centered */
}
.announcement-msg{
  display:flex;
  gap:10px;
  align-items:center;
  font-size: 15px;
}

/* small purple badge */
.badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:22px;height:22px;
  border-radius:6px;
  background:#a440f2;
}

.announcement-actions{margin-left:auto;display:flex;gap:12px;}

/* buttons */
.btn-primary,
.btn-outline{
  padding:6px 14px;
  border-radius:6px;
  font-weight:500;
  font-size:14px;
  text-decoration:none;
  white-space:nowrap;
  transition:opacity .2s ease;
}
.btn-primary{background:#000;color:#fff}
.btn-outline{border:1px solid #b59dff;color:#fff; padding: 5px;}
.btn-primary:hover,
.btn-outline:hover{opacity:.85}

/* close (X) */
.announcement-close{
  position:absolute;
  right:16px;top:50%;
  transform:translateY(-50%);
  background:none;
  border:0;
  color:#fff;
  font-size:20px;
  line-height:1;
  cursor:pointer;
}

/* optional: hide bar after close */
.announcement-close:focus,
.announcement-close:hover{opacity:.7}
.announcement-close:active{opacity:.5}
.sona-section {
  background: linear-gradient(to bottom, #0e0b18, #5a207a);
  color: white;
  padding: 80px 20px;
  font-family: 'Inter', sans-serif;
  text-align: center;
}

.sona-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.sona-section h1 {
  font-size: 2.8rem;
  font-weight: 700;
}

.sona-section h1 span {
  color: #c99eff;
}

.sona-subtext {
  font-size: 1.1rem;
  color: #d6c6e7;
  margin: 1rem 0 3rem;
}

.sona-card {
  display: flex;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  padding: 40px;
  gap: 30px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.sona-card-text {
  flex: 1 1 300px;
  text-align: left;
}

.sona-card-text h2 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.sona-card-text p {
  color: #cfc4e7;
  margin-bottom: 16px;
}

.learn-more {
  color: #a87ffb;
  text-decoration: none;
}

.sona-card-visual {
  flex: 1 1 300px;
  background: #1f1a2e;
  padding: 20px;
  border-radius: 12px;
}

.sona-fake-ui {
  font-size: 0.9rem;
  text-align: left;
  color: #eae0ff;
}

.ui-header {
  font-weight: 600;
  margin-bottom: 10px;
}

.ui-body {
  background: #2c2240;
  padding: 15px;
  border-radius: 8px;
}

.ui-body p {
  margin: 10px 0;
}

.sona-feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
  justify-content: center;
}

.sona-feature {
  flex: 1 1 300px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 25px;
  text-align: left;
}

.sona-feature h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.sona-feature p {
  color: #d3c1e7;
  font-size: 0.95rem;
}
.sona-card-visual {
  flex: 1 1 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 85%;
  background: none;
}

.sona-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  
}
.purple-section {
  color: #000000;
  padding: 60px 20px;
  text-align: center;
}

.event-highlight-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 30px;
  max-width: 1000px;
  margin: 30px auto 0;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  flex-wrap: wrap;
}

.event-text {
  flex: 1 1 300px;
  text-align: left;
  padding: 20px;
}

.event-text p {
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.btn-purple {
  background: #2b80ff;
  color: #fff;
  padding: 10px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
}

.event-icon {
  flex: 1 1 150px;
  display: flex;
  justify-content: center;
  padding: 20px;
}

.event-icon img {
  width: 60px;
  height: 60px;
  filter: brightness(1) invert(0);
}
.modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.modal {
  background: white;
  padding: 30px;
  border-radius: 10px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  position: relative;
}

.modal input {
  width: 100%;
  padding: 10px;
  margin: 8px 0;
  border: 1px solid #ddd;
  border-radius: 6px;
}

.modal button[type="submit"] {
  background: black;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 6px;
  width: 100%;
}

.close-btn {
  position: absolute;
  top: 10px; right: 10px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}
.rsvp-btn {
  background: transparent;
  color: #000;
  border: 2px solid #000;
  padding: 10px 16px;
  font-weight: 500;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 8px;
}

.rsvp-btn:hover {
  background-color: #000;
  color: #fff;
}

.rsvp-btn2 {
  background: black;
  color: white;
  border: 2px solid #000;
  padding: 6px 12px;
  font-weight: 500;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 8px;
  margin-left: 0px;
  text-decoration: none;
}

.rsvp-btn2:hover {
  background-color: #000;
  color: #fff;
}

button,
.rsvp-btn2,
.btn-primary,
.btn-outline {
  white-space: nowrap;
}
.rsvp-modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.rsvp-modal-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 18px;
  width: 92%;
  max-width: 420px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  position: relative;
  text-align: center;
  font-family: 'Inter', sans-serif;
}

.rsvp-modal-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
}

.rsvp-modal-form input {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 14px;
  font-size: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  outline: none;
}

.rsvp-modal-form input:focus {
  border-color: #000;
  box-shadow: 0 0 0 1px #000;
}

.rsvp-submit-btn {
  background: #000;
  color: #fff;
  padding: 12px;
  width: 100%;
  font-size: 15px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}

.rsvp-submit-btn:hover {
  background: #333;
}

.rsvp-modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 22px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
}
/* Overlay transition */
.rsvp-modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

/* Card transition */
.rsvp-modal-card {
  background: #fff;
  padding: 32px;
  border-radius: 18px;
  width: 92%;
  max-width: 420px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  position: relative;
  text-align: center;
  transform: scale(0.95);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Active state (when open) */
.rsvp-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.rsvp-modal-overlay.active .rsvp-modal-card {
  transform: scale(1);
  opacity: 1;
}
body.modal-open .content {
  filter: blur(5px);
}
[]