* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Georgia", serif;
}

body {
  background: #f9f8f6;
  color: #111;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

/* =========================
   NAVBAR
========================= */

/* ================= NAVBAR ================= */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 18px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  z-index: 9999;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-box {
  width: 42px;
  height: 42px;
  background: #970026;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 600;
}

.logo-text h3 {
  font-size: 18px;
  margin: 0;
  font-weight: 500;
  line-height: 1;
}

.logo-text span {
  font-size: 11px;
  color: #970026;
  letter-spacing: 2px;
  display: block;
  margin-top: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: #111;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: 0.3s ease;
}

.nav-links a:hover {
  color: #970026;
}

.apply-btn {
  padding: 14px 26px;
  background: #970026;
  color: white;
  font-size: 13px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: 0.3s ease;
  text-decoration: none;
  display: inline-block;
  border: none;
}

.apply-btn:hover {
  background: #7b0020;
}
/* HAMBURGER */
.menu-toggle {
  display: none;
  font-size: 34px;
  cursor: pointer;
  color: #111;
  z-index: 10001;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .navbar {
    padding: 18px 20px;
  }

  .menu-toggle {
    display: block;
  }

  .apply-btn {
    display: none;
  }

  .nav-links {
    position: fixed;
    top: 78px;
    right: -100%;
    width: 100%;
    max-width: 320px;
    height: calc(100vh - 78px);
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 35px 25px;
    gap: 22px;
    transition: 0.4s ease;
    box-shadow: -8px 0 25px rgba(0,0,0,0.08);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    width: 100%;
    font-size: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid #eee;
  }

  .logo-text h3 {
    font-size: 15px;
  }

  .logo-text span {
    font-size: 9px;
    letter-spacing: 1px;
  }

  .logo-box {
    width: 38px;
    height: 38px;
    font-size: 20px;
  }
}

/* HERO SECTION */
.hero {
  min-height: 110vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 120px clamp(20px, 6vw, 100px) 60px;
  background: 
    url("asstes/images/sp-hero.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  box-sizing: border-box;
  position: relative;
}

/* Hide text on desktop */
.hero-content {
  display: none;
  max-width: 850px;
  width: 100%;
}

/* TOP LINE */
.top-line {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}

.top-line span {
  width: 70px;
  height: 2px;
  background: #c3a546;
}

.top-line p {
  font-size: 13px;
  color: #970026;
  letter-spacing: 3px;
  font-family: Arial, sans-serif;
  font-weight: 600;
}

/* HEADING */
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 5rem);
  line-height: 1.1;
  font-weight: 400;
  color: #111;
}

.hero h1 span {
  color: #970026;
  font-style: italic;
}

/* DIVIDER */
.divider {
  width: 320px;
  height: 2px;
  background: #c3a546;
  margin: 30px 0;
}

/* DESCRIPTION */
.description {
  max-width: 650px;
  font-size: 1rem;
  line-height: 1.8;
  color: #444;
  font-family: Arial, sans-serif;
}

