/* ===== CSS RESET & BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  background-color: #000;
  color: #fff;
  overflow-x: hidden;
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000 url("bg.png") center / cover fixed no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  z-index: -2;
  /* Added will-change for better mobile performance */
  will-change: transform;
}

/* Mobile optimization - disable fixed background on mobile for better quality and performance */
@media (max-width: 768px) {
  body::before {
    background-attachment: scroll;
    background-size: cover;
    background-position: center;
  }
}

/* Extra small devices - ensure background displays properly */
@media (max-width: 480px) {
  body::before {
    background-attachment: scroll;
    background-size: cover;
    background-position: center;
  }
}

.background-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(223, 195, 111, 0.1));
  z-index: -1;
}

/* ===== HEADER STYLES ===== */
.header {
  position: relative;
  width: 100%;
  padding: 2rem 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.8) 70%, rgba(0, 0, 0, 0.6) 100%);
  backdrop-filter: blur(15px);
  z-index: 1000;
  border-bottom: 1px solid rgba(223, 195, 111, 0.2);
}

.header-content {
  width: 100%;
  padding: 0 2rem;
}

/* ===== LUXURY NAVIGATION STYLES ===== */
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  animation: fadeInDown 0.8s ease-out;
  position: relative;
  width: 100%;
}

.logo-section {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
  flex: 0 0 auto;
  min-width: 200px;
}

.logo {
  height: 50px;
  width: auto;
  background: none !important;
  background-color: transparent !important;
  object-fit: contain;
  transition: all 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.logo-section {
  background: transparent;
}

.center-title {
  position: relative;
  left: auto;
  top: auto;
  transform: none;
  width: 100%;
  text-align: center;
  margin: 0.5rem 0;
  z-index: 5;
}

.main-header-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.6rem, 4vw, 2rem);
  font-weight: 700;
  background: linear-gradient(135deg, #dfc36f, #f4e4a6, #dfc36f);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s ease-in-out infinite;
  text-shadow: 0 0 30px rgba(223, 195, 111, 0.3);
  letter-spacing: 0.02em;
  text-align: center;
  margin-bottom: 0.5rem;
}

.header-subtitle {
  font-family: "DM Sans", sans-serif;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  letter-spacing: 0.05em;
  margin: 0;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  line-height: 1.4;
}

/* ===== HAMBURGER MENU STYLES ===== */
.hamburger-container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 0 0 auto;
  min-width: 200px;
}

.hamburger-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border-radius: 8px;
  position: relative;
  z-index: 1001;
}

.hamburger-btn:hover {
  background: rgba(223, 195, 111, 0.1);
}

.hamburger-btn::after {
  content: "MENU";
  font-family: "DM Sans", sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  color: rgba(223, 195, 111, 0.7);
  position: absolute;
  bottom: -8px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.hamburger-btn:hover::after {
  color: #dfc36f;
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background: #dfc36f;
  border-radius: 2px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-origin: center;
  box-shadow: 0 0 10px rgba(223, 195, 111, 0.3);
  position: relative;
  display: block;
}

.hamburger-btn .hamburger-line {
  transform: rotate(75deg);
}

.hamburger-btn:hover .hamburger-line {
  transform: rotate(0deg);
  background: #f4e4a6;
  box-shadow: 0 0 15px rgba(223, 195, 111, 0.5);
}

.hamburger-btn.active .hamburger-line {
  background: #dfc36f !important;
  box-shadow: 0 0 15px rgba(223, 195, 111, 0.5) !important;
  transform: rotate(0deg) !important;
}

.hamburger-btn.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translateY(9px) !important;
}

.hamburger-btn.active .hamburger-line:nth-child(2) {
  opacity: 0 !important;
  transform: scaleX(0) !important;
}

.hamburger-btn.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translateY(-9px) !important;
}

.hamburger-btn.active::after {
  opacity: 0;
  transform: translateY(5px);
}

/* Reposition close button to bottom center when menu is open */
.hamburger-btn.active {
  position: fixed;
  bottom: 2rem;
  right: 50%;
  transform: translateX(50%);
  z-index: 1003;
  background: rgba(223, 195, 111, 0.1);
  border: 1px solid rgba(223, 195, 111, 0.3);
}

.hamburger-btn.active:hover {
  background: rgba(223, 195, 111, 0.2);
  border-color: rgba(223, 195, 111, 0.5);
}

/* Mobile navigation menu styles */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.95) 100%);
  backdrop-filter: blur(20px);
  z-index: 1002;
  transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-left: 1px solid rgba(223, 195, 111, 0.2);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.mobile-nav::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.mobile-nav.active::before {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav-content {
  padding: 22rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
  overflow-y: auto;
}

.mobile-nav-link {
  font-family: "DM Sans", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.mobile-nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(223, 195, 111, 0.1), transparent);
  transition: left 0.5s ease;
}

