/* --- 1. GOOGLE FONTS IMPORT --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Source+Serif+4:ital,opsz,wght@0,8..60,200..900;1,8..60,200..900&display=swap');

/* --- 2. VARIABLES & RESET --- */
:root{
  --primary-color:  #380010;
  --hover-color: #830025;
  --accent-color: #0071FF;
  --text-color: #c9c9c9;
  --hover-text-color: #fdb912;
}
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html{
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  color: var(--text-color);
  scroll-behavior: smooth;
}
body{
  min-height: 100vh;
  min-height: 100dvh;
  background-color: var(--primary-color);
  overflow-x: hidden; 
}
main{
  padding: min(5em, 7%);
}
main p{
  margin-top: .35em;
}

/* --- 3. NAVBAR --- */
nav{
  background-color: var(--primary-color);
  border-bottom: 1px white solid;
  height: 100px;
  z-index: 2001;
  position: relative; 
  width: 100%;
}
nav ul{
  list-style: none;
  display: flex;
  height: 100px;
}
nav .home-li{
  margin-right: auto;
  transition: 2s ease ease;
}
nav li{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
nav a{
  display: flex;
  text-decoration: none;
  color: var(--text-color);
  padding: 1em 2em;
  transition: background-color 150ms ease;
}
nav li a:hover{
  color: var(--hover-text-color);
  transition: all 2s ease;
}
nav li a.active-link{
  color: var(--hover-text-color);
}
.home-li a:hover{
  background-color: var(--hover-color);
  transition: 0.5s ease;
}
/* --- NAVBAR UPDATED --- */
nav a.active-link {
  border-bottom: none; /* REMOVED THE LINE */
  color: var(--hover-text-color); /* Optional: Keep the yellow color */
}

/* Ensure Home icon also has no border if active */
.home-li a.active-link {
  border-bottom: none;
  color: var(--hover-text-color); /* Optional: Keep the yellow color */
}

.active-link2 {
  color: var(--hover-text-color);
}

.accent a:hover{
  background-color: var(--hover-color);
}
#open-sidebar-button{
  display: none;
  background: none;
  border: none;
  padding: 1em;
  margin-left: auto;
  cursor: pointer;
  color: white; 
  font-size: 1.5rem;
}
#close-sidebar-button{
  display: none;
  background: none;
  border: none;
  padding: 1em;
  cursor: pointer;
  color: white;
  font-size: 1.5rem;
  align-self: flex-end;
}
#overlay{
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
}
.skip-link {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1000;
  background-color: var(--accent-color); 
  color: #ffffff; 
  padding: 12px 24px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: opacity 0.3s ease;
}
.skip-link:focus {
  opacity: 1; 
  pointer-events: auto; 
  outline: 3px solid #ffffff; 
}

/* --- NAVBAR MOBILE FIX --- */
@media screen and (max-width: 900px) { 
  nav {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 70%; 
    max-width: 300px;
    z-index: 2002;
    border-left: 1px solid var(--hover-color);
    transition: right 300ms ease-in-out;
    background-color: var(--primary-color);
    display: flex;
    flex-direction: column;
    border-bottom: none;
  }
  nav ul {
    width: 100%;
    flex-direction: column;
    height: auto;
  }
  nav.show {
    right: 0;
  }
  nav.show ~ #overlay {
    display: block;
    pointer-events: auto;
  }
  nav a {
    width: 100%;
    padding: 1.5em; 
    justify-content: flex-start;
  }
  nav a.active-link {
    border-bottom: none;
    border-left: 4px solid var(--hover-text-color);
  }
  nav .home-li {
    margin-right: unset;
  }
  #open-sidebar-button, #close-sidebar-button{
    display: block;
  }
}

