/* =============================================
   1. RESET & GLOBAL STYLES
============================================= */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
u, i, center, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, table, caption,
tbody, tfoot, thead, tr, th, td, article, aside,
canvas, details, embed, figure, figcaption, footer,
hgroup, menu, nav, output, ruby, section,
summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  background-color: #f5f5f7;
  color: #333;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Keyboard accessibility helpers */
.skip-link,
.visually-hidden {
  position: absolute;
}

.skip-link {
  left: 12px;
  top: -44px;
  z-index: 1001;
  background: #fff;
  color: #222;
  border-radius: 10px;
  padding: 8px 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.16);
  font-weight: 600;
}

.skip-link:focus {
  top: 12px;
}

.visually-hidden {
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 0;
}

/* =============================================
   2. HEADER & NAVIGATION
============================================= */
.header {
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 999;
}

.nav-container {
  display: flex;
  align-items: center; 
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo img {
  height: 50px;
  width: auto;
}

.brand-name {
  color: #333;
  font-weight: 500;
  font-size: 1.2rem;
}

.hamburger {
  display: none;

  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  
  color: #333;
  font-weight: 500;
  font-size: 1.2rem;
}

.main-nav {
  display: flex;
  align-items: center;
  height: 50px;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  align-items: center;
  margin: 0;
  padding: 0;
}

.main-nav a {
  display: flex; 
  align-items: center;
  font-size: 1.15rem;
  line-height: 1;
  font-weight: 500;
}

.main-nav a:hover {
  color: #0071e3;
}

/* Mobile Navigation */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .main-nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 20px;
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 10px;
    width: 200px;
  }

  .main-nav.active ul {
    display: flex;
  }
}

/* =============================================
   3. HERO SECTION
============================================= */
.hero {
  background: #fff;
  padding: 0;
  display: flex;
  justify-content: center;
}

.hero .container {
  padding: 20px;
  width: 100%;
  max-width: 1100px;
}

.hero-content {
  position: relative;
  background: linear-gradient(135deg, #ff7000 0%, #fea159 100%);
  width: calc(100% - 40px);
  margin: 0 auto;
  padding: 40px 20px;
  border-radius: 30px;
  box-sizing: border-box;
  border: 32px solid #ea7026;
}

/* Make sure the badge area is reliably centered */
.badge-wrapper {
  width: 100%;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0 auto 20px;
  box-sizing: border-box;
}

.proudly-badge {
  background: #ea7026;
  color: #ded9d9;
  font-size: 1.2rem;
  line-height: 1.25;
  font-weight: 700;
  padding: 14px 26px;
  border-radius: 999px;
  text-align: center;
  margin: 0;
  display: block;
  width: 100%;
  max-width: 560px;
  white-space: normal;
  overflow-wrap: anywhere;
  box-sizing: border-box;
}

.proudly-badge {
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
  .badge-wrapper {
    padding: 0 12px;
  }

  .proudly-badge {
    font-size: 1rem;
    padding: 12px 20px;
    max-width: 420px;
  }
}

.hero-logo {
  max-width: 500px;
  margin: 90px auto 30px;
  width: 100%;
  height: auto;
}

.hero-images {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  width: 100%;
}

.hero-discover-image {
  max-width: 100%;
  width: 400px;
  height: auto;
}

.hero-with-image {
  width: 60px;
  margin-bottom: 10px;
}

.hero-with_lines-image {
  width: 500px;          
  max-width: 100%;
  height: auto;
  margin-bottom: 10px;
}

.hero-image {
  max-width: 100%;
  width: 500px;
  height: auto;
}

.tagline,
.hero-content .tagline {
  color: #fff;
  text-align: center;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 900;
  font-size: 2.2rem;
  line-height: 2.3rem;
  max-width: 900px;
  margin: 0 auto 30px;
  padding: 0 20px;
}

.hero h1 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  font-weight: 900;
  font-size: 6rem;
  line-height: 1.1;
  margin: 0;
  color: #000;
}

.hero h2 {
  font-size: 1.75rem;
  color: #fff;
  margin: 10px 0 20px;
}

.download-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 40px 0 30px;
  flex-wrap: wrap;
}

.cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  padding: 14px 20px;
  width: 220px;
  transition: background-color 0.3s ease;
}

.button-icon {
  width: 24px;
  height: 24px;
  margin-right: 8px;
  vertical-align: middle;
}

.ios-button,
.android-button {
  background-color: #7f20f6;
}

.ios-button:hover,
.android-button:hover {
  background-color: #6a1ac7;
}