.mobile-nav-link:hover::before {
  left: 100%;
}

.mobile-nav-link:hover {
  color: #dfc36f;
  border-color: rgba(223, 195, 111, 0.3);
  background: rgba(223, 195, 111, 0.1);
  transform: translateX(-5px);
  box-shadow: 0 4px 15px rgba(223, 195, 111, 0.2);
}

.mobile-nav-link.active {
  color: #000;
  background: #dfc36f;
  border-color: #dfc36f;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(223, 195, 111, 0.4);
}

.mobile-nav-link.active:hover {
  background: #e8d082;
  transform: translateX(-5px);
  box-shadow: 0 6px 20px rgba(223, 195, 111, 0.5);
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex: 0 0 auto;
  min-width: 200px;
  justify-content: flex-end;
}

.logo-text {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #dfc36f;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.nav-link {
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(223, 195, 111, 0.1), transparent);
  transition: left 0.5s ease;
}

.nav-link:hover::before {
  left: 100%;
}

.nav-link:hover {
  color: #dfc36f;
  border-color: rgba(223, 195, 111, 0.3);
  background: rgba(223, 195, 111, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(223, 195, 111, 0.2);
}

.nav-link.active {
  color: #000;
  background: #dfc36f;
  border-color: #dfc36f;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(223, 195, 111, 0.4);
}

.nav-link.active:hover {
  background: #e8d082;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(223, 195, 111, 0.5);
}

.page-header {
  text-align: center;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.main-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #dfc36f;
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.1em;
}

/* ===== LUXURY HOME PAGE STYLES ===== */
.luxury-main {
  min-height: 100vh;
  padding: 6rem 0;
  position: relative;
  z-index: 1;
  margin-top: -46px;
}

.home-stack {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.luxury-main .home-stack .confpres-luxury-section,
.luxury-main .home-stack .secgen-luxury-section,
.luxury-main .home-stack .countdown-section {
  margin: 0 auto;
}

/* ===== CONFERENCE PRESIDENT SECTION (Image on RIGHT) ===== */
.confpres-luxury-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.confpres-luxury-container {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 6rem;
  align-items: start;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 4rem;
  box-shadow: 0 25px 80px rgba(223, 195, 111, 0.1);
  border: 1px solid rgba(223, 195, 111, 0.3);
  position: relative;
  overflow: hidden;
}

.confpres-luxury-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(223, 195, 111, 0.1), transparent);
  animation: shimmerSlow 4s ease-in-out infinite 1s;
  pointer-events: none;
}

.confpres-image-container {
  position: sticky;
  top: 2rem;
}

.confpres-luxury-photo {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  transition: all 0.4s ease;
  border: 2px solid rgba(223, 195, 111, 0.3);
}

.confpres-luxury-photo:hover {
  transform: scale(1.02);
  box-shadow: 0 25px 80px rgba(223, 195, 111, 0.2);
  border-color: rgba(223, 195, 111, 0.5);
}

.confpres-content-container {
  padding-top: 1rem;
}

.confpres-luxury-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 3rem;
  letter-spacing: -0.01em;
  line-height: 1.3;
  position: relative;
}

.confpres-luxury-title::after {
  content: "";
  position: absolute;
  bottom: -1rem;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #dfc36f, #f4e4a6);
  border-radius: 2px;
}

.confpres-luxury-text {
  font-family: "DM Sans", sans-serif;
  color: rgba(255, 255, 255, 0.9);
}

.confpres-luxury-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  font-weight: 400;
  text-align: justify;
}

.confpres-luxury-text p:last-of-type {
  margin-bottom: 3rem;
}

/* ===== SECRETARY GENERAL SECTION (Image on LEFT) ===== */
.secgen-luxury-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.secgen-luxury-container {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 6rem;
  align-items: start;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 4rem;
  box-shadow: 0 25px 80px rgba(223, 195, 111, 0.1);
  border: 1px solid rgba(223, 195, 111, 0.3);
  position: relative;
  overflow: hidden;
}

.secgen-luxury-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(223, 195, 111, 0.1), transparent);
  animation: shimmerSlow 4s ease-in-out infinite 2s;
  pointer-events: none;
}

.secgen-image-container {
  position: sticky;
  top: 2rem;
}

.secgen-luxury-photo {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  transition: all 0.4s ease;
  border: 2px solid rgba(223, 195, 111, 0.3);
}

.secgen-luxury-photo:hover {
  transform: scale(1.02);
  box-shadow: 0 25px 80px rgba(223, 195, 111, 0.2);
  border-color: rgba(223, 195, 111, 0.5);
}

