
html, body {
    scroll-behavior: smooth;
    overflow-x: hidden;
    background-color: var(--background-color);
    color: var(--text-color);
    transition: background-color 0.3s, color 0.3s;
}

#root {
    min-height: 100dvh;
    width: 100dvw;
    height: auto;
    position: absolute !important;
    display: flex;
    margin: 0;
    padding: 0;
}

 #overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(6px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease;
  }
 
#overlay2 {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(6px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.5s ease;
}

#overlay2.active {
  opacity:1;
  display:flex;
}

  #warning-box {
    background: #fff;
    padding: 2.5rem 3rem;
    border-radius: 15px;
    max-width: 420px;
    text-align: center;
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.7);
    animation: popIn 0.3s ease forwards;
  }

  #warning-box h1 {
    font-size: 1.9rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: #c0392b;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 1px 1px 5px rgba(192, 57, 43, 0.8);
  }

  #warning-box p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
  }

  #warning-box a {
    display: inline-block;
    color: #2980b9;
    font-weight: 600;
    border: 2px solid #2980b9;
    padding: 0.4rem 1rem;
    border-radius: 8px;
    transition: background-color 0.3s ease, color 0.3s ease;
  }

  #warning-box a:hover {
    background-color: #2980b9;
    color: white;
  }

  #close-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 1.4rem;
    font-weight: bold;
    color: #c0392b;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, color 0.2s ease;
  }
  #close-btn:hover {
    color: #7b241c;
    transform: scale(1.3);
  }

    #profile-close-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 1.4rem;
    font-weight: bold;
    color: #c0392b;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index:99999;
    transition: transform 0.2s ease, color 0.2s ease;
  }
  #profile-close-btn:hover {
    color: #7b241c;
    transform: scale(1.3);
  }

* {
    box-sizing: border-box;
    max-width:100dvw;
    margin: 0;
    padding: 0;
    font-family: "Rubik", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-variation-settings:
        "wdth" 100;
    user-select: none;
}

*::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

*::-webkit-scrollbar-track {
    background-color: #f0f0f0;
    border-radius: 10px;
}

*::-webkit-scrollbar-thumb {
    background-color: #6200ea;
    border-radius: 10px;
    border: 2px solid #f0f0f0;
}

*::-webkit-scrollbar-thumb:hover {
    background-color: #3700b3;
}

*::-webkit-scrollbar-corner {
    background-color: #f0f0f0;
}

*::selection {
    color: purple;
    background-color: whitesmoke;
}

.glass {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  color: black;
  padding: 10px 15px;
  border-radius: 10px;
}

main {
    position:absolute;
    display:flex;
    flex-direction:column;
    width:100dvw;
    height:100dvh;
}

article {
  border:3px solid #444;
}

footer {
    width:100dvw;
    height:45dvh;
    position:absolute;
    display:flex !important;
    flex-direction: column-reverse;
    color:black;
    font-size: calc(5px + .5vw + .5vh);
}

.footer-bottom {
    display:flex;
    position:absolute;
    justify-content: center;
    align-items: center;
    align-content: center;
    width:100dvw;
    height:5dvh;
    color:whitesmoke;
    background: #111;
    border-top: 3px solid #444;
}

.footer-container {
    display: flex;
    position: absolute;
    width: 100dvw;
    background-color: gray;
    height:40dvh;
    bottom: 5dvh;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-direction: row;
    flex-wrap: wrap;
}

.footer-container-left {
    display: flex;
    flex-direction: column;
    align-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: center;

}

.footer-container-title {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-container-title .social-icons {
  display: flex;
  gap: 0.5rem;
}

.footer-section {
    width:35dvw;
    height:auto;
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    align-content: center;
    text-align:center;
    list-style-type:none;
}

.footer-section p {
user-select:text;
}

.footer-container h3 {
    display:inline-block;
    white-space: nowrap;
    overflow: hidden;
    user-select:text;
}

.contact a {
  color:black;
  display: inline-block;
  padding:.1rem;
  font-weight: bold;
  transition: all 0.3s ease;
  user-select:all;
}

.contact a:hover {
  color: rgb(166, 228, 214);   
}

#about-us-title {
  color:black;
}