/* BUTTONS */
.buttons {
  margin-top: 40px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.primary-btn,
.secondary-btn {
  padding: 16px 30px;
  font-size: 14px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  transition: 0.3s ease;
}

.primary-btn {
  background: #970026;
  color: white;
}

.primary-btn:hover {
  background: #7b0020;
}

.secondary-btn {
  background: transparent;
  border: 1px solid #970026;
  color: #970026;
}

.secondary-btn:hover {
  background: #970026;
  color: white;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }

  .hero {
    min-height: auto;
    padding: 120px 5% 60px;
    background: #fafafa; /* hide banner image */
  }

  /* Show content only on mobile */
  .hero-content {
    display: block;
  }

  .top-line {
    gap: 10px;
    margin-bottom: 20px;
  }

  .top-line span {
    width: 45px;
  }

  .top-line p {
    font-size: 11px;
    letter-spacing: 2px;
  }

  .hero h1 {
    font-size: 2.4rem;
    line-height: 1.15;
  }

  .divider {
    width: 160px;
    margin: 22px 0;
  }

  .description {
    font-size: 15px;
    line-height: 1.7;
  }

  .buttons {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  /* Hide request membership button */
  .primary-btn {
    display: none;
  }

  .secondary-btn {
    width: 100%;
    text-align: center;
  }
}
/* NORTH STAR SECTION */

.north-star {
  padding: 100px clamp(20px, 6vw, 100px);
  background: #F3F1EC;
  width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
}

.section-heading p {
  color: #970026;
  font-size: 14px;
  letter-spacing: 4px;
  font-family: Arial, sans-serif;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.section-heading h2 {
  font-size: clamp(2.2rem, 5vw, 5rem);
  font-weight: 400;
  line-height: 1.1;
  max-width: 900px;
  margin-bottom: 60px;
}

.section-heading span {
  color: #970026;
  font-style: italic;
}

.top-cards {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 30px;
  margin-bottom: 35px;
}

.card-light,
.card-dark,
.small-card {
  padding: 50px;
}

.card-light {
  background: white;
  border: 1px solid #eee;
}

.card-dark {
  background: linear-gradient(135deg, #8d0023, #b1002e);
  color: white;
}

.label {
  font-size: 14px;
  letter-spacing: 4px;
  color: #970026;
  font-family: Arial, sans-serif;
  border-bottom: 1px solid #970026;
  padding-bottom: 8px;
}

.label.gold {
  color: #d8b14a;
  border-color: #d8b14a;
}

.card-light h3,
.card-dark h3 {
  font-size: clamp(1.8rem, 3vw, 3.3rem);
  font-weight: 400;
  line-height: 1.3;
  margin: 35px 0;
}

.gold-line {
  width: 80px;
  height: 2px;
  background: #d8b14a;
  margin-bottom: 35px;
}

.card-light p,
.small-card p,
.card-dark li {
  font-size: 1.1rem;
  line-height: 1.8;
  font-family: Arial, sans-serif;
  color: #555;
}

.card-dark li {
  color: white;
  list-style: none;
  margin-bottom: 18px;
}

.bottom-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.small-card {
  background: white;
  border: 1px solid #e8e8e8;
}

.small-card h4 {
  font-size: 2rem;
  font-weight: 400;
  margin: 25px 0;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .top-cards {
    grid-template-columns: 1fr;
  }

  .card-light,
  .card-dark,
  .small-card {
    padding: 35px;
  }
}

@media (max-width: 768px) {
  .north-star {
    padding: 70px 5%;
  }
  
  .card-light,
  .card-dark,
  .small-card {
    padding: 25px;
  }
  
  .bottom-cards {
    grid-template-columns: 1fr;
  }
}

/* ABOUT FORUM */

.about-forum {
  padding: 120px clamp(30px, 6vw, 100px);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  background: #FAFAFA;
  border-radius: 20px;
  margin: 60px clamp(20px, 4vw, 50px);
  width: auto;
  box-sizing: border-box;
  overflow-x: hidden;
}

.section-tag {
  font-size: 14px;
  letter-spacing: 4px;
  color: #970026;
  font-family: Arial, sans-serif;
  margin-bottom: 25px;
}

.about-left h2,
.founder-content h2 {
  font-size: clamp(2.3rem, 4vw, 5rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 35px;
}

.about-left span,
.founder-content span {
  color: #970026;
  font-style: italic;
}

.mini-stats {
  display: flex;
  gap: 80px;
  margin-top: 50px;
}

.mini-stats h3 {
  font-size: 4rem;
  color: #970026;
  font-weight: 400;
}

.mini-stats span,
.stats-row span,
.founder-name span {
  font-size: 14px;
  letter-spacing: 4px;
  color: #777;
  font-family: Arial, sans-serif;
}

.about-right p,
.founder-content p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 25px;
  font-family: Arial, sans-serif;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #ddd;
  padding-top: 35px;
  gap: 20px;
}

.stats-row h4 {
  font-size: 3rem;
  font-weight: 400;
}

/* FOUNDER SECTION */

.founder-section {
  padding: 100px clamp(20px, 6vw, 100px);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  background: #F3F1EC;
  width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
}

.founder-image img {
  width: 100%;
  height: 700px;
  object-fit: cover;
}

.founder-name {
  margin-top: 20px;
}

.founder-name h4 {
  font-size: 2rem;
  font-weight: 400;
}

.founder-content h3 {
  font-size: 3rem;
  color: #970026;
  font-style: italic;
  font-weight: 400;
  margin-top: 40px;
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .about-forum,
  .founder-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .mini-stats {
    gap: 40px;
  }

  .founder-image img {
    height: auto;
  }
}

@media (max-width: 768px) {
  .about-forum {
    margin: 40px 5%;
    padding: 60px 5%;
  }
  
  .founder-section {
    padding: 70px 5%;
  }
  
  .mini-stats {
    flex-direction: column;
    gap: 20px;
  }
  
  .stats-row {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
  
  .stats-row h4 {
    font-size: 2.5rem;
  }
}

/* =========================
   CORE FOCUS SECTION
========================= */

.sp_focus_section{
    background:#f5f4f2;
    padding:90px 80px;
    overflow-x: hidden;
    width: 100%;
    box-sizing: border-box;
}

/* Heading */
.sp_focus_heading{
    display:flex;
    justify-content:space-between;
    gap:80px;
    margin-bottom:70px;
    align-items:flex-start;
}

.sp_focus_left{
    width:55%;
}

.sp_focus_right{
    width:35%;
}

.sp_focus_tag{
    font-size:14px;
    letter-spacing:5px;
    color:#8c1232;
    font-weight:600;
    display:inline-block;
    margin-bottom:25px;
    position:relative;
    padding-top:10px;
}

.sp_focus_tag::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:205px;
    height:1px;
    background:#8c1232;
}

.sp_focus_left h2{
    font-size:78px;
    line-height:1.05;
    font-weight:300;
    color:#151515;
    font-family: "Cormorant Garamond", serif;
    margin:0;
}

.sp_focus_left h2 span{
    color:#8c1232;
    font-style:italic;
}

.sp_focus_right p{
    font-size:20px;
    line-height:1.9;
    color:#6a6a6a;
    font-weight:400;
    margin-top:40px;
}

/* Grid */
.sp_focus_grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    border-top:1px solid #ddd7cf;
    border-left:1px solid #ddd7cf;
}

/* Card */
.sp_focus_card{
    padding:70px;
    border-right:1px solid #ddd7cf;
    border-bottom:1px solid #ddd7cf;
    background:#f5f4f2;
    transition:all 0.4s ease;
    min-height:440px;
}

.sp_focus_card:hover{
    background:#f1efeb;
}

.sp_focus_top{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    margin-bottom:55px;
}

.sp_focus_top h3{
    font-size:72px;
    font-weight:300;
    color:#dcc57a;
    margin:0;
    font-family: "Cormorant Garamond", serif;
}

.sp_focus_card h4{
    font-size:54px;
    line-height:1.1;
    font-weight:300;
    color:#1d1d1d;
    font-family: "Cormorant Garamond", serif;
    margin-bottom:30px;
}

.sp_focus_line{
    width:75px;
    height:1px;
    background:#d7b866;
    margin-bottom:35px;
}

.sp_focus_card p{
    font-size:18px;
    line-height:2;
    color:#666;
    margin-bottom:45px;
    max-width:500px;
}

.sp_focus_card a{
    text-decoration:none;
    color:#8c1232;
    font-size:15px;
    letter-spacing:4px;
    font-weight:600;
    display:inline-flex;
    align-items:center;
    gap:12px;
    transition:0.3s;
}

.sp_focus_card a:hover{
    gap:18px;
}

/* Responsive */
@media(max-width:1200px){

    .sp_focus_left h2{
        font-size:60px;
    }

    .sp_focus_card h4{
        font-size:44px;
    }
}

@media(max-width:991px){

    .sp_focus_section{
        padding:70px 25px;
    }

    .sp_focus_heading{
        flex-direction:column;
        gap:30px;
    }

    .sp_focus_left,
    .sp_focus_right{
        width:100%;
    }

    .sp_focus_grid{
        grid-template-columns:1fr;
    }

    .sp_focus_left h2{
        font-size:48px;
    }

    .sp_focus_card{
        padding:45px 30px;
        min-height:auto;
    }

    .sp_focus_card h4{
        font-size:38px;
    }

    .sp_focus_top h3{
        font-size:58px;
    }

    .sp_focus_right p{
        margin-top:0;
        font-size:18px;
    }
}

@media(max-width:576px){

    .sp_focus_section{
        padding:50px 20px;
    }
    
    .sp_focus_left h2{
        font-size:40px;
    }

    .sp_focus_card h4{
        font-size:32px;
    }

    .sp_focus_top h3{
        font-size:48px;
    }

    .sp_focus_card p{
        font-size:16px;
        line-height:1.8;
    }
    
    .sp_focus_card{
        padding:30px 20px;
    }
}

/* =========================
   GLOBAL NETWORK SECTION
========================= */

.sp_global_section {
  position: relative;
  background: #120d11;
  padding: 80px 40px 0;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}

/* Background Glow */
.sp_global_section::before {
  content: "";
  position: absolute;
  right: -200px;
  bottom: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle,
    rgba(131, 23, 40, 0.45) 0%,
    rgba(131, 23, 40, 0.05) 50%,
    transparent 70%
  );
  z-index: 0;
}

.sp_global_overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.3),
    rgba(0, 0, 0, 0.1)
  );
  z-index: 1;
}

