
:root {
  --lg-font-headline: "Marcellus", serif;
  --lg-font-body: "Montserrat", system-ui, sans-serif;
  --lg-font-serif: 'Times New Roman', serif;
  --lg-color-bg: #f5f1ec;
  --lg-color-ink: #2b2b2b;
  --lg-color-ink-soft: #6e6a67;
  --lg-color-accent: #548D83;
  --lg-color-accent-soft: #e0f0ed;
  --lg-radius-lg: 18px;
  --lg-radius-xl: 28px;
  --lg-shadow-soft: 0 14px 40px rgba(0, 0, 0, 0.08);

  --bg: #E7E2DD;
  --line: #6a655d;
  --text: #3f3a33;
  --muted:#6b645c;
  --accent:#b29775;
  --maxw: 1050px;
}

 *,*::before,*::after{ box-sizing: border-box; }
  html,body{ height:100%; }
  body{
    margin:0;
    background: var(--bg);
    /* background: var(--bg); */
    color: var(--text);
    font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }

/* HERO SECTION */

.events-hero-section {
  padding: 80px 16px 50px;
  background: #FAF8F6;
  text-align: center;
}

@media (max-width: 768px) {
  .events-hero-section {
    padding: 70px 16px 30px;
  }
}

.events-hairline {
  width: 100%;
  max-width: 900px;
  margin: 16px auto;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.events-hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.events-hero-content h1 {
  font-family: 'Marcellus', serif;
  font-size: clamp(26px, 5vw, 40px);
  letter-spacing: 0.02em;
  font-weight: 400;
  color: #27211c;
  margin-bottom: 16px;
}

.events-hero-lead {
  line-height: 1.8;
  color: var(--lg-color-ink-soft);
  max-width: 720px;
  margin: 0 auto 26px;
  font-family: "times new roman", serif;
  font-size: clamp(15px, 1.5vw, 18px);
}

.events-hero-lead em {
  font-style: italic;
  color: #4a443d;
}

.events-hero-lead b {
  font-weight: 600;
}

.events-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  font-size: 15px;
  color:#6e6a63;
}

.events-hero-badge svg {
  width: 22px;
  height: 22px;
}

@media (max-width: 768px) {
  .events-hero-badge {
    gap: 8px;
    font-size: 14px;
  }

  .events-hero-badge svg {
    width: 18px;
    height: 18px;
  }
}


/* EVENTS LIST SECTION */

.events-list-section {
  padding: 60px 16px;
  background: #faf7f2;
}

.events-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.section-tagline {
  font-family: var(--lg-font-body);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #9a8d84;
  margin-bottom: 8px;
}

.section-title {
  font-family: var(--lg-font-headline);
  color: #2f2620;
  margin-bottom: 10px;

   font-weight: 500;
  font-size: clamp(22px, 3vw, 30px);
  letter-spacing: .02em;
  /* color: #3f3a33; */
}

.section-subtitle {
  font-family: "times new roman", serif;
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.7;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto 30px;
  
}

/* EVENTS GRID & CARD STYLES */

.events-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .events-grid {
   grid-template-columns: repeat(2, 1fr);
  }
}

.events-card {
  background: #fffdf9;
  border-radius: var(--lg-radius-xl);
  overflow: hidden;
  box-shadow: var(--lg-shadow-soft);
  text-align: left;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease, box-shadow .3s ease;
}

.events-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.events-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.14);
}

/* IMAGE AREA */

.events-card-media {
  position: relative;
}

.events-card-media img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}

.events-card:hover img {
  transform: scale(1.07);
}

.events-tag {
  position: absolute;
  left: 20px;
  bottom: 20px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(250, 246, 236, 0.92);
  color: #4a3b2c;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  font-family: var(--lg-font-body);
  text-transform: uppercase;
}

.events-tag-dark {
  background: rgba(32, 28, 28, 0.63);
  color: #f9f3ec;
}

/* BODY CONTENT */

.events-card-body {
  padding: 22px 22px 26px;
}

.events-eyebrow {
  font-family: var(--lg-font-body);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #aa9684;
  margin-bottom: 6px;
}

.events-card-title {
  font-family: var(--lg-font-headline);
  font-size: 1.45rem;
  margin-bottom: 12px;
  color: #2f2620;
}

.events-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.88rem;
  color: var(--lg-color-ink-soft);
  margin-bottom: 16px;
}

.events-meta i {
  margin-right: 6px;
}

@media (min-width: 640px) {
  .events-meta {
   flex-direction: row;
   flex-wrap: wrap;
   gap: 12px 18px;
  }
}

.events-card-text {
  font-family: var(--lg-font-body);
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--lg-color-ink-soft);
  margin-bottom: 14px;
}

.events-list {
  padding: 0;
  margin: 0 0 18px;
  list-style: none;
  font-family: var(--lg-font-body);
  font-size: 0.88rem;
}

.events-list li {
  padding-left: 18px;
  margin-bottom: 4px;
  position: relative;
  color: #5b544f;
}

.events-list li::before {
  content: "•";
  position: absolute;
  left: 4px;
  color: var(--lg-color-accent);
  font-size: 0.9rem;
}

/* HIGHLIGHT BOX – 31ST NIGHT */