.subscribe a {
  color:whitesmoke;
}

.subscribe a:hover {
  color:rgb(166, 228, 214);
}

.about a {
  color:black;
  display: inline-block;
  padding:.1rem;
  font-weight: bold;
  transition: all 0.3s ease;
  user-select:all;
}

.about a:hover {
  color: rgb(166, 228, 214);   
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.contact-us-content {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  padding:.5rem;
  margin:.5rem;
  row-gap:1rem;
}

.contact-us-content a {
  color:#333;
}

.contact-us-content a:hover {
  color:rgb(166, 228, 214);
}

#contact-us {
  width:50%;
  height:auto;
  max-height:90dvh;
}

#footer-container-right {
  display:flex;
  width:auto;
  row-gap:3rem;
  flex-direction: column;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  color: #60fc8a;
  width: auto;
  height: auto;
  padding:.3rem;
  border-radius: 50%;
  font-size: calc(7px + .8vw + .8vh);
  transition: all 0.3s ease;
  box-shadow: 0 6px 6px rgba(0, 0, 0, 0.15);
}

.social-icons a:hover {
  background-color: #60fc8a;
  color: white;
  transform: scale(1.1);
}

#article_one {
    width:100dvw;
    height:100dvh;
    background:wheat;
    position:absolute;
}

#article_two {
    width:100dvw;
    height:100dvh;
    background-color:wheat;
    display:flex;
    justify-content: center;
    text-align:center;
    align-items: center;
    position:absolute;
    top:100dvh;
}

.packet {
  width: 30dvw;
  height: 60%;
  object-fit: cover;
  display: block;
  left: 0;
  top: 0;
  margin:2rem;
  transition: transform 0.4s ease, filter 0.4s ease;
  position: relative;
  z-index: 1;
  border-radius:25px;
  border: #007bff 1px solid;
}

/* Hover efekti */
.packet:hover {
  transform: scale(1.01);
  filter: brightness(1.1);
}

#article_three {
    width:100dvw;
    height:100dvh;
    background-color:wheat;
    display:flex;
    justify-content: center;
    text-align:center;
    align-items: center;
    position:absolute;
    top:200dvh;
}

#article_four {
      width:100dvw;
    height:100dvh;
    background-color:wheat;
    display:flex;
    justify-content: center;
    text-align:center;
    align-items: center;
    position:absolute;
    top:300dvh;
}

#article_five {
        width:100dvw;
    height:100dvh;
    background-color:wheat;
    display:flex;
    justify-content: center;
    text-align:center;
    align-items: center;
    position:absolute;
    top:400dvh;
}

#about-us {
    width:100dvw;
    height:auto;
    background-color:whitesmoke;
    display:flex;
    justify-content: center;
    align-items: center;
    position:absolute;
    top:500dvh;
    line-height: 1.7;
    flex-direction: column;
    justify-content: flex-start;
    margin: auto;
    text-align:center;
    padding: 2dvh 4dvw;
}

#about-us h2 {
  font-size: calc(6px + 2vw + 2vh);
  text-align: center;
  color: black;
}

#about-us h3 {
  font-size: calc(6px + 1.2vw + 1.2vh);
  margin-top: 2rem;
  text-align: center;
  color: black;
}

#about-us p {
  font-size: calc(10px + .5vw + .5vh);
  color:#333;
}