.sp_global_section .container {
  position: relative;
  z-index: 2;
  max-width: 1520px;
  margin: auto;
}

/* =========================
   HEADING
========================= */

.sp_global_heading {
  max-width: 760px;
  margin-bottom: 70px;
}

.sp_global_tag {
  display: inline-block;
  color: #d6aa2b;
  font-size: 14px;
  letter-spacing: 5px;
  font-weight: 600;
  position: relative;
  padding-top: 12px;
  margin-bottom: 28px;
}

.sp_global_tag::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 320px;
  height: 1px;
  background: #d6aa2b;
}

.sp_global_heading h2 {
  font-size: 82px;
  line-height: 1.05;
  font-weight: 300;
  color: #f4f1ec;
  margin-bottom: 30px;
  font-family: "Cormorant Garamond", serif;
}

.sp_global_heading h2 span {
  color: #d6aa2b;
  font-style: italic;
}

.sp_global_heading p {
  font-size: 22px;
  line-height: 1.8;
  color: #bdb7b5;
  margin: 0;
  max-width: 720px;
}

/* =========================
   MAP
========================= */

.sp_map_wrapper {
  position: relative;
  width: 100%;
  max-width: 1080px;
  margin: auto;
  overflow: hidden;
}

.sp_world_map {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* =========================
   MAP POINTS
========================= */

.sp_map_point {
  position: absolute;
}

/* Circle */
.sp_map_dot {
  width: 18px;
  height: 18px;
  background: #d8b134;
  border-radius: 50%;
  border: 2px solid #f8edd0;
  display: block;
  cursor: pointer;
  animation: spPulse 2s infinite;
}

/* Tooltip */
.sp_dot_label {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #fff;
  color: #222;
  padding: 12px 18px;
  font-size: 13px;
  letter-spacing: 2px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: 0.35s ease;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  z-index: 5;
}

.sp_dot_label span {
  color: #8f112f;
  font-weight: 700;
}

.sp_dot_label::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 8px 8px 0 8px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
}

