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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #4c423a;
  background: #f8f0e5;
  line-height: 1.6;
}

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

button {
  font: inherit;
}

:root {
  --cream: #f8f0e5;
  --cream-light: #fffaf3;
  --sand: #ead8c2;
  --wet-sand: rgb(254,245,234);
  --peach: #e9b99e;
  --peach-light: #f3d7c5;
  --terracotta: #bd735d;
  --terracotta-dark: #995746;
  --sage: #9ca996;
  --sage-light: #dbe0d6;
  --blue: #8fa5b8;
  --blue-light: #dce5ea;
  --brown: #5a4a40;
  --white: #ffffff;
  --shadow: 0 12px 35px rgba(104, 79, 61, 0.10);
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

section {
  padding: 90px 0;
}

.section-heading {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  /* font-family: 'Montserrat', sans-serif; */
}

.section-heading.left-heading {
  text-align: left;
  margin: 0 0 25px;
}

.eyebrow {
  color: var(--terracotta);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-family: 'Poppins', sans-serif;
  font-weight: 200;
}

.section-heading h2 {
  color: var(--brown);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  margin-bottom: 15px;
  font-family: 'Montserrat';
  font-weight: 700;
  letter-spacing: -0.04em;
}

.section-heading p {
  color: #76685e;
  font-size: 1.05rem;
  font-family: 'Poppins';
}

/* Header */

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(248, 240, 229, .92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(90, 74, 64, .08);
}

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

.logo {
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--brown);
}

.logo span,
.footer-logo span {
  color: var(--terracotta);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(90, 74, 64, .08);
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--brown);
  border-radius: 2px;
}

.sign-in {
  padding: 11px 22px;
  border-radius: 30px;
  /* border: solid 1px var(--terracotta-dark); */
  /* background: var(--terracotta); */
  /* color: white; */
  color: var(--brown);
  font-size: .9rem;
  font-weight: 700;
  transition: .3s;
}

.sign-in:hover {
  background: #cecece30;
}

.btn-primary:hover {
  background: var(--terracotta-dark);
  /* background: #cecece30; */
  /* transform: translateY(-2px); */
}

.mobile-menu {
  display: none;
  padding: 15px 0 25px;
  border-top: 1px solid rgba(90, 74, 64, .08);
}

.mobile-menu.active {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 10px 0;
  color: var(--brown);
  font-weight: 600;
}

/* Hero */

.hero {
  min-height: 640px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 20%, rgba(143, 165, 184, .20), transparent 30%),
    radial-gradient(circle at 90% 20%, rgba(233, 185, 158, .30), transparent 30%),
    var(--cream);
}

.hero::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  background: var(--sage-light);
  opacity: .35;
  border-radius: 50%;
  right: -150px;
  bottom: -180px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-label {
  display: inline-flex;
  padding: 7px 15px;
  border-radius: 30px;
  background: rgba(255,255,255,.7);
  color: var(--terracotta);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: .98;
  letter-spacing: -4px;
  color: var(--brown);
  margin-bottom: 25px;
  font-family: 'Montserrat';
}

.hero h1 span {
  color: var(--terracotta);
}

.hero p {
  max-width: 580px;
  font-size: 1.15rem;
  color: #75665b;
  margin-bottom: 32px;
  font-family: 'Poppins', sans-serif;
  font-weight: 200;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  padding: 13px 24px;
  border-radius: 30px;
  font-weight: 700;
  transition: .3s;
  display: inline-block;
}

.btn-primary {
  background: var(--terracotta);
  color: white;
}

.btn-secondary {
  background: rgba(255,255,255,.7);
  color: var(--brown);
  border: 1px solid rgba(90,74,64,.12);
}

.btn-primary:hover,
.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

/* Live Chat */

.live-section {
  background: var(--cream-light);
}

.chat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.chat-card {
  background: var(--white);
  padding: 25px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  transition: .3s;
  position: relative;
  overflow: hidden;
}

.chat-card:hover,
.person-card:hover,
.event-card:hover {
  transform: translateY(-7px);
}

.chat-card::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  background: var(--peach-light);
  border-radius: 50%;
  top: -50px;
  right: -40px;
  opacity: .6;
}

.chat-time {
  color: var(--terracotta);
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  /* font-family: 'Poppins'; */
}

.chat-card h3 {
  margin: 10px 0;
  color: var(--brown);
  font-family: 'Poppins';
}

.chat-card p {
  font-size: .9rem;
  color: #81746a;
  margin-bottom: 20px;
  font-family: 'Poppins';
  font-weight: 400;
}

.chat-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--terracotta);
  font-weight: 700;
  font-size: .9rem;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #78a875;
  display: inline-block;
}

/* Online */

.online-section {
  background: var(--wet-sand);
}

.people-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 55px;
}

.person-card {
  background: rgba(255,255,255,.78);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(80,90,95,.08);
  transition: .3s;
}

.person-image {
  height: 190px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  font-size: 5rem;
  background: var(--peach-light);
}

.person-card:nth-child(2) .person-image {
  background: var(--sage-light);
}

.person-card:nth-child(3) .person-image {
  background: var(--sand);
}

.person-card:nth-child(4) .person-image {
  background: #d8d6df;
}

.person-info {
  padding: 20px;
}

.person-info h3 {
  color: var(--brown);
  margin-bottom: 3px;
}

