@import url('https://fonts.googleapis.com/css2?family=Caudex:ital,wght@0,400;0,700;1,400;1,700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}







/* Loading Screen */
#loading-screen {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(135deg, #00a969, #015A2C); /* Subtle gradient background */
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 1s ease, opacity 1s ease; /* Smooth transition for fade-out */
}

/* Loader Animation */
.loader {
  width: 50px;
  height: 50px;
  border: 6px solid #fff;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
      transform: rotate(0deg);
  }
  100% {
      transform: rotate(360deg);
  }
}

/* Content */
#content {
  position: relative;
  z-index: 1; /* Ensure content is underneath the loading screen */
  opacity: 1; /* Ensure content is visible */
}












body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  color: #D3D5FF;
  background-color: #fff;
}







/* Custom cursor and follower styles */
.Cursor__Wrapper {
  position: fixed;
  pointer-events: none;
  z-index: 10000; /* Ensure it stays on top */
}

.Cursor__Follower {
  width: 60px; /* Slightly larger for better visibility */
  height: 60px; /* Slightly larger for better visibility */
  background: #00d9693b; /* Light pink with lower opacity */
  border-radius: 50%;
  transform: translate(-50%, -50%);
}


.Cursor__Container {
  position: relative;
}

.Cursor__Dot {
  width: 10px; /* Adjust to fit the design */
  height: 10px; /* Adjust to fit the design */
  background: #00D969;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
/* Hover effect styles */
.Cursor__HoverEffect {
  position: fixed;
  pointer-events: none;
  z-index: 10001; /* Ensure it stays on top */
  opacity: 0; /* Start hidden */
  transition: opacity 0.1s ease; /* Smooth transition */
}

.Hover__Circle {
  width: 50px; /* Adjust size as needed */
  height: 50px; /* Adjust size as needed */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
}

.Hover__Icon {
  width: 20px;
  height: 20px;
  background: url('../images/clickIconPink.svg') no-repeat center center;
  rotate: 270deg;
  background-size: contain;
}


/* Apply custom cursor styles to interactive elements */
button, a, input, textarea {
  cursor: pointer;
}




a {
  text-decoration: none;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
#heroLogo {
  width: 22.5vw;
  display: block;
  border-radius: 50%;
  margin: 0 auto;
  margin-top: 10vw;
}
#hero {
  position: relative;
}

#navbar {
  display: flex;
  justify-content: space-between;
  align-items: center; /* Center items vertically */
  width: 100vw;
  background-color: hsla(149, 98%, 18%, 75%);
  position: fixed;
  top: 0;
  left: 0;
  transition: transform 0.5s ease;
  z-index: 1000;
  padding: 0 2rem; /* Added padding for spacing */
}

#navHeader {
  width: 20vw;
  height: 20vh; /* Maintain aspect ratio */
  z-index: 10;
  order: 1; /* Ensure the image is on the far left */
}

.menu-icon {
  display: none;
  width: 30px;
  height: 24px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 11; /* Ensures the menu icon is above other elements */
  order: 3;
}

.menu-icon div {
  width: 100%;
  height: 4px;
  background-color: white;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-icon.open .bar1 {
  transform: rotate(45deg) translate(7px, 7px); /* Increased rotation and translation */
}

.menu-icon.open .bar2 {
  opacity: 0;
}

.menu-icon.open .bar3 {
  transform: rotate(-45deg) translate(7px, -7px); /* Increased rotation and translation */
}

#navItems {
  display: flex;
  margin: 0 2.4vw;
  order: 2; /* Ensure the nav items are in the center */
}

.navItem {
  margin: 2.4vw;
  color: #D3D5FF;
  font-size: calc(1.3/5*6vw);
  font-weight: 900;
  transition: transform 0.5s ease, color 0.5s ease;
  text-decoration: none;
}

.navItem:hover {
  transform: scale(1.2);
  color: white;
}

.navItem.active {
  color: white;
}

.comingSoon {
  margin: 0 auto;
  margin-top: 11rem;
  margin-bottom: 20rem;
  font-size: 5vw;
  background: linear-gradient(90deg, #6effb4, #00D969);
  -webkit-background-clip: text;
  font-family: "Caudex", sans-serif;
  -webkit-text-fill-color: transparent;
  width: fit-content;
  display: block;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-stroke: 0.5px green;
}

#secretariat {
  position: relative;
  background: url(../images/natureSvg2.svg) no-repeat center center/cover;
  width: 100vw;
  height: max-content;
  margin-bottom: 0;
  overflow: hidden; /* To prevent leaves from overflowing */
  text-align: center;
}