/* --- 4. LETTER SECTION --- */
.lettercontainer {
  margin-top: 50px;
  width: 100%;
  min-height: 1000px; 
  display: flex;
  align-items: center;
  padding: 20px 0;
}
.letterbox {
  background-color: transparent;
  width: 95%;
  margin: 0 auto;
  transform: scale(0.95);
  display: flex;
  flex-direction: column;
  box-shadow: 0 0px 15px rgba(255, 255, 255, 0.2);
  align-items: center;
  border-radius: 20px;
  color: white !important;
  padding: 60px 40px;
  box-sizing: border-box;
}
.lettertextbox {
  margin-top: 20px;
  color: white !important;
  font-size: clamp(30px, 5vw, 65px);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-style: italic;
  text-align: center;
}
.letter-content-text {
  width: 90%;
  margin: 40px 0;
  font-size: 1.2rem; 
  line-height: 1.8;
  text-align: justify;
  margin-bottom: 0px;
}
.letter-content-text p {
    margin-bottom: 35px;
}
.letter-footer {
  width: 100%;
  display: flex;
  flex-direction: column; 
  align-items: center;    
  justify-content: center;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  gap: 30px; 
}
.sg-photo {
  display: flex; 
  width: 260px; 
  height: 260px;
  border-radius: 50%;
  border: 4px solid #fdb912;
  background-image: url('tunaozdemir2.png'); 
  background-size: cover;
  background-position: center;
  box-shadow: 0px 10px 30px rgba(0,0,0,0.5);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}