.secgen-content-container {
  padding-top: 1rem;
}

.secgen-luxury-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 3rem;
  letter-spacing: -0.01em;
  line-height: 1.3;
  position: relative;
}

.secgen-luxury-title::after {
  content: "";
  position: absolute;
  bottom: -1rem;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #dfc36f, #f4e4a6);
  border-radius: 2px;
}

.secgen-luxury-text {
  font-family: "DM Sans", sans-serif;
  color: rgba(255, 255, 255, 0.9);
}

.secgen-luxury-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  font-weight: 400;
  text-align: justify;
}

.secgen-luxury-text p:last-of-type {
  margin-bottom: 3rem;
}

.signature {
  padding-top: 2rem;
  border-top: 1px solid rgba(223, 195, 111, 0.3);
}

.signature-name {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #dfc36f;
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.signature-title {
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ===== SECRETARIAT PAGE STYLES ===== */
.secretariat-main {
  padding: 4rem 0;
  min-height: 100vh;
}

.secretariat-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.secretariat-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: #dfc36f;
  text-align: center;
  margin-bottom: 4rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  background: linear-gradient(45deg, #dfc36f, #f4e4a6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.secretariat-row {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  justify-content: center;
}

.secretariat-row.two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.secretariat-row.three-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.secretariat-row.four-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.secretariat-member {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.secretariat-member.large {
  max-width: 600px;
  margin: 0 auto;
}

.member-title {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #dfc36f;
  text-align: center;
  margin-bottom: 1rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.secretariat-member.large .member-title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.member-card {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(223, 195, 111, 0.2);
  border-radius: 16px;
  padding: 2rem;
  text-decoration: none;
  color: inherit;
  transition: all 0.4s ease;
  width: 100%;
  display: block;
  cursor: pointer;
}

.member-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(223, 195, 111, 0.3);
  border-color: rgba(223, 195, 111, 0.5);
  background: rgba(0, 0, 0, 0.7);
}

.secretariat-member.large .member-card {
  padding: 3rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  text-align: left;
}

.member-image {
  text-align: center;
  margin-bottom: 1.5rem;
}

.secretariat-member.large .member-image {
  margin-bottom: 0;
  flex-shrink: 0;
}

.member-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #dfc36f;
  transition: all 0.3s ease;
}

.secretariat-member.large .member-photo {
  width: 150px;
  height: 150px;
}

.member-card:hover .member-photo {
  border-color: #f4e4a6;
  transform: scale(1.05);
}

.member-info {
  text-align: center;
}

.secretariat-member.large .member-info {
  text-align: left;
  flex: 1;
}

.member-name {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #dfc36f;
  margin-bottom: 0.5rem;
}

.secretariat-member.large .member-name {
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
}

.member-position {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(223, 195, 111, 0.8);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.member-description {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0;
}

.secretariat-member.large .member-description {
  font-size: 1.1rem;
}

/* ===== OLD HOME PAGE STYLES (keeping for backward compatibility) ===== */
.home-main {
  padding: 4rem 0;
  min-height: 100vh;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.welcome-section {
  margin-bottom: 6rem;
  animation: fadeInUp 0.8s ease-out;
}

.welcome-content {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(223, 195, 111, 0.3);
  border-radius: 20px;
  padding: 4rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.welcome-text {
  font-family: "DM Sans", sans-serif;
  font-size: 1.2rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  text-align: justify;
  letter-spacing: 0.02em;
}

.secgen-section {
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.secgen-content {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(223, 195, 111, 0.3);
  border-radius: 20px;
  padding: 4rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.secgen-image {
  flex: 0 0 300px;
}

.secgen-photo {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(223, 195, 111, 0.3);
  transition: transform 0.4s ease;
}

.secgen-photo:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 50px rgba(223, 195, 111, 0.4);
}

.secgen-text {
  flex: 1;
}

.secgen-title {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #dfc36f;
  margin-bottom: 2rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.secgen-letter {
  font-family: "DM Sans", sans-serif;
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  text-align: justify;
  letter-spacing: 0.02em;
}

/* Luxury dark countdown styles (Home) */
.countdown-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  animation: fadeInUp 0.8s ease-out 0.15s both;
}

.countdown-container {
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(223, 195, 111, 0.35);
  border-radius: 20px;
  padding: 3rem 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(223, 195, 111, 0.1);
}

.countdown-container::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(223, 195, 111, 0.08), transparent);
  animation: shimmerSlow 5s ease-in-out infinite;
  pointer-events: none;
}

.countdown-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: center;
  color: #ffffff;
  margin-bottom: 1.75rem;
  text-shadow: 0 0 24px rgba(223, 195, 111, 0.25);
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}

.time-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: radial-gradient(
    120% 120% at 50% 0%,
    rgba(223, 195, 111, 0.08) 0%,
    rgba(0, 0, 0, 0.75) 40%,
    rgba(0, 0, 0, 0.85) 100%
  );
  border: 1px solid rgba(223, 195, 111, 0.35);
  border-radius: 16px;
  padding: 1.5rem 1rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6), inset 0 0 0 1px rgba(223, 195, 111, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.time-unit:hover {
  transform: translateY(-3px);
  border-color: rgba(223, 195, 111, 0.55);
  box-shadow: 0 18px 40px rgba(223, 195, 111, 0.2), inset 0 0 0 1px rgba(223, 195, 111, 0.18);
}

.time-value {
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1, "lnum" 1;
  font-family: "DM Sans", sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
  text-shadow: 0 0 22px rgba(223, 195, 111, 0.22);
}

.time-label {
  margin-top: 0.5rem;
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(223, 195, 111, 0.9);
}

.countdown-subtitle {
  margin-top: 1.25rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.75);
  font-family: "DM Sans", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

/* ===== COMMITTEE PLACEHOLDER PAGE ===== */
.committee-header {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 100%) 100%);
  position: relative;
}

.back-button {
  position: absolute;
  left: 2rem;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(223, 195, 111, 0.2);
  border: 1px solid #dfc36f;
  color: #dfc36f;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.back-button:hover {
  background: #dfc36f;
  color: #000;
  transform: translateY(-50%) translateX(-5px);
}

.committee-page-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #dfc36f;
  text-align: center;
  margin-bottom: 4rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.committee-main {
  padding-top: 8rem;
  padding-bottom: 4rem;
  min-height: 100vh;
}

.committee-details {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}

.committee-hero {
  margin-bottom: 3rem;
  text-align: center;
}

.committee-hero-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(223, 195, 111, 0.3);
}