/* Hover */
.sp_map_point:hover .sp_dot_label {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* Dot Positions */
.sp_dot_1 { top: 57%; left: 8%; }
.sp_dot_2 { top: 66%; left: 20%; }
.sp_dot_3 { top: 47%; left: 47%; }
.sp_dot_4 { top: 61%; left: 51%; }
.sp_dot_5 { top: 50%; left: 58%; }
.sp_dot_6 { top: 53%; left: 72%; }
.sp_dot_7 { top: 58%; left: 90%; }

/* =========================
   PULSE ANIMATION
========================= */

@keyframes spPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(216, 177, 52, 0.8);
  }

  70% {
    transform: scale(1.1);
    box-shadow: 0 0 0 18px rgba(216, 177, 52, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(216, 177, 52, 0);
  }
}

/* =========================
   STATS
========================= */

.sp_global_stats {
  margin-top: 90px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.sp_stat_box {
  padding: 60px 30px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
}

.sp_stat_box h3 {
  font-size: 88px;
  color: #d6aa2b;
  font-weight: 300;
  margin-bottom: 16px;
  font-family: "Cormorant Garamond", serif;
}

.sp_stat_box h5 {
  color: #c7c0be;
  letter-spacing: 4px;
  font-size: 15px;
  font-weight: 600;
  margin: 0;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {
  .sp_global_section {
    padding: 60px 20px 0;
  }

  .sp_global_heading {
    text-align: center;
    max-width: 100%;
    margin-bottom: 50px;
  }

  .sp_global_tag {
    font-size: 12px;
    letter-spacing: 3px;
  }

  .sp_global_tag::before {
    width: 220px;
    left: 50%;
    transform: translateX(-50%);
  }

  .sp_global_heading h2 {
    font-size: 48px;
    line-height: 1.15;
  }

  .sp_global_heading p {
    font-size: 17px;
    line-height: 1.7;
    max-width: 100%;
  }

  .sp_global_stats {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 60px;
  }

  .sp_stat_box {
    padding: 45px 20px;
  }

  .sp_stat_box h3 {
    font-size: 60px;
  }

  .sp_stat_box h5 {
    font-size: 13px;
    letter-spacing: 2px;
  }

  .sp_dot_label {
    font-size: 11px;
    padding: 8px 12px;
  }
}

@media (max-width: 576px) {
  .sp_global_section {
    padding: 50px 15px 0;
  }

  .sp_global_heading h2 {
    font-size: 34px;
  }

  .sp_global_heading p {
    font-size: 15px;
  }

  .sp_global_stats {
    grid-template-columns: 1fr;
  }

  .sp_stat_box {
    padding: 35px 15px;
  }

  .sp_stat_box h3 {
    font-size: 48px;
  }

  .sp_stat_box h5 {
    font-size: 12px;
  }

  .sp_map_dot {
    width: 12px;
    height: 12px;
  }

  .sp_dot_label {
    display: none;
  }
}

/* SECTION ONLY */


/* =========================
   ATTENDED EVENTS SECTION
========================= */

.attended-events{
  padding:80px 6%;
  background:#ece9e4;
  font-family:'Inter', sans-serif;
  color:#1e1b1b;
  width:100%;
  box-sizing:border-box;
  overflow-x:hidden;
}

/* Container */
.attended-events .container{
  max-width:1400px;
  margin:auto;
  width:100%;
}

/* =========================
   TOP CONTENT
========================= */

.attended-events .top-content{
  margin-bottom:50px;
}

.attended-events .sub-title{
  font-size:13px;
  letter-spacing:4px;
  color:#8d0d2d;
  font-weight:600;
  display:block;
  margin-bottom:18px;
}

.attended-events h2{
  font-family:'Cormorant Garamond', serif;
  font-size:72px;
  line-height:1;
  font-weight:400;
}

.attended-events h2 span{
  color:#8d0d2d;
  font-style:italic;
}

/* =========================
   GRID (4 COLUMNS)
========================= */

.attended-events .events-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:20px;
}

/* =========================
   EVENT CARD (SMALL STYLE)
========================= */

.attended-events .event-card{
  background:#f8f7f5;
  border:1px solid #d8d2ca;
  padding:24px 20px;
  min-height:130px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  transition:all 0.3s ease;
  position:relative;
  overflow:hidden;
}

/* Hover effect */
.attended-events .event-card:hover{
  transform:translateY(-6px);
  border-color:#8d0d2d;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.attended-events h3:hover{
  color:#8d0d2d ;
}

/* subtle left accent line */
.attended-events .event-card::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  width:3px;
  height:100%;
  background:#8d0d2d;
  transform:scaleY(0);
  transform-origin:top;
  transition:0.3s ease;
}