.online-events-link {
  display: block;
  text-align: center;
  margin: 0 auto 10px;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.online-events-link:hover {
  color: #f4f4f4;
}

/* Hero – Tablet */
@media (max-width: 768px) {
    
  .hero-content {
    padding: 30px 15px;
    border-radius: 24px;
    border: 20px solid #ea7026;
  }

  .hero-logo {
    max-width: 230px;
    margin-top: 10px;
  }

  .hero-discover-image {
    max-width: 300px;
  }

  .hero-image {
    max-width: 400px;
  }
  
  .hero-with_lines-image {
    width: 400px;
  }

  .hero-content .tagline {
    font-size: 2.0rem;
    line-height: 2.05rem;
  }

  .download-buttons {
    flex-direction: column;
    align-items: center;
    margin: 25px 0;
  }

  .cta-button {
    width: 100%;
    max-width: 350px;
  }

  .online-events-link {
    font-size: 0.95rem;
  }

  .hero h1 {
    font-size: 4rem;
  }
}

/* Hero – Small Tablet */
@media (max-width: 670px) {
    
  .hero-content {
    border: 20px solid #ea7026;
  }
    
  .hero-content .tagline {
    font-size: 1.8rem;
    line-height: 1.85rem;
  }
}

/* Hero – Mobile */
@media (max-width: 480px) {
    
  .proudly-badge {
    font-size: 0.9rem;
    line-height: 1.25;
    padding: 10px 16px;
    max-width: 340px;
  }
  
  .hero-content {
    padding: 25px 10px;
    border-radius: 20px;
    width: calc(100% - 20px);
    border: 20px solid #ea7026;
  }

  .hero-logo {
    max-width: 180px;
    margin-top: 0;
  }

  .hero-content .tagline {
    font-size: 1.4rem;
    line-height: 1.45rem;
  }

  .download-buttons {
    margin: 20px 0;
  }

  .cta-button {
    max-width: 200px;
  }

  .hero-discover-image {
    max-width: 240px;
  }

  .hero-image {
    max-width: 320px;
  }
  
  .hero-with_lines-image {
    width: 320px;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero h2 {
    font-size: 1.3rem;
  }
}

/* =============================================
   4. MAIN CONTENT BLOCKS
============================================= */
.content-block {
  background-color: #fff;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  text-align: center;
  border-radius: 30px;
  overflow: hidden;
}

.content-block h2,
.content-block h3 {
  font-size: 1.75rem;
  color: #7f20f6;
  margin-bottom: 15px;
}

.content-block p {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
}

ul {
  margin-top: 1rem;
  margin-left: 1.2rem;
  list-style-type: disc;
}

.contact-link {
  color: #7f20f6;
  font-weight: bold;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: #0056b3;
  text-decoration: underline;
}

.cta-small {
  margin-top: 20px;
  padding: 10px 20px;
  border-radius: 18px;
  font-size: 0.9rem;
}

/* Content Blocks – Responsive */
@media (max-width: 768px) {
  .content-block {
    border-radius: 24px;
    padding: 30px 25px;
  }
}

@media (max-width: 480px) {
  .content-block {
    border-radius: 20px;
    padding: 25px 20px;
  }

  .content-block h2,
  .content-block h3 {
    font-size: 1.4rem;
  }

  .content-block p {
    font-size: 0.95rem;
  }
}

/* =============================================
   5. FOOTER
============================================= */
.footer {
  background-color: #fff;
  text-align: center;
  padding: 20px;
  color: #999;
  font-size: 0.9rem;
  border-top: 1px solid #e2e2e2;
}

/* =============================================
   6. FAQ PAGE SPECIFIC STYLES
============================================= */
.content-block ul {
  list-style: none;
  margin: 1rem 0;
  padding-left: 0;
  text-align: left;
}

.content-block li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: #555;
  line-height: 1.6;
}

.content-block li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #7f20f6;
  font-weight: bold;
  font-size: 1.2em;
}

.content-block h3,
.content-block p {
  text-align: left;
  margin-bottom: 1rem;
}

.container h1 {
  text-align: center;
}

.centered-list ul {
  text-align: center;
}

.centered-list li {
  display: inline-block;
  text-align: left;
  margin: 0 1rem 0.5rem 0;
}

/* FAQ – Responsive Bullets */
@media (max-width: 768px) {
  .content-block li {
    padding-left: 1.25rem;
    margin-bottom: 0.4rem;
  }

  .content-block li:before {
    font-size: 1.1em;
  }
}