.person-info p {
  font-size: .88rem;
  color: #81746a;
}

.online-status {
  margin-top: 10px;
  color: #6f956b;
  font-size: .8rem;
  font-weight: 700;
}

.online-buttons {
  margin-top: 5rem;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  /* border: solid orangered 0px; */
}

/* Stats */

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.stat-card {
  background: rgba(255,255,255,.3);
  border-radius: 24px;
  padding: 30px;
  text-align: center;
  border: 3px solid rgba(255,255,255,.4);
}

.stat-number {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--terracotta);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  color: var(--brown);
  font-weight: 600;
}

/* Events */

.events-section {
  background: var(--cream);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.event-card {
  min-height: 300px;
  border-radius: 28px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: .3s;
}

.event-card::before {
  content: "";
  position: absolute;
  inset: 0;
  /*background: linear-gradient(to top, rgba(170,155,145,.65), transparent 65%);*/
}

.event-card.music {
  background:
    radial-gradient(circle at 20% 43%, var(--peach), transparent 50%),
    #bd735d30;
  border: solid 6px #a8887540;
}

.event-card.dance {
  background:
    radial-gradient(circle at 20% 45%, var(--sage), transparent 40%),
    #79867630;
  border: solid 6px #78a87510;
}

.event-card.travel {
  background:
    radial-gradient(circle at 20% 40%, var(--blue), transparent 40%),
    #647d9050;
    border: solid 6px #7888a540;
}

.event-content {
  position: relative;
  z-index: 2;
  color: var(--brown);
}

.event-icon {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #4c423a;
}

.event-card h3 {
  font-size: 1.7rem;
  margin-bottom: 7px;
}

.event-card p {
  font-size: .9rem;
  opacity: .9;
  color: #333;
  font-family: 'Poppins';
}

/* About */

.about-section {
  background: var(--cream-light);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-text h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  color: var(--brown);
  margin-bottom: 20px;
  font-family: 'Montserrat';
  font-weight: 700;
  letter-spacing: -0.04em;
}

.about-text h2 span {
  color: var(--terracotta);
}

.about-text p {
  color: #76685e;
  margin-bottom: 15px;
  font-family: 'Poppins';
  font-weight: 300;
}

.about-box {
  /* padding: 45px; */
  /* border-radius: 40px; */
  background:
    radial-gradient(circle at 20% 20%, rgba(233,185,158,.5), transparent 35%),
    radial-gradient(circle at 80% 80%, rgba(156,169,150,.5), transparent 35%),
    var(--sand);
}

.about-box-inner {
  background: rgba(255,255,255,.65);
  border-radius: 30px;
  padding: 35px;
  text-align: center;
}

.big-symbol {
  font-size: 4rem;
  margin-bottom: 15px;
}

.about-box-inner h3 {
  color: var(--brown);
  margin-bottom: 8px;
}

/* Footer */

footer {
  background: var(--brown);
  color: #eee3d7;
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 15px;
}

.footer-logo span {
  color: var(--peach);
}

.footer-about {
  color: #cbbdb0;
  max-width: 400px;
}

.footer-about-next {
  color: #cbbdb0;
  max-width: 400px;
  margin-top: 2rem;
}

footer h4 {
  margin-bottom: 15px;
  color: white;
}

.footer-links a {
  display: block;
  color: #cbbdb0;
  margin-bottom: 8px;
  transition: .2s;
}

.footer-links a:hover {
  color: white;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: white;
  font-size: .85rem;
  transition: .2s;
}

.social-links a:hover {
  background: var(--terracotta);
  transform: translateY(-3px);
}

.copyright {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 25px;
  color: #b8aaa0;
  font-size: .85rem;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.copyright-no-bar {
  /* border-top: 1px solid rgba(255,255,255,.12); */
  padding-top: 25px;
  color: #b8aaa0;
  font-size: .85rem;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

/* Responsive */

@media (max-width: 900px) {
  .chat-grid,
  .people-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 750px) {

  .events-grid {
    grid-template-columns: 1fr;
  }

  .event-card {
    min-height: 280px;
  }
}

@media (max-width: 650px) {
  section {
    padding: 65px 0;
  }

  .container {
    width: min(100% - 28px, 1180px);
  }

  .hero {
    min-height: 600px;
  }

  .hero h1 {
    font-size: 3.5rem;
    letter-spacing: -2px;
  }

  .chat-grid,
  .people-grid,
  .stats,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .about-box {
    /* padding: 20px; */
    padding: auto;
  }

  .about-box-inner {
    padding: 30px 20px;
  }

  .copyright {
    flex-direction: column;
  }
}


/* PCH */


    .callout-graphic {
      display: flex;
      justify-content: center;
    }

    .pch-img-outline {
      border: solid 8px rgb(240, 215, 170, 0.3);
      border-radius: 28px;
      /* padding: -8px; */
    }

    .responsive-img {
      max-width: 100%;
      /* Ensures the image never overflows its container */
      height: auto;
      /* Maintains the original aspect ratio */
      display: block;
      /* Removes unwanted whitespace at the bottom */
      border-radius: 20px;
    }

    .callout-inner {
      display: flex;
      flex-wrap: wrap;
      /* Allows items to wrap to the next line on small screens */
      align-items: center;
      gap: 20px;
    }


    /* Policy, Terms */

  .policy-section,
  .terms-section {
    background: var(--cream-light);
  }