#secretariat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1); /* Subtle light overlay */
  mix-blend-mode: overlay; /* Adds a shiny effect to mimic metal */
  z-index: -1;
}
.secretariatInfo {
  max-width: 50%;
}
.secretariatName {
  font-size: 2.6vw;
  margin-bottom: 1vw;
  color: #015A2C;
  background: linear-gradient(90deg, #83ffbf, #00D969);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transform: scale(1.1);
}
.secretariatPosition {
  font-size: 1.5vw;
  font-weight: 400;
  margin-top: 3rem;
  transform: scale(1.1);
}
.branch {
  position: absolute;
  opacity: 0.2; /* Tone down the leaves */
  mix-blend-mode: multiply; /* Blend them subtly with the background */
}

#branch1 {
  right: -5vw; /* Adjust placement */
  top: 5vw;
  transform: rotate(-15deg);
}

#branch2 {
  left: -5vw;
  bottom: 5vw;
  transform: rotate(195deg);
}

#lettersContainer {
  display: grid; 
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  padding: 5vw;
}

.letterHeader {
  display: flex;
  align-items: center;
  gap: 2vw;
  color: white;
  font-size: 2vw;
  margin-bottom: 2vw;
  text-align: center;
}
/* Container with animated gradient border */
.letterLogo {
  position: relative;
  display: inline-block;
  padding: 8px;
  width: 50%;
  background-image: conic-gradient(from 0deg, #2E8B57  0%, #228B22  20%, #6B8E4E  60%, #015A2C 100%);
  background-size: 400% 400%;
  animation: gradient-border 5s ease-in infinite;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
  background-color: white; /* Ensures a solid inner background */
  
}

@keyframes gradient-border {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
/* The inner image */
.letterLogo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#lettersH1 {
  font-size: 6vw;
  margin-top: 4.5rem;
  background: linear-gradient(90deg, #015A2C, #00D969);
  -webkit-background-clip: text;
  font-family: "Caudex", sans-serif;
  -webkit-text-fill-color: transparent;
}

#lettersH1Container {
  margin-top: 5vw;
  margin-bottom: -1vw;
  display: flex;
  justify-content: center;
}
.letter {
  background: rgba(0, 0, 0, 0.6);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  color: #D3D5FF;
}



#letter1 {
  transform: translateX(50%);
  width: 100%;
}

@media screen and (max-width: 480px) {
  #letter1 {
    transform: none;
    width: 340px;
  }
  #letter1 .letterLogo {
    transform: translateX(-10%);
  }
}






.footer {
  background-color: #f0f0f0;
  padding: 20px 0;
  text-align: center;
  border-top: 1px solid #e0e0e0;
}
.footer .footerContainer {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}
.footer .footerColumn {
  flex: 1;
  min-width: 200px;
  margin: 10px 0;
}
.footer h3 {
  color: #2c3e50;
  font-size: 18px;
  margin-bottom: 10px;
}
.footer a {
  color: #2c3e50;
  text-decoration: none;
  display: block;
  margin: 5px 0;
}
.footer a:hover {
  text-decoration: underline;
}
.footer .footerBottomBar {
  border-top: 1px solid #e0e0e0;
  padding: 10px 0;
  font-size: 14px;
  color: #b0b0b0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
.footer .footerBottomBar span {
  display: inline;
  margin: 5px 0;
}
#eceKucukaslanCokTatli {
  font-size: larger;
  color: black; 
  transition: all 0.5s ease;
}
#eceKucukaslanCokTatli:hover {
  transform: scale(1.05);
}




@media screen and (max-width: 768px) {
  .menu-icon {
      display: flex;
      margin-right: 0rem; /* Pushes the menu icon to the right */
  }


  body.bg-loaded {
    background: none; /* Remove placeholder color for mobile */
  }
  #navHeader {
    height: 22vw;
  }
  #navItems {
      display: none;
      flex-direction: column;
      background-color: hsla(149, 98%, 18%, 75%);
      position: absolute;
      top: 4rem;
      right: 2rem;
      width: 200px;
      border-radius: 8px;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  }

  #navItems.show {
      display: flex;
  }

  .navItem {
      padding: 1rem;
      color: white;
  }

  .navItem:hover {
      background-color: #015A2C;
  }
}