.ersag-content {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4rem 1rem;
  background: linear-gradient(135deg, #e4f0e2, #f9f9f9);
}

.ersag-inner {
  text-align: center;
  max-width:90dvw;
  max-height:90dvh;
  background: white;
  display:flex;
  position: absolute;
  align-items: center;
  border-radius: 20px;
  flex-direction:row;
  padding:1rem;
  gap:1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  animation: fadeIn 1s ease;
}

.ersag-inner h2 {
  font-size: calc(5px + 3vw + 3vh);
  color: #60fc8a;
  font-weight: bold;
  letter-spacing: 1px;
}

.ersag-inner h3 {
  font-size: calc(7px + .7vw + .7vh);
  color: #444;
}

.ersag-inner p {
  font-size: calc(2px + .9vw + .9vh);
  line-height: 1.7;
  color: #555;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100dvw;
  height: 10dvh;
  background-color: rgb(49, 49, 49);
  z-index: 1000;
  display: flex !important;
  align-items: center;
  box-sizing: border-box;
  transition: transform 0.3s ease;
  transform: translateY(0);
}

header.header--hidden {
  transform: translateY(-100%);
}

#header_logo_default_black {
    max-width: 7dvw;
    max-height: 10dvh;
    width: auto;
    height: auto;
}

#header_right {
    display: flex;
    font-size: calc(3px + .3vw + .3vh);
    flex-direction: row;
    flex-wrap: nowrap;
    white-space: nowrap;
    align-items: center;
    padding:.5rem;
    gap:1dvw;
    justify-content: center;
    position: absolute;
    right:0;
}

#info div {
  display: inline-flex;
}

#info div a {
    color:white;
}

#header_right a {
    font-weight: 900;
    color:black;
    user-select:all;
}

#header_left {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: center;
    color:white;
    margin: 0;
    padding: 1rem;
}

#header_left i {
    color:white;
}

#header_left h2 {
  font-family: "Sorts Mill Goudy", serif;
  font-weight: 500;
  font-style: normal;
  font-size: calc(3px + .7vw + .7vh);
}

#header_left a {
    color:white;
}

.fa-solid {
    font-size:calc(7px + 0.7vw + 0.7vh);
}

.fa-solid.fa-phone {
    color:#60fc8a;
}

.fa-solid.fa-envelope {
    color:#007bff;
}

.fa-brands.fa-whatsapp {
  color: #25D366;
  font-size: calc(7px + 0.7vw + 0.7vh);
}

#first-nav-menu {
    display:flex;
    flex-direction: row;
    z-index: 10;
    width:auto;
}

.nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    column-gap: .3rem;
}

.nav-menu li {
    position: relative;
    transition:all .1s;
    color:white;
}

.nav-menu li a {
    position: relative;
    display: inline-block;
    font-size: calc(5px + 0.5vw + 0.5vh);
    font-weight: 500;
    color:whitesmoke;
    padding: 6px 10px;
    z-index: 1;
    transition: color 0.3s ease;
}

.nav-menu > ul > li:hover > a,
.nav-menu > ul > li:hover,
.nav-menu > ul > li > a:hover {
  transform: scale(1.01);
  color: rgb(255, 186, 39);
}


.dropdown-toggle2 .fa-angle-down {
  transition: transform 0.3s ease;
}

.fa-angle-down {
  font-size:.8rem;
}

.dropdown-toggle2:hover .fa-angle-down {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}

.hamburger {
  display:none;
  width: 30px;
  height: 25px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 11;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: whitesmoke;
  border-radius: 2px;
  transition: 0.4s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

#side-menu {
    position: fixed;
    top: 10dvh;
    right: -100%;
    height: 90dvh;
    width: 80dvw;
    background: white;
    display: flex;
    flex-direction:column;
    align-items: center;
    transition: right 0.2s ease, opacity 0.3s ease;
    z-index: 9999999999;
}


#side-menu.active {
    right: 0;
    opacity: 1;
}

