.fs-left>div {
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
}

.fs-nav {
  max-width: 520px;
  width: 100%;
}

/* HEADER */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 30px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s ease;
}

header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  padding: 10px 60px;
  box-shadow: 0 2px 40px rgba(82, 56, 30, 0.08);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-mark {
  width: 40px;
  height: 40px;
  background: var(--brown);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 900;
  color: var(--orange);
  letter-spacing: -1px;
}

/* Header image logo sizing */
.site-logo {
  height: 80px;
  display: block;
  object-fit: contain;
}

.logo-text span {
  display: block;
  line-height: 1.1;
}

.logo-text .sub {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--orange);
  text-transform: uppercase;
}

.logo-text .main {
  font-size: 15px;
  font-weight: 900;
  color: #fff;
}

header.scrolled .logo-text .main {
  color: var(--title);
}

header.scrolled .logo-text .sub {
  color: var(--brown);
}

header.scrolled .logo-mark {
  background: var(--brown);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.btn-join {
  padding: 13px 32px;
  background: var(--orange);
  color: var(--brown);
  border: none;
  border-radius: 100px;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
}

.btn-join:hover {
  background: var(--orange-deep);
  transform: translateY(-2px);
}

header.scrolled .btn-join {
  background: #0c3a30;
  color: #fff;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}

.hamburger span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  transition: all 0.3s ease;
}

.hamburger span:nth-child(1) {
  width: 26px;
}

.hamburger span:nth-child(2) {
  width: 18px;
}

.hamburger span:nth-child(3) {
  width: 22px;
}

.hamburger:hover span {
  width: 26px !important;
}

header.scrolled .hamburger span {
  background: var(--brown) !important;
}

/* FULLSCREEN MENU */
.fs-menu {
  position: fixed;
  inset: 0;
  background: #ffffff;
  z-index: 5000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  display: flex;
}

.fs-menu.open {
  opacity: 1;
  pointer-events: all;
}

.fs-left {
  width: 50%;
  padding: 60px 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  border-right: 1px solid rgba(0, 0, 0, .08);
}

.fs-left>div {
  max-width: 460px;
  width: 100%;
  margin-left: auto;
  margin-right: 0;
}

.menu-logo {
  width: 170px;
  height: auto;
  display: block;
}
.fs-right-logo {
  width: 90px;
  height: auto;
  display: block;
}

.fs-brand-desc {
  margin-top: 32px;
}

.fs-nav {
  margin-top: 0;
}

.fs-brand-desc p {
  font-size: 14px;
  line-height: 1.85;
  color: rgba(0, 0, 0, 0.45);
  font-weight: 400;
  max-width: 340px;
  margin: 16px 0 28px;
}

.fs-website-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  background: var(--orange);
  color: var(--brown);
  border: none;
  border-radius: 100px;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-bottom: 28px;
}

.fs-website-btn:hover {
  background: var(--orange-deep);
}

.fs-socials {
  display: flex;
  gap: 12px;
  margin-bottom: 40px;
}

.fs-social {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(12, 58, 48, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0c3a30;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.fs-social:hover {
  background: #0c3a30;
  color: var(--orange);
  border-color: #0c3a30;
}

.fs-events-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

.fs-event-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fs-event-card {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 210, 177, 0.08);
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.fs-event-card:hover {
  background: rgba(255, 210, 177, 0.08);
  border-color: rgba(255, 210, 177, 0.2);
}

.fs-event-img {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.fs-event-info {}

.fs-event-cat {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 4px;
}

.fs-event-title {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

.fs-event-date {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 3px;
  font-weight: 500;
}


.fs-close {
  position: absolute;
  top: 36px;
  right: 48px;
  color: rgba(30, 18, 8, 0.5);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s;
}

.fs-close:hover {
  color: var(--orange);
}

.fs-close::before {
  content: '✕';
  font-size: 15px;
}

.fs-right {
  width: 50%;
  padding: 60px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 901px) {
  .fs-right {
    align-items: flex-start;
  }
  .fs-right-content {
    max-width: 460px;
    width: 100%;
  }
}

.fs-right-top {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}



.fs-right-socials {
  display: flex;
  align-items: center;
  gap: 16px;
}

.fs-right-socials a {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(12, 58, 48, 0.25);
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #0c3a30;
  font-size: 14px;
  text-decoration: none;
  transition: all .3s ease;
}

.fs-right-socials a:hover {
  background: #0c3a30;
  border-color: #0c3a30;
  color: var(--orange);
}

.fs-nav {
  display: flex;
  flex-direction: column;
}

.fs-nav-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  text-decoration: none;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateX(30px);
}

.fs-menu.open .fs-nav-item {
  opacity: 1;
  transform: translateX(0);
}

.fs-menu.open .fs-nav-item:nth-child(1) {
  transition: opacity 0.4s 0.1s ease, transform 0.4s 0.1s ease, color 0.3s;
}

.fs-menu.open .fs-nav-item:nth-child(2) {
  transition: opacity 0.4s 0.15s ease, transform 0.4s 0.15s ease, color 0.3s;
}

.fs-menu.open .fs-nav-item:nth-child(3) {
  transition: opacity 0.4s 0.2s ease, transform 0.4s 0.2s ease, color 0.3s;
}

.fs-menu.open .fs-nav-item:nth-child(4) {
  transition: opacity 0.4s 0.25s ease, transform 0.4s 0.25s ease, color 0.3s;
}

.fs-menu.open .fs-nav-item:nth-child(5) {
  transition: opacity 0.4s 0.3s ease, transform 0.4s 0.3s ease, color 0.3s;
}

.fs-menu.open .fs-nav-item:nth-child(6) {
  transition: opacity 0.4s 0.35s ease, transform 0.4s 0.35s ease, color 0.3s;
}

.fs-nav-item:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.fs-nav-item:hover .fs-nav-name {
  color: var(--orange);
}

.fs-nav-item:hover .fs-nav-arrow {
  color: var(--orange);
}

.fs-nav-name {
  font-size: 16px;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.75);
  letter-spacing: -0.5px;
}

.fs-nav-num {
  font-size: 10px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.3);
  letter-spacing: 1px;
}

.fs-nav-arrow {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.75);
  opacity: 1;
  transition: all 0.3s ease;
}