.attended-events .event-card:hover::before{
  transform:scaleY(1);
}

/* =========================
   TEXT STYLES
========================= */

.attended-events .event-card h3{
  font-family:'Cormorant Garamond', serif;
  font-size:22px;
  font-weight:500;
  margin-bottom:10px;
  line-height:1.2;
}

.attended-events .event-card p{
  font-size:14px;
  letter-spacing:1px;
  color:#5f5b57;
  margin:0;
}

/* =========================
   RESPONSIVE DESIGN
========================= */

/* Tablet */
@media(max-width:1200px){
  .attended-events .events-grid{
    grid-template-columns:repeat(2, 1fr);
    gap:18px;
  }

  .attended-events h2{
    font-size:56px;
  }
}

/* Mobile */
@media(max-width:768px){
  .attended-events{
    padding:60px 5%;
  }

  .attended-events .events-grid{
    grid-template-columns:1fr;
    gap:16px;
  }

  .attended-events h2{
    font-size:42px;
  }

  .attended-events .event-card{
    padding:20px;
  }

  .attended-events .event-card h3{
    font-size:20px;
  }
}
/* =========================
   PARTNERS SECTION
========================= */

.partners-section{
  padding:110px 7%;
  background:#f3f1ed;
  text-align:center;
  width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
}

/* HEADER */
.partners-header{
  max-width:1200px;
  margin:0 auto 70px;
}

.partners-subtitle{
  display:inline-block;
  font-size:14px;
  letter-spacing:5px;
  color:#8b0f2f;
  font-weight:600;
  margin-bottom:28px;
  position:relative;
}

.partners-subtitle::before,
.partners-subtitle::after{
  content:"";
  position:absolute;
  top:50%;
  width:110px;
  height:1px;
  background:#8b0f2f;
}

.partners-subtitle::before{
  right:100%;
  margin-right:18px;
}

.partners-subtitle::after{
  left:100%;
  margin-left:18px;
}

.partners-section h2{
  font-family:'Cormorant Garamond', serif;
  font-size:72px;
  line-height:1.1;
  font-weight:400;
  color:#171414;
}

.partners-section h2 span{
  color:#8b0f2f;
  font-style:italic;
}

/* GRID */
.partners-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  border:1px solid #d8d1c8;
  margin-bottom:55px;
}

/* BOX */
.partner-box{
  height:135px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-right:1px solid #d8d1c8;
  border-bottom:1px solid #d8d1c8;
  font-family:'Cormorant Garamond', serif;
  font-size:24px;
  font-weight:400;
  color:#8d8780;
  transition:0.35s ease;
  cursor:pointer;
  position:relative;
  overflow:hidden;
  isolation:isolate;
}

/* REMOVE EXTRA BORDERS */
.partner-box:nth-child(4),
.partner-box:nth-child(8){
  border-right:none;
}

.partner-box:nth-child(n+5){
  border-bottom:none;
}

/* HOVER BACKGROUND */
.partner-box::before{
  content:"";
  position:absolute;
  inset:0;
  background:#8b0f2f;
  transform:translateY(100%);
  transition:0.4s ease;
  z-index:-1;
}

.partner-box:hover::before{
  transform:translateY(0);
}

/* TEXT COLOR */
.partner-box:hover{
  color:#fff;
}

/* FOOTER TEXT */
.partners-footer{
  font-size:15px;
  letter-spacing:6px;
  color:#6f6d69;
  font-weight:500;
}

/* =========================
   TABLET
========================= */

@media(max-width:1100px){

  .partners-section h2{
    font-size:58px;
  }

  .partners-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .partner-box:nth-child(2),
  .partner-box:nth-child(4),
  .partner-box:nth-child(6),
  .partner-box:nth-child(8){
    border-right:none;
  }

  .partner-box:nth-child(5),
  .partner-box:nth-child(6){
    border-bottom:1px solid #d8d1c8;
  }
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

  .partners-section{
    padding:60px 20px;
  }

  .partners-header{
    margin-bottom:45px;
  }

  .partners-section h2{
    font-size:42px;
    line-height:1.15;
  }

  .partners-subtitle{
    font-size:12px;
    letter-spacing:4px;
  }

  .partners-subtitle::before,
  .partners-subtitle::after{
    width:50px;
  }

  .partners-grid{
    grid-template-columns:1fr;
  }

  .partner-box{
    height:110px;
    border-right:none !important;
    border-bottom:1px solid #d8d1c8 !important;
    font-size:22px;
  }

  .partner-box:last-child{
    border-bottom:none !important;
  }

  .partners-footer{
    font-size:12px;
    line-height:1.8;
    letter-spacing:4px;
  }
}