.committee-info {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(223, 195, 111, 0.2);
  border-radius: 16px;
  padding: 3rem;
}

.committee-description h2 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: #dfc36f;
  margin-bottom: 1.5rem;
}

.committee-description h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  color: #dfc36f;
  margin: 2rem 0 1rem 0;
}

.committee-description p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}

.committee-description ul {
  list-style: none;
  margin-bottom: 2rem;
}

.committee-description li {
  padding: 0.5rem 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
}

.committee-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.stat-item {
  background: rgba(223, 195, 111, 0.1);
  border: 1px solid rgba(223, 195, 111, 0.3);
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
}

.stat-label {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.5rem;
}

.stat-value {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  color: #dfc36f;
}

.matrix-btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  border: 1px solid #dfc36f;
  color: #dfc36f;
  background: rgba(223, 195, 111, 0.12);
  border-radius: 8px;
  text-decoration: none;
  font-family: "DM Sans", sans-serif;
  font-size: 0.95rem;
  transition: all 0.25s ease;
}

.matrix-btn:hover {
  background: #dfc36f;
  color: #000;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(223, 195, 111, 0.25);
}

.eb-info {
  margin-top: 2.5rem;
}

.eb-title {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #dfc36f;
  margin-bottom: 1.25rem;
  text-align: center;
}

.eb-grid {
  display: flex;
  gap: 1.25rem;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
}

.eb-card {
  position: relative;
  width: 260px;
  height: 320px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(223, 195, 111, 0.35);
  background: rgba(0, 0, 0, 0.6);
  box-shadow: 0 10px 30px rgba(223, 195, 111, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.eb-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(223, 195, 111, 0.22);
}

.eb-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.05);
}

.eb-overlay {
  position: absolute;
  inset: auto 0 0 0;
  height: 40%;
  padding: 0.9rem 1rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.4), transparent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.25rem;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.eb-card:hover .eb-overlay {
  opacity: 1;
}

.eb-name {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: #ffffff;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.eb-role {
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  color: #dfc36f;
}

/* ===== PLACEHOLDER PAGE STYLES ===== */
.placeholder-main {
  padding: 4rem 0;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.placeholder-content {
  text-align: center;
  max-width: 600px;
  padding: 3rem;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(223, 195, 111, 0.2);
  border-radius: 16px;
  animation: fadeInUp 0.8s ease-out;
}

.placeholder-content.profile-layout {
  max-width: 700px;
  padding: 3.5rem;
}

.profile-image-container {
  margin-bottom: 2rem;
}

.profile-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #dfc36f;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

.profile-photo:hover {
  transform: scale(1.05);
  border-color: #f4e4a6;
}

.profile-name {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #dfc36f;
  margin-bottom: 0.75rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.profile-role {
  font-size: 1.2rem;
  font-weight: 500;
  color: rgba(223, 195, 111, 0.9);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.profile-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  text-align: justify;
  margin: 0;
}

.placeholder-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #dfc36f;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.placeholder-text {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* ===== MAIN CONTENT ===== */
.main-content {
  padding-top: 4rem;
  padding-bottom: 4rem;
  min-height: 100vh;
}

/* ===== COMMITTEES GRID ===== */
.committees-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  align-items: start;
}

/* ===== COMMITTEE CARDS ===== */
.committee-card {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease-out;
  cursor: pointer;
}

.committee-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.committee-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(223, 195, 111, 0.2);
  transition: all 0.4s ease;
  background: linear-gradient(135deg, rgba(223, 195, 111, 0.1), rgba(0, 0, 0, 0.3));
}