.sg-photo:hover {
  transform: scale(1.1);
  border-color: #ffffff;
  box-shadow: 0px 0px 40px rgba(253, 185, 18, 0.6);
}
.sg-photo::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 50%;
  box-shadow: inset 0 0 30px rgba(0,0,0,0.4);
  pointer-events: none;
}
.sg-signature-box {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.signature-img {
  width: 280px; 
  height: 100px;
  background-image: url('signature.png'); 
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-bottom: 5px;
}
.sg-name {
  font-size: 32px;
  font-weight: 700;
  margin: 0;
  color: white;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-style: italic;
}
.sg-title {
  font-size: 18px;
  letter-spacing: 2px;
  color: #fdb912;
  text-transform: uppercase;
  margin: 0;
  font-weight: 400;
}

/* --- 5. FOOTER --- */
.footer {
  box-shadow: 0 0px 20px rgba(13, 13, 13, 0.677);
  background-color: #1e221e;
  width: 95%;
  border-radius: 20px;
  margin: auto;
  margin-bottom: 10px;
  padding: 70px 0;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}
.container{
  padding: 0px 100px;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content:space-evenly
}
.row{
  width: 90%;
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
}
ul{
  list-style: none;
}
.footer-col{
   width: 25%;
   padding: 0 15px;
}
.footer-col h4{
  font-size: 18px;
  color: #ffffff;
  text-transform: capitalize;
  margin-bottom: 35px;
  font-weight: 500;
  position: relative;
}
.footer-col h4::before{
  content: '';
  position: absolute;
  left:0;
  bottom: -10px;
  background-color: #fdb912;
  height: 2px;
  box-sizing: border-box;
  width: 50px;
}
.footer-col ul li:not(:last-child){
  margin-bottom: 10px;
}
.footer-col ul li a{
  font-size: 16px;
  text-transform: capitalize;
  color: #ffffff;
  text-decoration: none;
  font-weight: 300;
  color: #bbbbbb;
  display: block;
  transition: all 0.3s ease;
}
.footer-col ul li a:hover{
  color: #ffffff;
  padding-left: 8px;
}
.footer-col .social-links a{
  display: inline-block;
  height: 40px;
  width: 40px;
  background-color: rgba(255,255,255,0.2);
  margin:0 10px 10px 0;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  color: #ffffff;
  transition: all 0.5s ease;
}
.footer-col .social-links a:hover{
  color: #24262b;
  background-color: #ffffff;
}
@media(max-width: 767px){
  .footer-col{
    width: 50%;
    margin-bottom: 30px;
    padding: 0;
  }
  .container {
    padding: 0 20px;
  }
}
@media(max-width: 574px){
  .footer-col{
    width: 100%;
    text-align: center;
  }
  .footer-col h4::before {
    left: 50%;
    transform: translateX(-50%);
  }
}

/* --- 6. SPONSORS (TIGHTER & RESPONSIVE FIX) --- */
.SponsorDisBox {
    margin-top: 0px; 
    padding-top: 20px; 
    width: 100%;
    height: 600px; 
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    margin-bottom: 100px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-style: italic;
}
.SponsorInfScrollBox {
    position: relative; 
    margin-inline: auto;
    width: 90%;
    height: 350px; 
    max-width: 1536px;
    overflow: hidden;
    display: flex;
    align-items: center;
    mask-image: linear-gradient(
      to right,
      rgba(0,0,0,0),
      rgba(0,0,0,1) 20%,
      rgba(0,0,0,1) 80%,
      rgba(0,0,0,0)
    );
}
.SponsorBox {
    background-color: #a90432;
    width: 250px; 
    height: 90%;
    border-radius: 10px;
    position: absolute;
    border: none;
    left: calc(220px * 6); 
    animation-name: scrollleft;
    animation-duration: 35s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    box-shadow: 0 0px 15px #4e4e4e;
    transition: transform 0.4s ease;
    background-size: cover;
    background-position: center;
}
@keyframes scrollleft {
    to { left: -275px; }
}
.SponsorInfScrollBox:hover .SponsorBox{
    transform: scale(1.03);
}
.SponsorUstTextBox {
    width: 90%; 
    height: auto; 
    min-height: 20%;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-style: italic;
    font-size: clamp(24px, 5vw, 30px); 
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}
.SponsorAltTextBox {
    color: rgb(214, 206, 206);
    width: 90%; 
    height: auto;
    min-height: 10%;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: clamp(12px, 3vw, 15px);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 10px;
}
#Sponsor1 { animation-delay: calc( 35s / 6 * (6 - 1) * -1); background-image: url(images/barış+bilal.jpg); }
#Sponsor2 { animation-delay: calc( 35s / 6 * (6 - 2) * -1); background-image: url(/images/barış+umut.jpg); }
#Sponsor3 { animation-delay: calc( 35s / 6 * (6 - 3) * -1); background-image: url(images/bıtto\ 1.jpg); }
#Sponsor4 { animation-delay: calc( 35s / 6 * (6 - 4) * -1); background-image: url(images/cem\ 1.jpg); }
#Sponsor5 { animation-delay: calc( 35s / 6 * (6 - 5) * -1); background-image: url(images/salih\ 1.jpg); }
#Sponsor6 { animation-delay: calc( 35s / 6 * (6 - 6) * -1); background-image: url(images/bilal\ 1.jpg); }

@media screen and (max-width: 768px) {
    .SponsorUstTextBox, .SponsorAltTextBox { width: 95%; }
}

/* --- 7. FAQ SECTION --- */
section {
  width: 100%;
  min-height: 100vh;
  height: auto;
  padding: 50px 0;
  background-color: #380010;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.containeraccordion{
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  background-color: #380010;
}
.accordion {
  margin-top: 50px;
}
.accordion-item{
  background-color: #380010;
  border-radius: .4rem;
  margin-bottom: 1rem;
}
.accordion-item hr{
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.accordion-item hr.none{
    display: none;
}
.accordion-link{
  font-size: 1.6rem;
  color: rgba(255,255,255,.8);
  text-decoration: none;
  background-color: #380010;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  border: none;
  cursor: pointer;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4); 
}
.accordion-link h3{
  font-weight: 500;
  font-size: 20px;
}
.accordion-link .arrow {
  color: #e7d5ff;
  padding: .5rem;
  transition: transform 0.3s ease;
}
.accordion-link[aria-expanded="true"] .arrow {
  transform: rotate(90deg);
}
.answer{
  max-height: 0;
  overflow: hidden;
  position: relative;
  background-color: #380010;
  transition: max-height 650ms ease-in-out, opacity 0.5s ease;
  opacity: 0;
}
.accordion-link[aria-expanded="true"] + .answer {
  max-height: 20rem;
  opacity: 1;
}
.answer p{
  color: #fff;
  font-size: 15px;
  padding: 1rem 0 2rem 0;
  line-height: 1.6;
}

/* --- 8. BIENTOT & COMING SOON --- */
.equipecomingsoon {
    display: flex;
    height: 100vh;
    align-items: center;
    justify-content: center;
    background: #380010;
    text-align: center; 
    padding: 20px;
}
.bientot {
    color: #fff;
    font-size: clamp(3rem, 12vw, 8rem); 
    font-weight: 600;
    line-height: 1.2;
}
.bientot span {
    color: #fdb912;
    position: relative;
    white-space: nowrap; 
}
.bientot span::before {
    content: "";
    height: 1.1em;
    width: 0.08em; 
    position: absolute;
    top: 50%;
    right: -0.1em;
    background: #fdb912;
    transform: translateY(-50%);
    animation: blink 0.7s infinite;
}
.bientot span.stop-blinking::before {
    animation: none;
}
@keyframes blink {
    50% { opacity: 0 }
}
@media (max-width: 600px) {
    .bientot {
        letter-spacing: -1px;
    }
}

/* --- 9. PROGRAMME & CONFERENCE --- */
.TextSchedule {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-style: italic;
  color: white;
  font-size: 100px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.divKonteynirschedule {
  background-color: transparent;
  width: 100%;
  margin-top: 0 !important;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-direction: column;
  height: 2500px;
}
.Day1, .Day2, .Day3 {
  color: white;
  border-width: 0.5px;
  border-color: white;
  box-shadow: 0px 0px 15px black;
  border-radius: 18px;
  display: flex;
  justify-content: center;
  height: 700px;
  width: 500px
}
.day1text, .day2text, .day3text {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 80px;
}
.conferenceKonteynir {
  background-color: transparent;
  width: 100%;
  margin-top: 0 !important;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(40px, 10vh, 200px); 
  min-height: 857px;
  flex-direction: column;
  padding: 40px 20px;
}
.buttonconference1, .buttonconference2 {
  background-color: transparent;
  width: 100%;
  max-width: 500px;
  height: 100px;
  border-radius: 18px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-style: italic;
  color: white;
  font-size: clamp(18px, 5vw, 25px); 
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-shadow: 0px 0px 15px black;
  border: 5px solid white; 
  transition: all 0.2s ease;
  text-decoration: none;
  box-sizing: border-box; 
}
.buttonconference1:hover, .buttonconference2:hover {
  transform: scale(1.05);
  background-color: #7b7b7b47;
}
@media (max-width: 600px) {
  .conferenceKonteynir {
    min-height: 600px; 
    gap: 50px; 
  }
  .buttonconference1, .buttonconference2 {
    height: 80px; 
  }
}

/* --- 10. TYPOGRAPHY & COUNTDOWN --- */
.title-gradient {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-style: italic;
    font-size: clamp(3rem, 8vw, 7rem);
    line-height: 1.1;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to right, #bd0539 20%, #ffc532 30%, #fdb912 70%, #a90432 80%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    background-size: 500% auto;
    animation: textShine 5s ease-in-out infinite alternate;
    text-align: center; 
}
.subtitle-text {
    font-family: 'Inter', sans-serif;
    font-weight: 100;
    font-style: italic;
    font-size: clamp(1.2rem, 3vw, 2.5rem);
    color: #e2e2e2;
    display: flex;
    justify-content: center;
    align-items: center;
}
.date-text {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-style: italic;
    font-size: clamp(1.5rem, 4vw, 3rem);
    color: #ffffff;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.cta-button {
    position: relative;
    text-decoration: none;
    padding: 1.2rem 3rem; 
    background: #5c5c5c;
    border-radius: 18px;
    color: white;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-style: italic;
    font-size: 1.25rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    transition: transform 0.2s ease;
    z-index: 10;
}
.cta-button::before {
    content: "";
    background: linear-gradient(45deg, #ffffff, #a90432, #fdb912);
    position: absolute;
    top: -2px; left: -2px;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    z-index: -1;
    border-radius: 20px;
    filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
    background-size: 400%;
    animation: glowing 20s linear infinite;
}
.cta-button:hover { transform: scale(1.05); }
.cta-button:hover::before { opacity: 1; }

/* COUNTDOWN FIX */
.countdown-label {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ccc;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 10px;
}
.timer-container {
    display: flex;
    flex-wrap: wrap; 
    gap: 40px;
    justify-content: center;
}
.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.time-unit h2 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 100;
    line-height: 1;
}
.time-unit p {
    font-size: 0.9rem;
    color: #aaa;
    margin-top: 5px;
}
@keyframes textShine {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}
@keyframes glowing {
    0% { background-position: 0 0; }
    50% { background-position: 200% 0; }
    100% { background-position: 0 0; }
}
/* --- MOBILE RESPONSIVENESS FOR BUTTONS --- */
@media (max-width: 600px) {
    .timer-container {
        gap: 15px;
    }
    .title-gradient {
        font-size: clamp(2.5rem, 10vw, 5rem);
        line-height: 1.2;
        padding: 0 10px; 
        width: 95%;
    }
    .cta-button {
        width: 85%;
        text-align: center;
        padding: 0.8rem 1.5rem; 
        font-size: 1rem; 
    }
    .countdown-label {
        font-size: 0.85rem;
        letter-spacing: 1px;
    }
}

/* --- 11. APPLY SECTION --- */
.divKonteynirapply {
    width: 100%;
    min-height: 100vh; 
    margin-top: 50px !important;
    padding-bottom: 100px;
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 40px; 
    max-width: 1200px; 
    margin-inline: auto; 
    padding-inline: 5%; 
    align-items: center;
    justify-items: center;
}
.applybox {
    width: 100%;
    aspect-ratio: 5 / 4; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-color: transparent; 
    border: 3px solid white; 
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5); 
    color: white !important;
    text-decoration: none; 
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}
.applybox:hover {
    transform: translateY(-10px) scale(1.02);
    background-color: rgba(255, 255, 255, 0.05); 
    box-shadow: 0 10px 30px rgba(253, 185, 18, 0.2); 
    border-color: #fdb912; 
}
.apply-icon {
    font-size: 50px;
    margin-bottom: 20px;
    color: #fdb912; 
}
.applybox h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-style: italic;
    font-size: 28px;
    margin-bottom: 15px;
    line-height: 1.2;
}
.applybox h3 span {
    font-size: 32px;
    color: #fdb912; 
}
.apply-desc {
    font-family: 'Inter', sans-serif;
    font-weight: 100;
    font-style: italic;
    font-size: 16px;
    color: #e0e0e0;
    max-width: 80%;
}
@media (max-width: 900px) {
    .divKonteynirapply {
        grid-template-columns: 1fr; 
        gap: 30px;
        margin-top: 100px !important;
        height: auto; 
    }
    .applybox {
        aspect-ratio: auto;
        min-height: 300px;
    }
}