.events-highlight-box {
  background: #f6efe7;
  border-radius: 14px;
  padding: 12px 14px;
  border: 1px dashed rgba(119, 99, 78, 0.32);
  margin-bottom: 18px;
  font-size: 0.88rem;
}

.events-highlight-box p {
  margin: 2px 0;
}

.events-highlight{
  font-weight: 600;
  color: #b22626;
  /* color: #5b4a3f; */
  /* color: #3f3a33; */
}

.events-highlight-box p:first-child {
  font-weight: 600;
}

/* BUTTONS */

.events-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.events-primary-btn {
  /* background: var(--lg-color-accent); */
  background: transparent;
  color: black;
  border: 1px solid black;
  padding: 10px 20px;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.88rem;
  font-weight: bold;
  font-family: var(--lg-font-headline);
  text-decoration: none;
  transition: background .2s ease, transform .2s ease;
}

.events-primary-btn:hover {
  /* background: #3f6f67; */
  background: black;
  color: white;
  transform: translateY(-2px);
}

.events-more-btn{
  background: var(--lg-color-accent);
  /* background: black; */
  color: white;
  padding: 10px 20px;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.88rem;
  font-weight: bold;
  font-family: var(--lg-font-headline);
  text-decoration: none;
  transition: background .2s ease, transform .2s ease;
}

.events-more-btn:hover {
  background: #3f6f67;
  color: white;
  transform: translateY(-2px);
}

.events-secondary-link {
  font-size: 0.86rem;
  color: #6b5a4c;
  text-decoration: none;
}

.events-secondary-link:hover {
  text-decoration: underline;
}


/* EXPERIENCE SECTION */

.events-experience-section {
  background: #f0ebe5;
  padding: 70px 16px;
}

@media (min-width: 860px) {
  .events-experience-inner {
    grid-template-columns: 1.2fr 1fr;
  }
}

.events-experience-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  gap: 26px;
}



.events-experience-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--lg-shadow-soft);
}

.events-experience-content {
  text-align: left;
}


.events-outline-btn {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 10px;
  border: 1px solid black;
  color: black;
  font-family: var(--lg-font-headline);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.88rem;
  text-decoration: none;
  transition: .2s ease;
  margin-top: 12px;
}

.events-outline-btn:hover {
  background: var(--muted);
  border-color: var(--muted);
  color: white;
}


@media (max-width: 768px) {
  .events-experience-section {
    padding: 50px 16px;
  }

  .events-experience-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .events-experience-image img {
    height: 300px;
  }

  .events-experience-content {
    text-align: center;
  }
}

.separator-line {
  width: 100%;
  height: 1px;
  background-color: #443e37;
  margin-bottom: 18px;
}

.section-heading {
  text-align: center;
  font-size: 0.8em;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 15px 0 30px 0;
  font-weight: 400;
  color: #555;
}

/* bottom-section */
.bottom-section {
  text-align: center;
  padding: 0 24px 60px;
  background: var(--bg);
  
}



.bottom-section-hairline{
  margin: 20px auto 60px;
  height: 1px;
  max-width: 1400px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
  opacity:.5;
}

.bottom-section-tagline {
    color: #9F9386;
    margin-top: 20px;
    margin-bottom: 15px;
}

.bottom-section-title {
    color: #333;
    font-size: 24px;
    margin-bottom: 25px;
}

.bottom-section-description {
    max-width: 800px;
    margin-left: auto;
    font-style: italic;
    margin-right: auto;
    margin-bottom: 10px;
    color: #6a655d;
}

.bottom-section-description a{
    color: #6a655d;
    text-decoration: none;
}

.bottom-section-description a:hover{
  text-decoration: underline;
  color: #222;
}

.bottom-section-social{
  font-weight: 500;
  color: #222;
}

.social-icons {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.social-icon {
    width: 25px;
    height: 25px;
    fill: #6a655d;
    transition: fill 0.3s, transform 0.2s;
}

/* Hover Effects */
.social-icon:hover {
    fill: #3b5998;
    transform: translateY(-2px);
}

.social-icon.instagram:hover {
    fill: #E1306C;
}

/* Responsive adjustments */

@media (max-width: 900px) {
  .bottom-section {
    padding: 10px 15px 60px;
  }
  .bottom-section-hairline {
    margin: 12px auto 28px;
  }
  .bottom-section-tagline {
    margin-top: 12px;
    font-size: 0.85rem;
  }
  .bottom-section-title {
    font-size: 18px;
    margin-bottom: 14px;
  }
  .bottom-section-description {
    font-size: 0.95rem;
    margin-bottom: 12px;
    padding: 0 4px;
  }
  .social-icons {
    gap: 12px;
  }
  .social-icon {
    width: 25px;
    height: 25px;
  }
}

/* WHATSAPP FLOAT */
.whatsapp-float{
  position: fixed;
  bottom: 25px;
  right: 18px;
  width: 60px;
  height: 60px;
  /* background: #25D366; */
  background: #104622;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 8px 16px rgba(0,0,0,.3);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  z-index: 999;
  transition: transform .3s ease, box-shadow .3s ease;
  text-decoration: none !important;
}
.whatsapp-float:hover{
  transform: scale(1.1);
  box-shadow: 0 10px 20px rgba(0,0,0,.4);
}
.whatsapp-icon{
  /* color: #fff; */
  color: #dcd6cc;
}