@media screen and (max-width: 480px) {
  .footer .container {
    flex-direction: column;
    align-items: center;
  }
  .navItem {
    font-size: 1rem;
    margin: 0.5rem;
  }

  #heroLogo {
    width: 40vw;
  }


  .learnMoreButton {
    width: 10rem;
    height: 2.5rem;
    font-size: 1rem;
  }
  #aboutMunHeader {
    font-size: 1.8rem;
  }

  #aboutMunImg {
    width: 150px;
  }

  #committeesContainer {
    grid-template-columns: 1fr;
    padding-top: 1rem;
  }



  .letterLogo img{

    border-radius: 50%;
  }
  .letter p {
    font-size: medium;
  }
  .letterLogo{
    transform: scale(1.2);
    border-radius: 50%;
  }

  #hero {
    margin-bottom: -2rem;
  }
  #aboutMun {
    margin-top: 6rem;
    margin-bottom: -4vh;
  }
  #heroHeader {
    width: 36vh;
    height: 12vh;
    margin-top: 6rem;
    
  }
  #heroLogo {
    width: 70vw;
    margin-top: 0rem;
    margin-bottom: 6rem;
  }
  #navHeader {
    width: 60vw;
  }
  

  .clickImg {
    width: 0.9vh;
    height: 0.9vh;
  }
  .learnMoreButton {
    margin-top: 7.5vh;
    width: 8rem;
    font-size: 0.9rem;
    border-radius: 0.5vh;
    box-shadow: 0.75vh 0.75vh 0 rgba(0, 123, 255, 0.8), -0.75vh -0.75vh 0 rgba(0, 79, 163, 0.8);
  }

  #aboutMunHeader {
    font-size: 2rem;
  }

 
  #lettersH1 {
    font-size: 3.5rem;
    margin-top: 8rem;
    background: linear-gradient(90deg, #015A2C, #00D969);
    -webkit-background-clip: text;
    font-family: "Caudex", sans-serif;
    -webkit-text-fill-color: transparent;
  }
  .clickImg {
    width: 1rem;
    height: 1rem;
    transform: translate(15%, 20%);

  }

  .letterHeader {
    margin-bottom: 1.2rem;
  }
  #committeesHeader {
    font-size: 2rem;
  }
  .zigzag-item .text h2 {
    font-size: 1.6rem;
  }

  #committeesContainer {
    columns: 1;
  }
  .committee {
    display: grid;
    width: 40vh;
    height: 40vh;
    margin: 20px auto;
    border-radius: 20%;
  }
  .committeeHeader {
    margin-top: 4rem;
    display: inline-block;
    font-size: 1.6rem;
    margin-bottom: 2rem;
  }
  .comingSoon {
    font-size: 7.5vh;
    margin-top: 20rem;
    margin-bottom: 20rem;
  }
  .music-player {
    padding: 0;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .music-player-wrapper {
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
  }
  .zigzag-item {
    flex-direction: column;
    text-align: center;
  }

  .zigzag-item:nth-child(even) {
    flex-direction: column-reverse  ;
  }
  #aboutMunHeroContainer {
    min-height: 100vh;
  } 
  .zigzag-item .text p {
    font-size: 2.2vh;
    margin-top: 1vh;
    color: #222;
    line-height: 1.8; /* Improved readability */
  }
  .zigzag-item .image img {
    width: 80vw;
    margin-bottom: 2rem;
  }
  .zigzag-2 {
    padding-bottom: -10vh;
  }
  #aboutMunButton {
    margin-bottom: 2vh;
  }
  #black {
    color: #222 !important;
  }   
  #prev {
    position: absolute;
    left: -70px; /* Adjust based on cloud position */
    top: -30px;

  }
  
  #play-pause {
    position: absolute;
    left: -20px; /* Adjust based on cloud position */
    top: -30px;

  }
  
  #next {
    position: absolute;
    left: 30px; /* Adjust based on cloud position */
    top: -30px;
  }
  #eceKucukaslanCokTatli {
    font-size: 0.90rem;
  }
  #eceKucukaslanCokTatli div {
    font-size: 1.2rem;
  }
  #customCursor {
    display: none;
  }
  #lettersContainer {
    display: grid; 
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    padding: 5vw;
  }
  .secretariatName {
    font-size: 1rem;
    transform: scale(1.5) translateX(5%);

  }
  .secretariatPosition {
    font-size: 1rem;
    transform: translateX(5%) scale(1.2);
  }
}