.fs-nav-item.active .fs-nav-name,
.fs-nav-item.active .fs-nav-num,
.fs-nav-item.active .fs-nav-arrow {
  color: #0c3a30 !important;
}



/* =============================================
   TABLET RESPONSIVE — 480px to 900px
   ============================================= */
@media (max-width: 900px) {

  /* Header */
  header {
    padding: 22px 32px;
  }

  header.scrolled {
    padding: 14px 32px;
  }

  /* Fullscreen menu: keep two columns but tighter padding */
  .fs-left {
    width: 50%;
    padding: 80px 40px 40px;
    align-items: center;
  }
  .fs-left>div {
    margin: 0 auto;
  }

  .fs-right {
    width: 50%;
    padding: 80px 40px 40px;
  }

  .fs-right-top {
    /* removed absolute positioning overrides */
  }

  .fs-close {
    top: 28px;
    right: 40px;
  }

  .fs-nav {
    margin-top: 50px;
  }

  .fs-brand-desc {
    margin-top: 24px;
  }

  .fs-nav-name {
    font-size: 15px;
  }

  .fs-nav-item {
    padding: 12px 0;
  }

  .menu-logo,
  .fs-right-logo {
    width: 180px;
    height: auto;
  }

  .fs-brand-desc p {
    font-size: 13px;
  }
}

/* =============================================
   MOBILE RESPONSIVE — up to 479px
   ============================================= */
@media (max-width: 479px) {

  /* Header */
  header {
    padding: 18px 20px;
  }

  header.scrolled {
    padding: 12px 20px;
  }

  .site-logo {
    height: 36px;
  }

  .logo-mark {
    width: 34px;
    height: 34px;
    font-size: 13px;
    border-radius: 8px;
  }

  .logo-text .main {
    font-size: 13px;
  }

  .logo-text .sub {
    font-size: 9px;
    letter-spacing: 2px;
  }

  .btn-join {
    padding: 10px 22px;
    font-size: 12px;
  }

  /* Fullscreen menu: stack into single column — NAV FIRST, BRAND SECOND */
  .fs-menu {
    flex-direction: column;
    overflow-y: auto;
  }

  /* Nav links side → order 1 = appears on TOP */
  .fs-right {
    order: 1;
    width: 100%;
    padding: 72px 24px 32px;
    justify-content: flex-start;
  }

  /* Brand/Young Chanakya side → order 2 = appears BELOW */
  .fs-left {
    order: 2;
    width: 100%;
    padding: 32px 24px 32px;
    border-right: none;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: none;
  }

  .fs-left>div {
    max-width: 100%;
    margin: 0;
  }

  .fs-right-top {
    position: static;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
  }

  .fs-close {
    position: static;
    font-size: 11px;
  }

  .fs-nav {
    margin-top: 0;
  }

  .fs-nav-name {
    font-size: 14px;
  }

  .fs-nav-item {
    padding: 12px 0;
  }

  .fs-brand-desc {
    margin-top: 20px;
  }

  .fs-brand-desc p {
    font-size: 13px;
    max-width: 100%;
    margin: 12px 0 20px;
  }

  .menu-logo,
  .fs-right-logo {
    width: 160px;
    height: auto;
  }

  .fs-right-socials {
    gap: 10px;
  }

  .fs-right-socials a {
    width: 38px;
    height: 38px;
  }

  .fs-socials {
    gap: 10px;
  }

  .fs-social {
    width: 38px;
    height: 38px;
    font-size: 11px;
  }

  .fs-website-btn {
    padding: 11px 22px;
    font-size: 12px;
  }

  .fs-events-label {
    font-size: 9px;
    letter-spacing: 2.5px;
  }

  .fs-event-card {
    padding: 12px;
    gap: 12px;
  }

  .fs-event-img {
    width: 52px;
    height: 52px;
  }

  .fs-event-title {
    font-size: 12px;
  }

  .fs-event-date {
    font-size: 10px;
  }
}