.committee-image:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 50px rgba(223, 195, 111, 0.4);
}

.committee-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.committee-image:hover img {
  transform: scale(1.1);
}

.committee-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  padding: 2rem;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.committee-image:hover .committee-overlay {
  transform: translateY(0);
}

.committee-title {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #dfc36f;
  margin-bottom: 0.5rem;
}

.committee-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
}

/* ===== STATIC FOOTER ===== */
.footer {
  position: relative;
  width: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.98) 100%);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(223, 195, 111, 0.3);
  padding: 0;
  z-index: 999;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
  margin-top: auto;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 3rem 2rem;
  align-items: center;
}

.footer-cta {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}

.footer-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(223, 195, 111, 0.2);
  background: rgba(223, 195, 111, 0.05);
  transition: all 0.3s ease;
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 350px;
}

.footer-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(223, 195, 111, 0.1), transparent);
  transition: left 0.5s ease;
}

.footer-btn:hover::before {
  left: 100%;
}

.footer-btn:hover {
  color: #dfc36f;
  border-color: rgba(223, 195, 111, 0.4);
  background: rgba(223, 195, 111, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(223, 195, 111, 0.2);
}

.footer-btn-icon {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}

.footer-btn:hover .footer-btn-icon {
  filter: brightness(0) invert(1) brightness(1.3);
}

.footer-btn-text {
  font-weight: 500;
}

.footer-btn-contact {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer-btn-phone {
  font-size: 0.9rem;
  color: rgba(223, 195, 111, 0.8);
  font-weight: 400;
}

.footer-btn:hover .footer-btn-phone {
  color: #dfc36f;
}

.footer-map {
  display: flex;
  justify-content: center;
  align-items: center;
}

.map-embed {
  position: relative;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 16 / 10;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(223, 195, 111, 0.1);
  border: 2px solid rgba(223, 195, 111, 0.2);
  transition: all 0.3s ease;
}

.map-embed:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(223, 195, 111, 0.2);
  border-color: rgba(223, 195, 111, 0.3);
  transform: translateY(-2px);
}

.map-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(0.2) contrast(1.1);
  transition: filter 0.3s ease;
}

.map-embed:hover iframe {
  filter: grayscale(0) contrast(1.2);
}

.nav-links {
  display: none;
}

.luxury-main .home-stack .countdown-container,
.luxury-main .home-stack .confpres-luxury-container,
.luxury-main .home-stack .secgen-luxury-container {
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(223, 195, 111, 0.18);
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35), inset 0 0 0 1px rgba(223, 195, 111, 0.06);
  backdrop-filter: blur(6px);
}

.luxury-main .home-stack .confpres-luxury-section,
.luxury-main .home-stack .secgen-luxury-section,
.luxury-main .home-stack .countdown-section {
  margin-left: auto;
  margin-right: auto;
}

/* ===== RESOURCES PAGE STYLES ===== */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  justify-items: center;
}

.resource-card {
  max-width: 360px;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(223, 195, 111, 0.25);
  border-radius: 14px;
  padding: 1.25rem 1.25rem 1.1rem;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.resource-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(223, 195, 111, 0.25);
  border-color: rgba(223, 195, 111, 0.5);
  background: rgba(0, 0, 0, 0.68);
}

.resource-title {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  color: #dfc36f;
  margin: 0 0 .35rem;
}

.resource-desc {
  font-family: "DM Sans", sans-serif;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 .9rem;
  line-height: 1.6;
  font-size: .98rem;
}

.resource-btn {
  display: inline-block;
  padding: 0.6rem 1rem;
  border-radius: 10px;
  border: 1px solid #dfc36f;
  color: #dfc36f;
  text-decoration: none;
  background: rgba(223, 195, 111, 0.12);
  font-family: "DM Sans", sans-serif;
  font-size: .95rem;
  transition: all .25s ease;
}

.resource-btn:hover {
  background: #dfc36f;
  color: #000;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(223, 195, 111, 0.25);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shimmer {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes shimmerSlow {
  0% {
    left: -100%;
  }
  50%,
  100% {
    left: 100%;
  }
}