#side-menu nav > div {
      position: absolute;
      top: 40px;
      left: 0;
      width: 100%;
      padding: 15px;
      transition: transform 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      pointer-events: none;
    }

    #side-menu nav > div a {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 12px;
      text-decoration: none;
      background: #fafafa;
      margin: 6px 0;
      border-radius: 6px;
      border: none;
      font-size: 15px;
      cursor: pointer;
      width:100%;
      color: #333;
    }

    #side-menu nav > div a:hover,
    #side-menu nav > div button:hover {
      background: #e3e3e3;
    }

    #side-menu nav > div.active {
      opacity: 1;
      pointer-events: auto;
      transform: translateX(0);
    }

    #side-menu nav > div.exit-left {
      transform: translateX(-100%);
      opacity: 0;
    }

    #side-menu nav > div.exit-right {
      transform: translateX(100%);
      opacity: 0;
    }

  #back-button {
      display: none;
      width: 100%;
      padding: 12px;
      background: #b6b6b6;
      border: none;
      font-size: 16px;
      text-align: left;
      cursor: pointer;
    }

#welcome_sign {
  width: 50dvw;
  height: 100%;
  object-fit: cover;
  display: block;
  left:0;
  top:0;
}

#profile-menu {
    position: fixed;
    display:flex;
    row-gap:2.5rem;
    border-radius:12px;
    top:50dvh;
    left:50dvw;
    transform:translate(-50%,-50%);
    height: 70dvh;
    animation: slideUp 0.3s ease-out;
    width: 90dvw;
    background: white;
    z-index: 9999999999;
}

@keyframes slideUp {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

#profile {
  border:2px solid white;
  color:white;
  border-radius:25px;
  padding:.4rem;
  margin-right:1rem;
  height:4dvh;
  align-items:center;
  text-align:center;
  display:flex;
  transition:all 0.2s;
  font-size: calc(3px + .4vw + .4vh);
}

#profile:hover {
  color:rgb(255, 186, 39);
  border:2px solid rgb(255, 186, 39);
  transform:scale(1.02);
}

.profile-header h2 {
  margin: 0;
  font-size: 1.5rem;
  color: #333;
}

.profile-header .status {
  margin-top: 0.5rem;
  font-size: 1rem;
  color: #666;
}

.profile-header {
  width:100%;
  height:100%;
  display:flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
}

.guest-view h2 {
  margin-bottom: 0.5rem;
  color: #333;
}

.guest-view p {
  color: #555;
  margin-bottom: 1.5rem;
}

.actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  background:#cfcfcf;
  color: #333;
  border: none;
  border-radius: var(--radius);
  padding: 0.6rem 1rem;
  text-decoration: none;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: background var(--transition);
}

.btn:hover {
  background: #1a6ee0;
}

.btn:hover {
  background: #e0e0e0;
}

.logout {
  display: block;
  margin-top: 2rem;
  text-align: center;
  background: #ff4d4d;
}

.logout:hover {
  background: #e63636;
}

#close_button {
    font-size: calc(15px + 1.5vw + 1.5vh);
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 20px;
    z-index: 1000;
    color: black;
    transition: color 0.3s ease;
}

#close_button2 {
    font-size: calc(15px + 1.5vw + 1.5vh);
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 20px;
    z-index: 1000;
    color: black;
    transition: color 0.3s ease;
}

#close_button:hover {
    color: red;
}

.dropdown-menu {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background:#60fc8a;
  border-radius: 25px;
  border: 1px solid #ccc;
  width:auto;
  box-sizing: border-box;
  z-index:1000;
}

.dropdown-menu li {
 width: 100%;
 background-color: white;
 height:100%;
 border-radius:20px;
 display: flex;
 align-items: center;
 justify-content:center;
 position: relative;
}

.dropdown-menu li a {
  color:black;
  font-size:calc(3px + .3vw + .3vh);
  font-weight: 900;
}

.dropdown.active > .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
}

.dropdown-menu.nested {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  position: absolute;
  top: 100%;
  right: 50%;
  width:100%;
  transform: translateX(-50%);
  background:whitesmoke;
  color:black;
  border-radius: 25px;
  border: 1px solid #ccc;
  width:800%;
  box-sizing: border-box;
  z-index:1000;
}