.media-gallery{
  padding:110px 7%;
  background:#f3f1ed;
  width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
}

/* TOP */
.media-gallery .gallery-top{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:30px;
  margin-bottom:70px;
  flex-wrap:wrap;
}

.media-gallery .gallery-subtitle{
  display:inline-block;
  margin-bottom:20px;
  font-size:14px;
  letter-spacing:5px;
  color:#8b0f2f;
  font-weight:600;
  position:relative;
}

.media-gallery .gallery-subtitle::before{
  content:"";
  position:absolute;
  top:-10px;
  left:0;
  width:170px;
  height:1px;
  background:#8b0f2f;
}

.media-gallery h2{
  font-family:'Cormorant Garamond',serif;
  font-size:82px;
  line-height:0.95;
  font-weight:400;
  color:#171414;
}

.media-gallery h2 span{
  color:#8b0f2f;
  font-style:italic;
}

/* BUTTON */
.media-gallery .gallery-btn{
  padding:20px 38px;
  border:1px solid #c9b07a;
  text-decoration:none;
  color:#8b0f2f;
  font-size:14px;
  letter-spacing:3px;
  font-weight:600;
  transition:0.3s ease;
  display: inline-block;
}

.media-gallery .gallery-btn:hover{
  background:#8b0f2f;
  color:#fff;
  border-color:#8b0f2f;
}

/* GRID */
.media-gallery .gallery-grid{
  display:grid;
  grid-template-columns:2fr 1fr;
  grid-template-rows:320px 320px 320px;
  gap:20px;
}

/* ITEMS */
.media-gallery .gallery-item{
  position:relative;
  overflow:hidden;
  display:block;
}

.media-gallery .gallery-item img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:0.6s ease;
}

.media-gallery .gallery-item::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    to top,
    rgba(0,0,0,0.7),
    rgba(0,0,0,0.15),
    transparent
  );
  z-index:1;
}

.media-gallery .gallery-item:hover img{
  transform:scale(1.06);
}

/* OVERLAY */
.media-gallery .gallery-overlay{
  position:absolute;
  left:28px;
  bottom:28px;
  z-index:2;
}

.media-gallery .gallery-overlay span{
  display:inline-block;
  color:#c6a24b;
  font-size:14px;
  letter-spacing:5px;
  font-weight:600;
  margin-bottom:14px;
  position:relative;
}

.media-gallery .gallery-overlay span::before{
  content:"";
  position:absolute;
  top:-12px;
  left:0;
  width:160px;
  height:1px;
  background:#c6a24b;
}

.media-gallery .gallery-overlay h3{
  font-family:'Cormorant Garamond',serif;
  font-size:24px;
  font-weight:400;
  color:#fff;
}

/* GRID POSITION */
.media-gallery .gallery-item.large{
  grid-row:span 2;
}

.media-gallery .gallery-item.bottom{
  grid-column:1 / -1;
}

/* TABLET */
@media(max-width:1200px){

  .media-gallery h2{
    font-size:64px;
  }

  .media-gallery .gallery-grid{
    grid-template-rows:280px 280px 280px;
  }
}

/* MOBILE */
@media(max-width:768px){

  .media-gallery{
    padding:60px 20px;
  }

  .media-gallery .gallery-top{
    align-items:flex-start;
    margin-bottom:45px;
  }

  .media-gallery h2{
    font-size:50px;
  }

  .media-gallery .gallery-grid{
    grid-template-columns:1fr;
    grid-template-rows:auto;
  }

  .media-gallery .gallery-item.large,
  .media-gallery .gallery-item.small,
  .media-gallery .gallery-item.bottom{
    grid-column:auto;
    grid-row:auto;
    height:320px;
  }

  .media-gallery .gallery-overlay{
    left:20px;
    bottom:20px;
  }

  .media-gallery .gallery-overlay h3{
    font-size:22px;
  }

  .media-gallery .gallery-btn{
    padding:16px 28px;
    font-size:13px;
  }
}

/* TESTIMONIAL SECTION */
.testimonial-section {
  padding: 100px 7%;
  background: #f8f8f6;
}

.testimonial-header span {
  font-size: 13px;
  letter-spacing: 4px;
  color: #970026;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 18px;
  border-top: 1px solid #970026;
  padding-top: 8px;
}

.testimonial-header h2 {
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 60px;
  color: #111;
}