.committee-card:nth-child(1) {
  animation-delay: 0.1s;
}
.committee-card:nth-child(2) {
  animation-delay: 0.2s;
}
.committee-card:nth-child(3) {
  animation-delay: 0.3s;
}
.committee-card:nth-child(4) {
  animation-delay: 0.4s;
}
.committee-card:nth-child(5) {
  animation-delay: 0.5s;
}
.committee-card:nth-child(6) {
  animation-delay: 0.6s;
}
.committee-card:nth-child(7) {
  animation-delay: 0.7s;
}
.committee-card:nth-child(8) {
  animation-delay: 0.8s;
}

.copy-notification {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #dfc36f;
  color: #000;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  z-index: 9999;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.copy-notification.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.footer-btn {
  position: relative;
  cursor: pointer;
}

.footer-btn--email,
.footer-btn--phone {
  cursor: pointer;
}

.footer-btn--email:hover,
.footer-btn--phone:hover {
  cursor: pointer;
}

/* ===== RETURN TO SECRETARIAT BUTTON STYLES ===== */
.return-to-secretariat {
  max-width: 1400px;
  margin: 4rem auto;
  padding: 0 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.return-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: rgba(223, 195, 111, 0.1);
  border: 1px solid #dfc36f;
  border-radius: 12px;
  color: #dfc36f;
  text-decoration: none;
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.return-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(223, 195, 111, 0.2), transparent);
  transition: left 0.5s ease;
}

.return-btn:hover::before {
  left: 100%;
}

.return-btn:hover {
  background: #dfc36f;
  color: #000;
  transform: translateX(-5px);
  box-shadow: 0 8px 25px rgba(223, 195, 111, 0.3);
}

.return-arrow {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.return-btn:hover .return-arrow {
  transform: translateX(-3px);
}

/* ===== REGISTER PAGE STYLES ===== */
.register-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
  animation: fadeInUp 0.8s ease-out;
}

.registration-card {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 4rem 3rem;
  box-shadow: 0 25px 80px rgba(223, 195, 111, 0.1);
  border: 1px solid rgba(223, 195, 111, 0.3);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.registration-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(223, 195, 111, 0.1), transparent);
  animation: shimmerSlow 4s ease-in-out infinite;
  pointer-events: none;
}

.priority-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: #dfc36f;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  position: relative;
}

.deadline-text {
  font-family: "DM Sans", sans-serif;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 3rem;
  letter-spacing: 0.05em;
}

.registration-buttons {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 500px;
  margin: 0 auto;
}

.register-btn {
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 1.25rem 2.5rem;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
}

.register-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.register-btn:hover::before {
  left: 100%;
}

.primary-btn {
  background: #dfc36f;
  color: #000;
  border: 2px solid #dfc36f;
  box-shadow: 0 8px 25px rgba(223, 195, 111, 0.3);
}

.primary-btn:hover {
  background: #e8d082;
  border-color: #e8d082;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(223, 195, 111, 0.5);
}

.secondary-btn {
  background: rgba(223, 195, 111, 0.1);
  color: #dfc36f;
  border: 2px solid #dfc36f;
  backdrop-filter: blur(10px);
}

.secondary-btn:hover {
  background: rgba(223, 195, 111, 0.2);
  border-color: #e8d082;
  color: #e8d082;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(223, 195, 111, 0.3);
}