.dropdown-menu.nested li {
  background-color:#60fc8a;
}

.dropdown-menu > li.active-nested > .dropdown-menu.nested {
  opacity: 1;
  pointer-events: auto;
}

li.active-nested > .dropdown-menu.nested {
  opacity: 1;
  pointer-events: auto;
}

.username {
  color: black;
  border-radius:8px;
  padding:.3rem;
  font-size: calc(4px + 1.5vw + 1.5vh);
  text-align: center;
}

.guest-view {
  color:black;
  font-size: calc(10px + 1vw + 1vh);
  position: absolute;
  left:50dvw;
  width:40dvw;
  height:70dvh;
  display:flex;
  flex-direction: column;
  align-content: center;
  align-items: center;
  justify-content: space-evenly;
}

.guest-view span {text-align: center;}

.guest-view a {color: black; font-size: calc(7px + .8vw + .8vh);transition:all .1s;}
.guest-view a:hover {transform:scale(1.1);}

.durum {
    color: black;
    border-radius:8px;
    padding:.3rem;
    font-size: calc(2px + 1vw + 1vh);
    font-weight: bold;
    text-align: center;
}

#logoutBtn {
    display: inline-flex;
    align-items: center;
    color: #444;
    background: #f5f5f5;
    border: 1px solid #ccc;
    border-radius: 6px;
    text-decoration: none;
    padding:.3rem;
    font-size: calc(4px + 1vw + 1vh);
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}

#logoutBtn:hover {
  background: #e74c3c;
  border-color: #e74c3c;
  color: #fff;
}

.fa-solid.fa-circle-user {
  display:inline-block;
  font-size:calc(15px + 1vw + 1vh);
  cursor: pointer;
}

.dropdown-menu i {
  color:black;
}

.packet-div {
  display:flex;
  flex-direction: column
}

@media (max-width: 768px) {
#mail {
  visibility: hidden
}

#tel {
  visibility: hidden
}

    .dropdown-menu {
  width:65dvw;
}
.dropdown-menu.nested {
  width:65dvw;
}
.ersag-inner {
  flex-direction:column;
}
#article_two {
  flex-direction: column;
}
.packet-div {
  display:flex;
  align-items: center;
}
.dropdown-menu li a {
  font-size:calc(5px + .5vw + .5vh);
}

    #header_logo_default_black {
        max-width: 7dvw;
        max-height: 10dvh;
        width: auto;
        height: auto;
    }

    .language-dropdown {
      display:none;
      opacity:0;
      visibility:hidden;
    }

    #first-nav-menu {
        display: none;
    }

    #hamburger {
        display: flex;
    }

}

@media (max-width: 1162px) {
    #welcome_sign {
    position: relative;
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
  }

  #profile-menu {
    flex-direction: column !important;
    height: auto;
    width: 90dvw;
    padding:1rem;
  }

  .guest-view {
    position: relative;
    width: 100%;
    left: 0;
    height: auto;
    padding: 1rem;
    text-align: center;
    font-size: calc(12px + 1vw);
  }
}

@keyframes fadeInZoom {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0);
    }

    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes popIn {
    0% {
      transform: scale(0.6);
      opacity: 0;
    }
    100% {
      transform: scale(1);
      opacity: 1;
    }
  }



#music-toggle-button {
      position: fixed;
      bottom: 10px;
      right: 10px;
      width: 6.5dvh;
      height: 6.5dvh;
      background: #60fc8a;
      color: white;
      display: flex;
      justify-content: center;
      align-items: center;
      border-radius: 50%;
      box-shadow: 0 0 1.5dvh rgba(0, 0, 0, 0.5);
      cursor: pointer;
      z-index: 1000;
      transition: background 0.3s ease, transform 0.2s ease;
    }

    #music-toggle-button:hover {
      background: #388e3c;
      transform: scale(1.1);
    }

    #music-icon {
      font-size: 2.5dvh;
    }

    #music-panel {
      position: fixed;
      top: 50%;
      left: 50%;
      transform:translate(-50%,-50%);
      background: #1e1e1e;
      padding: 1rem;
      border-radius: 10px;
      box-shadow: 0 0 1.5dvh #4caf50;
      width: min(90dvw, 400px);
      display: none;
      flex-direction: column;
      gap: 1rem;
      z-index: 999;
      color:whitesmoke;
    }

    .music-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #60fc8a;
  padding: 0.5rem;
  border-radius: 8px 8px 0 0;
  cursor: move;
  user-select: none;
}