/* --- 12. COMMITTEES SECTION --- */
.divKonteynircommittees {
  width: 100%;
  margin-top: 100px;
  min-height: 800px;
  padding-bottom: 100px;
  display: flex;
  flex-wrap: wrap;       
  justify-content: center; 
  align-items: flex-start;
  gap: 70px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
.committee-card {
  display: flex;
  flex-direction: column; 
  align-items: center;    
  gap: 30px;              
  width: 300px; 
}
.committee-circle {
  position: relative; 
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  box-shadow: 0px 0px 15px black;
  border: 0.5px solid white;
  height: clamp(250px, 60vw, 300px); 
  width: clamp(250px, 60vw, 300px);  
  transition: all 0.3s ease;
  background-color: #1a1a1a; 
  background-size: cover;
  background-position: center;
  overflow: hidden; 
}
.committee-circle::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 50%;
  box-shadow: inset 0px 0px 50px 10px rgba(0, 0, 0, 0.8); 
  pointer-events: none; 
  transition: all 0.3s ease;
}
.committee-text {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: clamp(16px, 4vw, 20px);
  box-shadow: 0px 0px 15px black;
  height: 60px; 
  width: clamp(250px, 60vw, 300px);
  border-radius: 18px;
  font-family: 'Inter', sans-serif;
  font-weight: 100;
  font-style: italic;
  transition: all 0.3s ease;
  color: white;
  text-decoration: none;
  border: 1px solid transparent; 
  background-color: rgba(0,0,0,0.2); 
}
.committee-circle:hover {
  transform: scale(1.08);
  cursor: pointer;
  box-shadow: 0px 0px 25px rgba(253, 185, 18, 0.4); 
}
.committee-circle:hover::after {
  box-shadow: inset 0px 0px 30px 5px rgba(0, 0, 0, 0.5);
}
.committee-text:hover {
  transform: scale(1.05);
  background-color: rgba(255,255,255,0.9);
  color: #181717;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .divKonteynircommittees {
    gap: 50px;
    margin-top: 50px;
    padding: 0 20px 100px 20px;
  }
  .committee-card {
    width: auto; 
  }
}
#com1 { background-image: url('desarmement.jpg'); }
#com2 { background-image: url('ag2.jpeg'); }
#com3 { background-image: url('ag3.webp'); }
#com4 { background-image: url('highinterpol.jpg'); }
#com5 { background-image: url('kadesh-1.jpeg'); }
#com6 { background-image: url('senatromain.jpg'); }