.testimonial-header h2 span {
  color: #970026;
  font-style: italic;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.testimonial-card {
  background: #efeee9;
  padding: 55px 40px;
  min-height: 500px;
  border-left: 2px solid #d3b24d;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.quote {
  font-size: 60px;
  color: #d3b24d;
  line-height: 1;
  margin-bottom: 25px;
}

.testimonial-card p {
  font-size: 18px;
  line-height: 1.8;
  font-style: italic;
  color: #222;
}

.line {
  width: 80px;
  height: 1px;
  background: #d3b24d;
  margin: 35px 0 25px;
}

.testimonial-card h4 {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 10px;
  color: #111;
}

.testimonial-card span {
  font-size: 12px;
  letter-spacing: 4px;
  color: #666;
  text-transform: uppercase;
}

/* MOBILE */
@media (max-width: 992px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    min-height: auto;
  }
}

/* =========================
   CONTACT SECTION
========================= */

.contact-section {
  background: #f8f7f4;
  padding: 100px 40px;
}

.contact-container {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* LEFT */
.contact-tag {
  color: #970026;
  font-size: 14px;
  letter-spacing: 5px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 30px;
  border-top: 1px solid #970026;
  padding-top: 12px;
}

.contact-left h2 {
  font-size: 78px;
  line-height: 1.05;
  font-weight: 300;
  color: #111;
  margin-bottom: 30px;
  font-family: "Cormorant Garamond", serif;
}

.contact-left h2 span {
  color: #970026;
  font-style: italic;
}

.contact-left p {
  font-size: 22px;
  line-height: 1.8;
  color: #555;
  max-width: 600px;
}

.contact-line {
  width: 80px;
  height: 2px;
  background: #d6aa2b;
  margin: 50px 0;
}

/* INFO */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-box {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.icon {
  width: 52px;
  height: 52px;
  border: 1px solid #d9cfcf;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #970026;
  font-size: 22px;
}

.info-box h4 {
  color: #970026;
  font-size: 14px;
  letter-spacing: 4px;
  margin-bottom: 8px;
}

.info-box p {
  font-size: 26px;
  color: #111;
  margin: 0;
  line-height: 1.5;
}



/* RIGHT */
.contact-right {
  display: flex;
  justify-content: center;
}

.qr-card {
  background: white;
  padding: 60px;
  border: 1px solid #e3dede;
  text-align: center;
  width: 100%;
  max-width: 500px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.05);
}

.qr-card h3 {
  font-size: 38px;
  font-family: "Cormorant Garamond", serif;
  margin-bottom: 15px;
  color: #111;
}

.qr-card p {
  font-size: 17px;
  color: #666;
  margin-bottom: 35px;
}

.qr-card img {
  width: 240px;
  height: 240px;
  object-fit: contain;
  margin-bottom: 25px;
}

.qr-card span {
  color: #970026;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 991px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .contact-left {
    text-align: center;
  }

  .contact-left p {
    max-width: 100%;
  }

  .contact-line {
    margin: 40px auto;
  }

  .info-box {
    justify-content: center;
    text-align: left;
  }

  .contact-left h2 {
    font-size: 52px;
  }
}

@media (max-width: 576px) {
  .contact-section {
    padding: 70px 20px;
  }

  .contact-left h2 {
    font-size: 38px;
  }

  .contact-left p {
    font-size: 16px;
  }

  .info-box p {
    font-size: 18px;
  }

  .qr-card {
    padding: 35px 25px;
  }

  .qr-card img {
    width: 180px;
    height: 180px;
  }

  .qr-card h3 {
    font-size: 30px;
  }
}


.forum-footer{
  background:#130b0d;
  padding:90px 7% 35px;
  color:#f3efe9;
  overflow-x: hidden;
  width: 100%;
  box-sizing: border-box;
}

.forum-footer .footer-top{
  display:grid;
  grid-template-columns:1.4fr 0.8fr 1.2fr;
  gap:100px;
  padding-bottom:70px;
  border-bottom:1px solid rgba(198,162,75,0.15);
}

/* BRAND */
.forum-footer .brand-box{
  display:flex;
  align-items:center;
  gap:16px;
  margin-bottom:35px;
}

.forum-footer .logo-box{
  width:50px;
  height:50px;
  background:#970d2f;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#d8b14b;
  font-size:28px;
  font-family:'Cormorant Garamond',serif;
}

.forum-footer .brand-box h3{
  font-family:'Cormorant Garamond',serif;
  font-size:40px;
  font-weight:400;
  color:#fff;
  margin-bottom:4px;
}

.forum-footer .brand-box span{
  font-size:14px;
  letter-spacing:4px;
  color:#c6a24b;
  font-weight:600;
}

.forum-footer .footer-brand p{
  font-size:19px;
  line-height:1.8;
  color:#b7aea6;
  max-width:520px;
  margin-bottom:45px;
}

/* SOCIAL */
.forum-footer .social-icons{
  display:flex;
  gap:16px;
  flex-wrap: wrap;
}

.forum-footer .social-icons a{
  width:54px;
  height:54px;
  border:1px solid rgba(255,255,255,0.12);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#f4f1eb;
  text-decoration:none;
  font-size:22px;
  transition:0.3s ease;
}