.hide-button {
  background: none;
  border: none;
  font-size: 3rem;
  font-weight: 900;
  position: relative;
  cursor: pointer;
  color: #333;
  z-index:99999999;
}

    label {
      font-weight: bold;
    }

    select, input[type=range] {
      width: 100%;
      padding: 0.6dvh;
      border-radius: 1dvh;
      border: none;
      font-size: var(--base-font);
    }

    input[type=range] {
      background: #4caf50;
      height: 1.2dvh;
    }

    input[type=range]::-webkit-slider-thumb {
      -webkit-appearance: none;
      width: 2.5dvh;
      height: 2.5dvh;
      background: #1b5e20;
      cursor: pointer;
      border-radius: 50%;
      border: 2px solid #388e3c;
      margin-top: -0.7dvh;
    }

    #music-stop-button {
      padding: 1.2dvh;
      font-size: var(--base-font);
      font-weight: bold;
      border-radius: 1dvh;
      border: none;
      background: #d32f2f;
      color: white;
      transition: background 0.3s ease;
      cursor: pointer;
    }

    #music-stop-button:hover {
      background: #9a0007;
    }

    .language-dropdown {
  width: 6dvw;
  font-size: calc(3px + .5vw + .5vh);
  display:flex;
  font-weight: bold;
  background: none;
  z-index:99;
  justify-content: center;
  cursor: pointer;
  flex-wrap: wrap;
  border-radius: 25px;
  height:4dvh;
  
}

.language-dropdown .selected-language {
  display: flex;
  align-items: center;
  color:whitesmoke;
  justify-content: center;
  width:6dvw;
  border: 2px solid whitesmoke;
  height:4dvh;
  border-radius: 25px;
  transition:all 0.2s ease;
}

.language-dropdown:hover, .selected-language:hover {
  color:rgb(255, 186, 39);
  border: 2px solid rgb(255, 186, 39);
}

.language-dropdown img {
  width: 24px;
  height: auto;
}

.dropdown2 {
  position: fixed;
  top: 10dvh;
  left: 0;
  width: 100dvw;
  background-color: antiquewhite;
  max-height:0; 
  height:50dvh;
  color: black;
  overflow: hidden;
  pointer-events: auto;
  transition:max-height 0.3s ease;
  z-index: 500;
}
.dropdown2.visible {
  max-height: 50dvh;
}

.language-options {
  display: flex;
  visibility:hidden;
  flex-direction: column;
  align-items: center;
  border: 2px solid rgb(255, 186, 39);
  top: 5dvh;
  left: 0;
  background-color:rgb(49, 49, 49);
  width:auto;
  max-height: auto;
  overflow-y: auto;
  border-radius:25px;
  transition:display 0.5s ease;
}

.language-options div {
  display: flex;
  align-items: center;
}

.language-options div:hover {
  background-color: whitesmoke;
}

.article_jpg {
  width:50%;
  height:auto;
  max-height:90dvh;
  transition: transform .1s ease-in-out;
}

.article_jpg:hover {
  transform:scale(1.01);
}

.custom-hr {
  border: none;
  height: 4px;
  width:100%;
  background:#333;
  margin: .1rem 0;
}

.sol_kisim {
  width:40dvw;
  height:50dvh;
  position: absolute;
  display:flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap:10%;
  font-size: calc(10px + .5vw + .5vh);
}