/* --- 13. COMMITTEE DETAIL PAGE --- */
.committee-page-wrapper {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 20px 100px 20px; 
    overflow: hidden;
}
.committee-bg-image {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 120%;
    z-index: -2;
    background-image: url('image_77e7e1.png'); 
    background-size: cover;
    background-position: center top;
    filter: blur(12px); 
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 20%, rgba(0,0,0,0) 90%);
}
.committee-page-wrapper::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(56, 0, 16, 0.6); 
    z-index: -1;
}
.main-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-style: italic;
    font-size: clamp(2rem, 6vw, 4rem);
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 2px;
    text-shadow: 0 5px 15px rgba(0,0,0,0.3);
    background: linear-gradient(to right, #fff 20%, #fdb912 40%, #fff 60%, #fdb912 80%, #fff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: shine 5s linear infinite;
    display: block; 
    line-height: 1.3;
    word-wrap: break-word;
    padding: 0 10px;
}
.main-info-box {
    width: 100%;
    max-width: 900px;
    background: rgba(20, 20, 20, 0.75);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(253, 185, 18, 0.3);
    border-radius: 24px;
    padding: 50px 40px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.6);
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.info-content-inner { width: 100%; }
.section-heading {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: clamp(2rem, 5vw, 3rem);
    color: white;
    margin-bottom: 10px;
}
.divider-gold {
    height: 3px;
    width: 80px;
    background-color: #fdb912;
    margin: 0 auto 30px auto;
    border-radius: 2px;
}
.agenda-text {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-style: italic;
    font-size: 1.4rem;
    color: #fdb912;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 30px;
}
.details-text {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #e0e0e0;
  text-align: justify;
}
.board-section {
    width: 100%;
    max-width: 900px;
    margin-bottom: 60px;
    text-align: center;
}
.board-heading {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-style: italic;
    font-size: 2.2rem; 
    color: #fdb912; 
    margin-bottom: 40px;
    text-transform: uppercase;
}
.board-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    align-items: stretch; 
}
.board-card {
    background: linear-gradient(145deg, #380010, #1e221e);
    border: 1px solid rgba(253, 185, 18, 0.3);
    padding: 25px 45px;
    border-radius: 60px;
    min-width: 280px;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1; 
    height: 100%;
}
.board-card:hover {
    transform: translateY(-8px);
    border-color: #fdb912;
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
}
.board-role {
    font-family: 'Inter', sans-serif;
    font-weight: 100;
    font-style: italic;
    color: #fdb912;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
    line-height: 1.4;
}
.board-name {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: white;
    font-size: 1.3rem;
}
.action-buttons-container {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-gold-glow, .btn-outline {
    padding: 16px 45px;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-style: italic;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.btn-gold-glow {
    background-color: #fdb912;
    color: #380010;
    box-shadow: 0 0 15px rgba(253, 185, 18, 0.4);
}
.btn-gold-glow:hover {
    background-color: white;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 0 25px rgba(253, 185, 18, 0.7);
}
.btn-outline {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}
.btn-outline:hover {
    background-color: rgba(253, 185, 18, 0.1);
    border-color: #fdb912;
    color: #fdb912;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 0 20px rgba(253, 185, 18, 0.3);
}

/* Detail Page Mobile Adjustments */
@media (max-width: 768px) {
    .main-info-box { padding: 40px 20px; }
    .details-text { text-align: left; }
    .board-grid { flex-direction: column; align-items: center; }
    .board-card { width: 100%; min-height: auto; }
    .action-buttons-container { flex-direction: column; width: 100%; }
    .btn-gold-glow, .btn-outline { width: 100%; box-sizing: border-box; }
    .letterbox { padding: 30px 20px; }
    .sg-photo { width: 200px; height: 200px; }
    .sg-name { font-size: 26px; }
    .letter-content-text { width: 100%; font-size: 0.9rem; line-height: 1.6; }
    .details-text { text-align: left; font-size: 0.9rem; line-height: 1.6; }
}

.main-container {
  background-color: transparent;
  width: 100%;
  margin: 0 !important;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}

/* --- 14. VENUE PAGE STYLES (PC & MOBILE) --- */
.venue-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    padding-bottom: 80px;
}

/* --- MEDIA GRID (PC: Side-by-Side) --- */
.venue-media-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* PC: 50% split */
    gap: 30px;
    width: 100%;
    height: 450px; /* Fixed height for PC */
}

.media-box {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.6);
    border: 3px solid white;
    background-color: #1a1a1a;
    position: relative;
}