.forum-footer .social-icons a:hover{
  background:#970d2f;
  border-color:#970d2f;
}

/* LINKS */
.forum-footer .footer-links h4,
.forum-footer .footer-office h4{
  font-size:15px;
  letter-spacing:5px;
  color:#c6a24b;
  margin-bottom:35px;
  position:relative;
}

.forum-footer .footer-links h4::before,
.forum-footer .footer-office h4::before{
  content:"";
  position:absolute;
  top:-12px;
  left:0;
  width:95px;
  height:1px;
  background:#c6a24b;
}

.forum-footer .footer-links{
  display:flex;
  flex-direction:column;
}

.forum-footer .footer-links a{
  color:#ddd6cf;
  text-decoration:none;
  margin-bottom:18px;
  font-size:20px;
  transition:0.3s;
}

.forum-footer .footer-links a:hover{
  color:#c6a24b;
  transform:translateX(6px);
}

/* OFFICE */
.forum-footer .footer-office p{
  font-size:20px;
  line-height:1.9;
  color:#ddd6cf;
  margin-bottom:6px;
}

.forum-footer .footer-contact{
  margin-top:35px;
  display:flex;
  flex-direction:column;
  gap:10px;
}

.forum-footer .footer-contact a{
  color:#ddd6cf;
  text-decoration:none;
  font-size:21px;
  transition:0.3s;
}

.forum-footer .footer-contact a:hover{
  color:#c6a24b;
}

/* BOTTOM */
.forum-footer .footer-bottom{
  padding-top:28px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  flex-wrap:wrap;
}

.forum-footer .footer-bottom p{
  color:#9f968e;
  font-size:16px;
}

.forum-footer .footer-policy{
  display:flex;
  gap:35px;
  flex-wrap:wrap;
}

.forum-footer .footer-policy a{
  color:#b8afa7;
  text-decoration:none;
  font-size:16px;
  transition:0.3s;
}

.forum-footer .footer-policy a:hover{
  color:#c6a24b;
}

/* TABLET */
@media(max-width:1200px){

  .forum-footer .footer-top{
    grid-template-columns:1fr 1fr;
    gap:70px;
  }

  .forum-footer .footer-office{
    grid-column:span 2;
  }
}

/* MOBILE */
@media(max-width:768px){

  .forum-footer{
    padding:60px 20px 30px;
  }

  .forum-footer .footer-top{
    grid-template-columns:1fr;
    gap:55px;
    padding-bottom:50px;
  }

  .forum-footer .footer-office{
    grid-column:unset;
  }

  .forum-footer .brand-box h3{
    font-size:32px;
  }

  .forum-footer .footer-brand p,
  .forum-footer .footer-office p,
  .forum-footer .footer-contact a,
  .forum-footer .footer-links a{
    font-size:17px;
  }

  .forum-footer .footer-bottom{
    flex-direction:column;
    align-items:flex-start;
  }

  .forum-footer .footer-policy{
    gap:20px;
  }

  .forum-footer .social-icons a{
    width:48px;
    height:48px;
    font-size:20px;
  }
}


/* gallery page */

/* GALLERY PAGE */
.gf_gallery_page {
  padding: 100px 7%;
  background: #faf8f5;
}

.gf_container {
  max-width: 1400px;
  margin: auto;
}

.gf_heading {
  text-align: center;
  margin-bottom: 60px;
}

.gf_heading span {
  font-size: 13px;
  letter-spacing: 3px;
  color: #8b6f3d;
  font-weight: 600;
}

.gf_heading h2 {
  font-size: 52px;
  font-weight: 400;
  margin: 15px 0;
  color: #7B0020;
}

.gf_heading h2 span {
  color: #8b6f3d;
  font-style: italic;
}

.gf_heading p {
  max-width: 700px;
  margin: auto;
  font-size: 17px;
  color: #555;
  line-height: 1.8;
}

.gf_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.gf_img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 14px;
  cursor: pointer;
  transition: 0.4s ease;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.gf_img:hover {
  transform: scale(1.04);
}

/* MODAL */
.gf_modal {
  display: none;
  position: fixed;
  z-index: 99999;
  inset: 0;
  background: rgba(0,0,0,0.92);
  justify-content: center;
  align-items: center;
}

.gf_modal_content {
  max-width: 85%;
  max-height: 85vh;
  border-radius: 12px;
}

.gf_close {
  position: absolute;
  top: 30px;
  right: 45px;
  color: white;
  font-size: 45px;
  cursor: pointer;
}

@media(max-width: 992px) {
  .gf_grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gf_heading h2 {
    font-size: 38px;
  }
}

@media(max-width: 576px) {
  .gf_grid {
    grid-template-columns: 1fr;
  }

  .gf_img {
    height: 240px;
  }

  .gf_heading h2 {
    font-size: 30px;
  }
}