.grub-content a:hover {
  color:rgb(166, 228, 214);
}

.sol_kisim a:hover {
  color:rgb(166, 228, 214);
}

.orta_icerik a {
  color:black;
}

.orta_icerik a:hover {
  color:rgb(166, 228, 214);
}

.orta_baslik {
  width:auto;
  height:10dvh;
  position: absolute;
  display:flex;
  left:50%;
  transform:translateX(-50%);
  flex-direction: column;
  align-items: center;
  font-size: calc(2px + 1vw + 1vh);
}

.sol_baslik {
  width:auto;
  height:6dvh;
  position: absolute;
  top:5dvh;
  display:flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: calc(2px + 1vw + 1vh);
}

.dropdown2 div a {
  color:black;
}

.sag_orta_icerik {
  width:60dvw;
  height:50dvh;
  position: absolute;
  display:flex; 
  left:40dvw;
  flex-direction: column;
  justify-content: center;
  align-content: space-around;
  align-items: flex-start;
  font-size: calc(2px + .4vw + .4vh);
  align-items: center;
  row-gap:2rem;
}

.sag_orta_icerik > div {
  display: none;
  width: 70dvw;
  height: 50dvh;
  position: absolute;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 2rem;
}

.orta_icerik {
    width: 100dvw;
    height: 40dvh;
    position: absolute;
    display: flex;
    left: 50dvw;
    top:10dvh;
    transform: translateX(-50%);
    flex-direction: row;
    align-content: flex-start;
    font-size: calc(4px + .5vw + .5vh);
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

a {
  text-decoration: none;
}

.about-us-img {
flex: 1 1 40%;
  max-width: 40%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  }

  .about-us-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  flex-direction: column;
}

.about-us-text {
  flex: 1 1 55%;
  min-width: 250px;
}

#search-button {
  background-color:transparent;
  border:none;
  color:white;
  cursor:pointer;
  transition:color .3s ease;
}

#search-button:hover {
  color:rgb(255, 186, 39);
}

.content {
  display:flex;flex-direction: column;align-items: flex-start;align-content: center; row-gap:2rem; font-size:calc(5px + .5vw + .5vh);
}

.content a:hover {color:rgb(166, 228, 214);}

.search-box {
  position: relative;
  display: inline-flex;
  align-items: center;
  border-radius: 25px;
  padding: 5px 10px;
  transition: all 0.3s ease;
  overflow: hidden;
}

.search-box input {
  width: 0;
  opacity: 0;
  border: none;
  outline: none;
  background: transparent;
  transition: all 0.3s ease;
}

.search-box.active input {
  width: 4rem;
  opacity: 1;
  margin-left: 8px;
}

.search-box.active {
    background:white;
}

.search-box.active #search-button {
    color:black;
}

.active-mod {
  display:block;
}
.mod {
  display:none;
}

#rehber-container {
  position: absolute;
  top: 10dvh;
  left: 0;
  width: 100%;
  height: 90dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fafafa;
  border-top: 2px solid #ccc;
  box-sizing: border-box;
}

/* Başlık */
.title {
  height: 5dvh;
  line-height: 5dvh;
  font-size: 3dvh;
  font-weight: bold;
  text-align: center;
}

/* Bar */
.toolbar {
  height: 10dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background-color: #f1f1f1;
  width: 100%;
}

/* İçerik alanı */
.content-area {
  height: 75dvh;
  width: 90%;
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  padding: 1rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* Sayfalama */
.pagination {
  position: absolute;
  bottom: 1.5dvh;
  display: flex;
  gap: 0.5rem;
  justify-content: center;
}

.pagination button {
  background: #eee;
  border: 1px solid #ccc;
  padding: 0.3rem 0.6rem;
  cursor: pointer;
  border-radius: 4px;
}

.pagination button.active {
  background: #4CAF50;
  color: white;
  border-color: #4CAF50;
}