/* ===== TABLET BREAKPOINT (768px - 1024px) ===== */
@media (max-width: 1024px) {
  .committees-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .secretariat-row.four-columns {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .secretariat-row.three-columns {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 2.5rem 2rem;
    text-align: center;
  }

  .footer-cta {
    align-items: center;
  }

  .map-embed {
    max-width: 600px;
  }

  .back-button {
    position: relative;
    left: 0;
    top: 0;
    transform: none;
    margin-bottom: 1rem;
  }

  .committee-page-title {
    margin-top: 1rem;
  }

  .nav-container {
    margin-bottom: 1.5rem;
  }

  .main-header-title {
    font-size: clamp(1.6rem, 4vw, 2rem);
  }

  .logo-section {
    min-width: 150px;
  }

  .secgen-content {
    gap: 3rem;
  }

  .secgen-image {
    flex: 0 0 250px;
  }

  .secgen-photo {
    height: 350px;
  }

  .resources-section .main-title,
  .resources-section .subtitle {
    text-align: center;
  }

  .resources-section {
    margin-top: 2rem;
    margin-bottom: 6rem;
  }

  .main-content {
    margin-bottom: 6rem;
  }

  .confpres-luxury-container,
  .secgen-luxury-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .confpres-image-container,
  .secgen-image-container {
    position: relative;
    top: 0;
  }

  .confpres-luxury-photo,
  .secgen-luxury-photo {
    height: 400px;
  }

  .countdown-grid {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
  }

  .resources-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .eb-grid {
    justify-content: center;
  }

  .eb-card {
    width: 100%;
    max-width: 360px;
    height: 280px;
  }
}

/* ===== MOBILE BREAKPOINT (480px - 768px) ===== */
@media (max-width: 768px) {
  .header {
    padding: 1rem 0;
  }

  .header-content {
    padding: 0 1rem;
  }

  .nav-container {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
  }

  .center-title {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: 100%;
    text-align: center;
    margin: 0.5rem 0;
    z-index: 5;
  }

  .logo {
    height: 40px;
  }

  .logo-section {
    min-width: auto;
    order: 1;
  }

  .center-title {
    order: 2;
  }

  .hamburger-container {
    min-width: auto;
    order: 3;
  }

  .main-header-title {
    font-size: 1.3rem;
  }

  .header-subtitle {
    font-size: 0.85rem;
  }

  .mobile-nav {
    width: 280px;
  }

  .mobile-nav-content {
    padding: 6rem 1.5rem 2rem;
  }

  .mobile-nav-link {
    font-size: 1rem;
    padding: 0.75rem 1rem;
  }

  /* Main Content */
  .luxury-main {
    padding: 3rem 0;
  }

  .home-stack {
    gap: 1.5rem;
  }

  .confpres-luxury-section,
  .secgen-luxury-section,
  .countdown-section {
    padding: 0 1rem;
  }

  .confpres-luxury-container,
  .secgen-luxury-container {
    padding: 2rem;
    gap: 1.5rem;
  }

  .confpres-luxury-photo,
  .secgen-luxury-photo {
    height: 300px;
  }

  .confpres-luxury-title,
  .secgen-luxury-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .confpres-luxury-text p,
  .secgen-luxury-text p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    text-align: left;
  }

  .confpres-luxury-text p:last-of-type,
  .secgen-luxury-text p:last-of-type {
    margin-bottom: 1.5rem;
  }

  /* Countdown */
  .countdown-container {
    padding: 2rem 1rem;
  }

  .countdown-title {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
  }

  .countdown-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }

  .time-unit {
    padding: 1rem 0.8rem;
  }

  .time-value {
    font-size: 1.8rem;
  }

  .time-label {
    font-size: 0.8rem;
    margin-top: 0.3rem;
  }

  .countdown-subtitle {
    font-size: 0.85rem;
    margin-top: 1rem;
  }

  /* Committees */
  .committees-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
  }

  .committee-card {
    transform: translateY(0);
    opacity: 1;
  }

  .committee-image img {
    height: 250px;
  }

  .committee-overlay {
    padding: 1.5rem;
  }

  .committee-title {
    font-size: 1.2rem;
  }

  .committee-desc {
    font-size: 0.85rem;
  }

  /* Secretariat */
  .secretariat-main {
    padding: 2rem 0;
  }

  .secretariat-content {
    padding: 0 1rem;
  }

  .secretariat-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }

  .secretariat-row,
  .secretariat-row.two-columns,
  .secretariat-row.three-columns,
  .secretariat-row.four-columns {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .member-card {
    padding: 1.5rem;
  }

  .secretariat-member.large .member-card {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
    gap: 1rem;
  }

  .secretariat-member.large .member-info {
    text-align: center;
  }

  .member-title {
    font-size: 1.2rem;
  }

  .secretariat-member.large .member-title {
    font-size: 1.4rem;
  }

  .member-photo {
    width: 100px;
    height: 100px;
  }

  .secretariat-member.large .member-photo {
    width: 120px;
    height: 120px;
  }

  .member-name {
    font-size: 1.1rem;
  }

  .secretariat-member.large .member-name {
    font-size: 1.3rem;
  }

  .member-position {
    font-size: 0.9rem;
  }

  .member-description {
    font-size: 0.9rem;
  }

  /* Committee Details */
  .committee-main {
    padding-top: 5rem;
    padding-bottom: 2rem;
  }

  .committee-details {
    padding: 0 1rem;
  }

  .committee-page-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }

  .committee-info {
    padding: 1.5rem;
  }

  .committee-description h2 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }

  .committee-description h3 {
    font-size: 1.1rem;
    margin: 1.5rem 0 0.75rem 0;
  }

  .committee-description p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
  }

  .committee-stats {
    grid-template-columns: 1fr;
    gap: 0.8rem;
    margin-top: 1.5rem;
  }

  .eb-grid {
    gap: 1rem;
  }

  .eb-card {
    width: 100%;
    max-width: 100%;
    height: 250px;
  }

  /* Footer */
  .footer-inner {
    padding: 2rem 1rem;
    gap: 1.5rem;
  }

  .footer-cta {
    gap: 1rem;
  }

  .footer-btn {
    max-width: 100%;
    padding: 0.875rem 1.25rem;
    font-size: 0.9rem;
  }

  .footer-btn-icon {
    width: 20px;
    height: 20px;
  }

  .map-embed {
    max-width: 100%;
    aspect-ratio: 16 / 9;
  }

  /* Resources */
  .resources-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1rem;
  }

  .resource-card {
    max-width: 100%;
    padding: 1rem;
  }

  .resource-title {
    font-size: 1.1rem;
  }

  .resource-desc {
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
  }

  .resource-btn {
    padding: 0.5rem 0.8rem;
    font-size: 0.85rem;
  }

  /* Registration */
  .register-content {
    padding: 0 1rem;
  }

  .registration-card {
    padding: 2rem 1.5rem;
    border-radius: 16px;
  }

  .priority-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }

  .deadline-text {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .registration-buttons {
    gap: 0.8rem;
    max-width: 100%;
  }

  .register-btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.9rem;
  }

  /* Return Button */
  .return-to-secretariat {
    margin: 2rem auto;
    padding: 0 1rem;
  }

  .return-btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
  }

  /* Main Content */
  .main-content {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .page-header {
    margin-bottom: 2rem;
  }

  .main-title {
    font-size: 1.5rem;
  }

  .subtitle {
    font-size: 1rem;
  }

  /* Placeholder */
  .placeholder-main {
    padding: 2rem 0;
  }

  .placeholder-content {
    padding: 2rem 1.5rem;
    max-width: 100%;
  }

  .placeholder-content.profile-layout {
    max-width: 100%;
    padding: 2rem 1.5rem;
  }

  .profile-photo {
    width: 140px;
    height: 140px;
  }

  .profile-name {
    font-size: 1.5rem;
  }

  .profile-role {
    font-size: 1rem;
  }

  .profile-description {
    font-size: 0.95rem;
  }

  .placeholder-title {
    font-size: 1.5rem;
  }

  .placeholder-text {
    font-size: 1rem;
  }

  /* Welcome Section */
  .welcome-content,
  .secgen-content {
    padding: 1.5rem;
  }

  .welcome-text,
  .secgen-letter {
    font-size: 0.95rem;
    text-align: left;
  }

  .secgen-title {
    font-size: 1.5rem;
  }

  .secgen-image {
    flex: 0 0 auto;
    width: 100%;
  }

  .secgen-photo {
    width: 100%;
    height: 250px;
  }

  .home-main {
    padding: 2rem 1rem;
  }

  .welcome-section {
    margin-bottom: 3rem;
  }

  .secgen-section {
    margin-bottom: 3rem;
  }
}