.media-box.photo-box {
    display: flex;
    justify-content: center;
    align-items: center;
}

.media-box.map-box {
    display: block;
}

.venue-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.media-box iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.venue-description {
    width: 90%;
    max-width: 900px;
}

/* --- TRANSPORTATION GRID (PC: 2 Columns) --- */
.transport-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 30px;
    width: 100%;
    margin-top: 20px;
}

.transport-card {
    background-color: rgba(255, 255, 255, 0.05); 
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    
    /* PC: Center everything */
    display: flex;
    flex-direction: column; 
    align-items: center; 
    justify-content: flex-start;
    text-align: center;
    
    min-height: 250px; 
    transition: all 0.3s ease;
}

.transport-card:hover {
    transform: translateY(-5px);
    border-color: #fdb912;
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.transport-icon-row {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    height: 60px; 
}

/* Logo Sizes */
.transport-badge {
    height: 55px; 
    width: auto;
}

.transport-main-logo {
    height: 50px; 
    width: auto;
}

/* Text Styling */
.centered-content h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-style: italic;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.centered-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #e0e0e0;
    line-height: 1.6;
}

/* --- MOBILE RESPONSIVENESS (VENUE FIXES) --- */
@media (max-width: 900px) {
    
    .venue-container {
        padding-left: 20px;
        padding-right: 20px;
    }

    /* Venue Grid: Stack Vertically */
    .venue-media-grid {
        grid-template-columns: 1fr; /* Single column */
        height: auto; /* Allow growth */
        gap: 30px;
    }

    /* Mobile Box Heights */
    .media-box.photo-box {
        height: 250px; 
        order: 1; 
    }

    .media-box.map-box {
        height: 300px; 
        order: 2; 
    }

    /* Transport Grid: Stack Vertically */
    .transport-grid {
        grid-template-columns: 1fr;
    }
    
    .transport-card {
        min-height: auto; 
        padding: 30px 20px;
    }
}