/* ===== SMALL PHONE BREAKPOINT (max-width: 480px) ===== */
@media (max-width: 480px) {
  .header {
    padding: 0.75rem 0;
  }

  .header-content {
    padding: 0 0.75rem;
  }

  .nav-container {
    gap: 0.25rem;
    margin-bottom: 0.75rem;
  }

  .center-title {
    margin: 0.25rem 0;
  }

  .main-header-title {
    font-size: 1.1rem;
  }

  .header-subtitle {
    font-size: 0.75rem;
  }

  .logo {
    height: 35px;
  }

  .hamburger-btn {
    padding: 0.75rem;
  }

  .hamburger-line {
    width: 20px;
    height: 2px;
  }

  .hamburger-btn::after {
    font-size: 0.6rem;
    bottom: -6px;
  }

  .mobile-nav {
    width: 100vw;
  }

  .mobile-nav-content {
    padding: 5rem 1rem 2rem;
    align-items: center;
  }

  .mobile-nav-link {
    width: 100%;
    text-align: center;
    max-width: 280px;
    font-size: 0.95rem;
    padding: 0.7rem 1rem;
  }
}

/* ===== EXTRA SMALL PHONE (max-width: 360px) ===== */
@media (max-width: 360px) {
  .center-title .main-header-title {
    font-size: 1rem;
  }

  .confpres-luxury-title,
  .secgen-luxury-title {
    font-size: 1.2rem;
  }

  .countdown-title {
    font-size: 1rem;
  }

  .time-value {
    font-size: 1.3rem;
  }

  .secretariat-title {
    font-size: 1.3rem;
  }

  .committee-page-title {
    font-size: 1.2rem;
  }

  .priority-title {
    font-size: 1.2rem;
  }

  .placeholder-title {
    font-size: 1.2rem;
  }

  .main-title {
    font-size: 1.2rem;
  }
}

/* Prevent body scroll when mobile menu is open */
body.menu-open {
  overflow: hidden;
}