/* --- CONTACT FORM STYLES --- */

.contact-section {
  width: 100%;
  max-width: 800px;
  margin: 80px auto 0 auto; /* Spacing from FAQ above */
  padding: 40px;
  background-color: rgba(255, 255, 255, 0.05); /* Transparent dark background */
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.form-group {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.form-group label {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: #fdb912; /* Gold theme color */
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.form-group input, 
.form-group select, 
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background-color: rgba(0, 0, 0, 0.2);
  color: white;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}

/* Focus State (Gold Glow) */
.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
  outline: none;
  border-color: #fdb912;
  box-shadow: 0 0 10px rgba(253, 185, 18, 0.2);
  background-color: rgba(0, 0, 0, 0.4);
}

/* Submit Button Override */
.submit-btn {
  margin-top: 10px;
  width: 100%;
  border: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.1rem;
}

/* Status Message Text */
.form-status {
  margin-top: 15px;
  font-size: 0.95rem;
  text-align: center;
  min-height: 20px;
  font-family: 'Inter', sans-serif;
}

.form-status.success {
  color: #4cd964; /* Success Green */
}

.form-status.error {
  color: #ff3b30; /* Error Red */
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .contact-section {
    padding: 30px 20px;
    margin-top: 50px;
    width: 100%;
    border-radius: 15px;
  }
  
  .form-group input, 
  .form-group select, 
  .form-group textarea {
    font-size: 0.9rem; /* Prevents zoom on iOS */
  }
}


