/*===== Button =====*/
.button {
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 18px;
  font-weight: 500;
}
@media screen and (max-width: 1366px) {
  .button {
    font-size: 16px;
    padding: 8px 16px;
  }
}
@media screen and (max-width: 560px) {
  .button {
    font-size: 14px;
    padding: 6px 12px;
  }
}
.button.primary {
  background-color: var(--primary);
  color: var(--white);
}
.button.primary.outline {
  border: 1px solid var(--primary);
  background-color: transparent;
  color: var(--primary);
}
.button.primary.outline:hover {
  background-color: var(--primary);
  color: var(--white);
}
.button.white {
  background-color: var(--white);
  color: var(--black);
}

.school-login-button {
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 18px;
  font-weight: 500;
  background-color: var(--primary);
  color: var(--white) !important;
  margin-right: 10px;
}

.school-login-button:hover {
  background-color: #48ad5f !important;
  color: var(--black) !important;
}

/*===== Color =====*/
body {
  --white: #ffffff;
  --black: #000000;
  --primary: #308ccd;
  --bg: #308ccd;
  --yellow: #fdf003;
  --red: #c41426;
  --green: ##48ad5f;
  --blue: #0072bc;
  --orange: #f68b1f;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  min-height: 100px;
  transition: -webkit-transform 0.1s;
  transition: transform 0.1s;
  transition: transform 0.1s, -webkit-transform 0.1s;
  display: flex;
  align-items: center;
  background-color: var(--white);
}
header nav {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
header nav .navbar-brand img {
  width: auto;
  height: 8.5rem;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 1024px) {
  header nav .navbar-brand img {
    height: 4rem;
  }
}
header nav .navbar-toggle {
  border-style: none;
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}
@media screen and (min-width: 1024px) {
  header nav .navbar-toggle {
    display: none;
  }
}
header nav .navbar-toggle svg {
  width: 24px;
  height: 24px;
}
header nav .navbar-toggle:hover {
  cursor: pointer;
  text-decoration: none;
}
header nav .navbar-content {
  display: flex;
  flex-direction: row;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  header nav .navbar-content {
    display: none;
    flex-direction: column;
    transition: opacity 1s ease-out;
    height: 0;
    opacity: 0;
  }
  header nav .navbar-content.show {
    display: flex;
    height: min-content;
    opacity: 1;
  }
}
@media screen and (max-width: 1024px) {
  header nav .navbar-content > li {
    width: 100%;
    text-align: left;
  }
}
header nav .navbar-content > li > a {
  padding: 1rem;
}
@media screen and (max-width: 1240px) {
  header nav .navbar-content > li > a {
    padding: 1rem 0.5rem;
  }
}
@media screen and (max-width: 1024px) {
  header nav .navbar-content > li > a {
    display: flex;
    justify-content: space-between;
  }
}
header nav .navbar-content > li a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--black);
}
@media screen and (max-width: 1024px) {
  header nav .navbar-content > li a {
    margin: 3px 0;
    font-size: 1rem;
  }
}
header nav .navbar-content > li a:hover {
  opacity: 0.9;
}
header nav .navbar-content > li a.button {
  display: inline-block;
  margin-left: 1rem;
  padding: 0.75rem 1.25rem;
}
@media screen and (max-width: 1024px) {
  header nav .navbar-content > li a.button {
    margin-top: 1rem;
  }
}
header nav .navbar-content > li a.button:hover {
  color: white;
}
header nav .navbar-content > li .sub-menu {
  display: none;
  position: absolute;
  border-radius: 12px;
  box-shadow: 0 16px 48px 0 rgba(0, 0, 0, 0.16);
  background-color: var(--white);
  white-space: nowrap;
  padding: 26px 16px;
  width: initial;
  flex-direction: column;
  align-items: flex-start;
  z-index: 9999;
  margin: 6px 0 0 -30px;
  min-width: 260px;
}
@media screen and (max-width: 1024px) {
  header nav .navbar-content > li .sub-menu {
    position: relative;
    left: initial;
    top: initial;
    box-shadow: none;
    background: none;
    border-radius: 0;
    margin: 0;
    padding: 0 1rem;
  }
  header nav .navbar-content > li .sub-menu:hover {
    display: block;
  }
}
header nav .navbar-content > li .sub-menu li {
  position: relative;
  line-height: 22px;
  padding: 6px 0;
  width: 100%;
  text-align: left;
}
@media screen and (max-width: 1024px) {
  header nav .navbar-content > li .sub-menu li {
    padding: 6px 0 6px 1rem;
  }
}
header nav .navbar-content > li .sub-menu li a {
  font-weight: 500;
  text-decoration: none;
}
header nav .navbar-content > li .sub-menu li a:hover {
  color: var(--primary);
}
header nav .navbar-content > li .sub-menu li > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  header nav .navbar-content > li .sub-menu li > a {
    padding-right: 0;
    line-height: 28px;
  }
}
header nav .navbar-content > li .sub-menu li:first-child {
  padding-top: 0;
}
header nav .navbar-content > li .sub-menu li:last-child {
  padding-bottom: 0;
}
header nav .navbar-content > li .sub-menu li .sub-menu-children {
  display: none;
  position: absolute;
  border-radius: 12px;
  box-shadow: 0 16px 48px 0 rgba(0, 0, 0, 0.16);
  background-color: var(--white);
  white-space: nowrap;
  padding: 26px 16px;
  width: initial;
  flex-direction: column;
  align-items: flex-start;
  z-index: 9999;
  left: 100%;
  top: 0;
  margin: -15px 0 0 -4px;
  min-width: 240px;
}
@media screen and (max-width: 1024px) {
  header nav .navbar-content > li .sub-menu li .sub-menu-children {
    position: relative;
    left: initial;
    top: initial;
    box-shadow: none;
    background: none;
    border-radius: 0;
    margin: 0;
    padding: 1rem;
  }
  header nav .navbar-content > li .sub-menu li .sub-menu-children:hover {
    display: block;
  }
}
header nav .navbar-content > li .sub-menu li:hover .sub-menu-children {
  display: flex;
}
header nav .navbar-content > li.language {
  position: relative;
}
header nav .navbar-content > li.language .sub-menu {
  min-width: auto;
  margin: 6px 0 0 0;
  padding: 16px;
  left: 50%;
  transform: translateX(-50%);
}
header nav .navbar-content > li:hover ul {
  display: flex;
}
header nav .navbar-content > li.close-button svg {
  width: 20px;
  height: 20px;
}
@media screen and (max-width: 1024px) {
  header nav .navbar-content > li.close-button {
    width: 100%;
    display: flex;
    justify-content: flex-end;
  }
}
@media screen and (max-width: 1024px) {
  header nav .navbar-content {
    position: absolute;
    background: var(--white);
    border-radius: 16px;
    top: 0;
    padding: 24px;
    z-index: 111;
    box-shadow: 0 16px 48px 0 rgba(0, 0, 0, 0.16);
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  header nav .navbar-content {
    width: 100%;
  }
}
@media screen and (min-width: 576px) and (max-width: 767.98px) {
  header nav .navbar-content {
    width: calc(100% - 35px);
  }
}
@media screen and (max-width: 575.98px) {
  header nav .navbar-content {
    width: calc(100% - 30px);
  }
}
header.navbar-fixed {
  background-color: var(--white);
  transition: 0.2s;
  -webkit-transition: 0.2s;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

/*===================== TYPOGRAPHY =================================
    Font      :     font-family: 'DM Sans';
=====================================================================*/
*:not(i) {
  font-family: "DM Sans", sans-serif !important;
}

body {
  background-color: var(--white);
  min-height: 100vh;
  font-size: 16px;
  line-height: 1.6;
}
body .container {
  position: relative;
  max-width: 1650px;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  color: var(--black);
}
@media screen and (max-width: 1920px) {
  body .container {
    max-width: 70%;
  }
}
@media screen and (max-width: 1440px) {
  body .container {
    max-width: 90%;
  }
}
@media screen and (max-width: 1366px) {
  body .container {
    max-width: 90%;
  }
  body {
    font-size: 15px;
  }
}
@media screen and (max-width: 1024px) {
  body .container {
    max-width: 95%;
    margin: 0 auto;
  }
  body {
    font-size: 14px;
  }
}
@media screen and (max-width: 560px) {
  body .container {
    padding: 0 20px;
    max-width: 100%;
  }
  body {
    font-size: 14px;
  }
}
body .container h1 {
  font-size: 55px;
}
@media screen and (max-width: 1366px) {
  body .container h1 {
    font-size: 48px;
  }
}
@media screen and (max-width: 1024px) {
  body .container h1 {
    font-size: 36px;
  }
}
@media screen and (max-width: 560px) {
  body .container h1 {
    font-size: 30px;
  }
}
body .container h2 {
  font-size: 48px;
}
@media screen and (max-width: 1680px) {
  body .container h2 {
    font-size: 42px;
  }
}
@media screen and (max-width: 1366px) {
  body .container h2 {
    font-size: 36px;
  }
}
@media screen and (max-width: 560px) {
  body .container h2 {
    font-size: 32px;
  }
}
body .container h3 {
  font-size: 30px;
}
@media screen and (max-width: 1680px) {
  body .container h3 {
    font-size: 24px;
  }
}
@media screen and (max-width: 1366px) {
  body .container h3 {
    font-size: 21px;
  }
}
@media screen and (max-width: 560px) {
  body .container h3 {
    font-size: 18px;
  }
}
body .container h4 {
  font-size: 24px;
}
@media screen and (max-width: 1680px) {
  body .container h4 {
    font-size: 21px;
  }
}
@media screen and (max-width: 1366px) {
  body .container h4 {
    font-size: 18px;
  }
}
@media screen and (max-width: 560px) {
  body .container h4 {
    font-size: 16px;
  }
}
body ::-webkit-scrollbar {
  display: none;
}

section {
  position: relative;
  scroll-margin-top: 150px;
}
@media screen and (max-width: 1366px) {
  section {
    scroll-margin-top: 100px;
  }
}
section.headline-type-2 {
  padding-top: 100px;
  z-index: 1;
}
section.headline-type-2 .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  z-index: 2;
  height: 600px;
}
@media screen and (max-width: 1680px) {
  section.headline-type-2 .container {
    height: 550px;
  }
}
@media screen and (max-width: 1366px) {
  section.headline-type-2 .container {
    height: 500px;
  }
}
@media screen and (max-width: 1024px) {
  section.headline-type-2 .container {
    height: auto;
    padding: 60px 1rem;
  }
}
section.headline-type-2 .container .text-area {
  display: flex;
  flex-direction: column;
  text-align: left;
  max-width: 50%;
  flex: 0 0 50%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  padding-right: 2rem;
}
@media screen and (max-width: 1024px) {
  section.headline-type-2 .container .text-area {
    max-width: 100%;
    flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    padding-right: 0;
    text-align: center;
  }
}
section.headline-type-2 .container .text-area h1 {
  font-size: 72px;
  line-height: 1.3;
}
@media screen and (max-width: 1680px) {
  section.headline-type-2 .container .text-area h1 {
    font-size: 64px;
  }
}
@media screen and (max-width: 1440px) {
  section.headline-type-2 .container .text-area h1 {
    font-size: 48px;
  }
}
@media screen and (max-width: 1024px) {
  section.headline-type-2 .container .text-area h1 {
    font-size: 36px;
  }
}
section.headline-type-2 .container .text-area p {
  font-size: 18px;
  line-height: 1.25;
  margin-bottom: 1rem;
}
@media screen and (max-width: 1440px) {
  section.headline-type-2 .container .text-area p {
    font-size: 16px;
  }
}
@media screen and (max-width: 1024px) {
  section.headline-type-2 .container .text-area p {
    font-size: 14px;
  }
}
section.headline-type-2 .container .text-area p span {
  font-weight: 500;
  margin-right: 4px;
}
section.headline-type-2 .container .text-area .detail-area {
  display: flex;
  flex-direction: column;
}
section.headline-type-2 .container .text-area .detail-area .button {
  width: min-content;
  white-space: nowrap;
  background-color: var(--primary);
  color: var(--black);
  padding: 8px 16px;
  font-size: 1.1rem;
  font-weight: 500;
  border-radius: 5px;
}
section.headline-type-2 .img-area {
  position: absolute;
  bottom: 60px;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 45vw;
  overflow: hidden;
  border-radius: 50px 0 0 50px;
}
@media screen and (max-width: 1024px) {
  section.headline-type-2 .img-area {
    display: none;
  }
}
section.headline-type-2 .img-area img {
  height: 470px;
  width: auto;
}
@media screen and (max-width: 1680px) {
  section.headline-type-2 .img-area img {
    height: 410px;
  }
}
@media screen and (max-width: 1366px) {
  section.headline-type-2 .img-area img {
    height: 410px;
  }
}
section.headline-type-3 {
  padding-top: 160px;
  z-index: 1;
  margin-bottom: 60px;
}
@media screen and (max-width: 560px) {
  section.headline-type-3 {
    padding-top: 100px;
  }
}
section.headline-type-3 .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  z-index: 2;
  height: auto;
  padding: 60px 1rem;
}
section.headline-type-3 .container .text-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
  width: 100%;
}
section.headline-type-3 .container .text-area h1 {
  font-size: 72px;
  line-height: 1;
}
@media screen and (max-width: 1680px) {
  section.headline-type-3 .container .text-area h1 {
    font-size: 64px;
  }
}
@media screen and (max-width: 1440px) {
  section.headline-type-3 .container .text-area h1 {
    font-size: 48px;
  }
}
@media screen and (max-width: 1024px) {
  section.headline-type-3 .container .text-area h1 {
    font-size: 36px;
  }
}
section.headline-type-3 .container .text-area p {
  font-size: 20px;
  line-height: 1.5;
  opacity: 0.75;
}
@media screen and (max-width: 1440px) {
  section.headline-type-3 .container .text-area p {
    font-size: 18px;
  }
}
@media screen and (max-width: 1024px) {
  section.headline-type-3 .container .text-area p {
    font-size: 16px;
  }
}
@media screen and (max-width: 560px) {
  section.headline-type-3 .container .text-area p {
    font-size: 14px;
  }
}
section.headline-type-4 {
  padding: 200px 0 100px;
  z-index: 1;
  margin-bottom: 60px;
}
section.headline-type-4::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  opacity: 0.5;
}
@media screen and (max-width: 560px) {
  section.headline-type-4 {
    padding: 100px 0;
  }
}
section.headline-type-4 .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  z-index: 2;
  height: auto;
  padding: 60px 1rem;
}
section.headline-type-4 .container .text-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  color: var(--white);
}
section.headline-type-4 .container .text-area h1 {
  font-size: 72px;
  line-height: 1;
}
@media screen and (max-width: 1680px) {
  section.headline-type-4 .container .text-area h1 {
    font-size: 64px;
  }
}
@media screen and (max-width: 1440px) {
  section.headline-type-4 .container .text-area h1 {
    font-size: 48px;
  }
}
@media screen and (max-width: 1024px) {
  section.headline-type-4 .container .text-area h1 {
    font-size: 36px;
  }
}
section.headline-type-4 .container .text-area p {
  font-size: 20px;
  line-height: 1.5;
  opacity: 0.75;
}
@media screen and (max-width: 1440px) {
  section.headline-type-4 .container .text-area p {
    font-size: 18px;
  }
}
@media screen and (max-width: 1024px) {
  section.headline-type-4 .container .text-area p {
    font-size: 16px;
  }
}
@media screen and (max-width: 560px) {
  section.headline-type-4 .container .text-area p {
    font-size: 14px;
  }
}
section.headline-type-5 {
  padding-top: 160px;
  z-index: 1;
}
@media screen and (max-width: 560px) {
  section.headline-type-5 {
    padding-top: 100px;
  }
}
section.headline-type-5 .container {
  display: flex;
  z-index: 2;
  height: auto;
  padding: 60px 1rem;
}
section.headline-type-5 .container .text-area {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  width: 100%;
}
section.headline-type-5 .container .text-area h1 {
  font-size: 72px;
  line-height: 1;
}
@media screen and (max-width: 1680px) {
  section.headline-type-5 .container .text-area h1 {
    font-size: 64px;
  }
}
@media screen and (max-width: 1440px) {
  section.headline-type-5 .container .text-area h1 {
    font-size: 48px;
  }
}
@media screen and (max-width: 1024px) {
  section.headline-type-5 .container .text-area h1 {
    font-size: 36px;
  }
}
section.headline-type-5 .container .text-area p {
  font-size: 20px;
  line-height: 1.5;
  opacity: 0.75;
}
@media screen and (max-width: 1440px) {
  section.headline-type-5 .container .text-area p {
    font-size: 18px;
  }
}
@media screen and (max-width: 1024px) {
  section.headline-type-5 .container .text-area p {
    font-size: 16px;
  }
}
@media screen and (max-width: 560px) {
  section.headline-type-5 .container .text-area p {
    font-size: 14px;
  }
}

footer {
  position: relative;
  overflow: hidden;
  z-index: 10;
  background: var(--white);
  width: 100%;
  margin-top: 30px;
}
footer .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 2.5rem 0;
  color: var(--black);
  z-index: 2;
  font-size: 1.1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 1680px) {
  footer .container {
    padding: 48px 0;
  }
}
@media screen and (max-width: 1366px) {
  footer .container {
    padding: 42px 0;
  }
}
@media screen and (max-width: 560px) {
  footer .container {
    flex-direction: column;
    padding: 1.5rem 0;
  }
}
footer .container p {
  max-width: 90%;
}
footer .container.flex-column {
  display: flex;
  flex-direction: column;
}
footer .container .main-logo img {
  max-height: 100px;
}
footer .container .other-logo {
  margin-bottom: 2.5rem;
}
footer .container .other-logo img {
  max-height: 60px;
}
footer .container.credit {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 20px 15px;
  color: var(--black);
  z-index: 10;
  font-size: 1.1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  background: var(--white);
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
footer .container.credit .copyright {
  font-weight: 500;
  text-align: left;
  padding-right: 15px;
}
footer .container.credit .kuark-link {
  font-weight: 500;
  color: var(--black);
  text-decoration: none;
  text-align: right;
  white-space: nowrap;
}
footer .container.credit .kuark-link:hover {
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  footer .container.credit {
    flex-direction: column;
    gap: 10px;
    padding: 15px;
    font-size: 0.9rem;
    text-align: center;
  }
  
  footer .container.credit .copyright {
    font-size: 12px;
    padding-right: 0;
    text-align: center;
    width: 100%;
  }

  footer .container.credit .kuark-link {
    font-size: 12px;
    text-align: center;
    width: 100%;
  }
}
footer .container.credit .mail-area {
  display: flex;
  flex-direction: row;
  align-items: center;
}
footer .container.credit img {
  max-height: 20px;
  opacity: 0.5;
}
@media screen and (max-width: 560px) {
  footer .container.credit img {
    max-height: 16px;
  }
}
footer .container.ab-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 3rem auto 0;
}
footer .container.ab-logo img {
  max-width: 300px;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 560px) {
  footer .container.ab-logo img {
    max-width: 200px;
  }
}
footer .container.ab-logo p {
  max-width: 450px;
}

/* Fix font sizing issues */
body {
  font-size: 16px;
  line-height: 1.6;
}

.rota-info h2 {
  font-size: 32px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.rota-info .divider {
  margin-bottom: 20px;
}

.rota-info p,
.content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
}

@media screen and (max-width: 1366px) {
  body {
    font-size: 15px;
  }

  .rota-info h2 {
    font-size: 28px;
  }
}

@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
  }

  .rota-info h2 {
    font-size: 24px;
  }

  .rota-info p,
  .content p {
    font-size: 14px;
  }
}

.content {
  padding: 40px 0;
}

.content .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.rota-info {
  margin-bottom: 30px;
}

.prs_theater_main_slider_wrapper {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  position: relative;
  padding-top: 94px;
  padding-bottom: 90px;
  z-index: 1;
}

.prs_theater_img_overlay {
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  background: rgba(0, 0, 0, 0.8);
}

.prs_theater_sec_heading_wrapper {
  float: left;
  width: 100%;
  position: relative;
  text-align: center;
}

.prs_theater_sec_heading_wrapper h2 {
  font-size: 32px;
  color: rgba(255, 255, 255, 0.93);
  text-transform: uppercase;
  font-weight: bold;
  position: relative;
}

.prs_theater_sec_heading_wrapper h2:after {
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.26);
  width: 170px;
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  margin: 0px auto;
}

.prs_theater_sec_heading_wrapper h2:before {
  content: "";
  border: 2px solid #ff4444;
  width: 30px;
  position: absolute;
  bottom: -21px;
  left: 0;
  right: 0;
  margin: 0px auto;
  z-index: 1;
}

.wrap-album-slider {
  margin-top: 115px;
}

.paydaslar-row {
  width: 100%;
}

.paydaslar-group {
  margin-bottom: 3rem;
}

hr {
  width: 80%;
  margin: 2rem auto;
  border: none;
  border-top: 1px solid #e0e0e0;
}

.paydaslar-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin: 0 auto;
  max-width: 100%;
}

.paydaslar-item {
  flex: 0 1 calc(16.666% - 1.5rem);
  min-width: 130px;
  max-width: calc(100% / 6 - 1.5rem);
  display: flex;
  justify-content: center;
  align-items: center;
}

.paydaslar-item img {
  max-width: 100%;
  max-height: 120px;
  height: auto;
  object-fit: contain;
}

@media (max-width: 992px) {
  .paydaslar-item {
    flex: 0 1 calc(25% - 1.5rem);
    max-width: calc(100% / 4 - 1.5rem);
  }
  .paydaslar-item img {
    max-height: 100px;
  }
}

@media (max-width: 768px) {
  .paydaslar-item {
    flex: 0 1 calc(33.333% - 1.5rem);
    max-width: calc(100% / 3 - 1.5rem);
  }
  .paydaslar-item img {
    max-height: 90px;
  }
  hr {
    width: 90%;
    margin: 1.5rem auto;
  }
}

@media (max-width: 576px) {
  .paydaslar-item {
    flex: 0 1 calc(50% - 1.5rem);
    max-width: calc(100% / 2 - 1.5rem);
  }
  .paydaslar-item img {
    max-height: 80px;
  }
  hr {
    width: 95%;
    margin: 1rem auto;
  }
}

.prs_theater_main_slider_wrapper .container img {
    max-width: 100%;
    padding: 0;
}

#calendar {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    position: relative;
    z-index: 1;
}

.fc-view-container {
    overflow-x: auto;
    position: relative;
    z-index: 1;
}

.fc-toolbar {
    position: relative;
    z-index: 1;
}

/* Takvim seçicileri için stil */
#ilceSelect,
#bransSelect {
    position: relative;
    z-index: 1;
    margin-bottom: 10px;
}

.event-action {
    margin: 1.5rem 0;
    text-align: left;
}

.event-action .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 5px;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.event-action .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    background: var(--primary-dark, #0056b3);
}

.event-action .btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 560px) {
    .event-action .btn-primary {
        padding: 0.5rem 1.5rem;
        font-size: 0.875rem;
    }
}

/* ===== User Menu Styles ===== */
.user-menu-toggle {
    display: flex !important;
    align-items: center;
    gap: 8px;
    padding: 8px 16px !important;
    background: linear-gradient(135deg, var(--primary) 0%, #1a6fa8 100%);
    color: var(--white) !important;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.user-menu-toggle:hover {
    background: linear-gradient(135deg, #1a6fa8 0%, var(--primary) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(48, 140, 205, 0.3);
}

.user-menu-toggle .user.icon {
    margin-right: 4px;
}

.navbar-content > li > .user-menu-toggle + .sub-menu.user-menu {
    min-width: 200px;
    right: 0;
    left: auto;
}

.user-menu li {
    border-bottom: 1px solid #eee;
}

.user-menu li:last-child {
    border-bottom: none;
}

.user-menu li.divider {
    height: 1px;
    background: #ddd;
    margin: 5px 0;
    padding: 0;
}

.user-menu li a {
    display: flex !important;
    align-items: center;
    gap: 10px;
    padding: 12px 16px !important;
    transition: all 0.2s ease;
}

.user-menu li a:hover {
    background: #f5f5f5;
    padding-left: 20px !important;
}

.user-menu li a i.icon {
    width: 20px;
    text-align: center;
    color: var(--primary);
}

.user-menu .logout-link {
    color: #dc3545 !important;
}

.user-menu .logout-link i.icon {
    color: #dc3545 !important;
}

.user-menu .logout-link:hover {
    background: #fff5f5;
}

/* Mobile responsive */
@media screen and (max-width: 1024px) {
    .user-menu-toggle {
        padding: 10px 20px !important;
        border-radius: 8px;
        width: 100%;
        justify-content: center;
    }
    
    .navbar-content > li > .user-menu-toggle + .sub-menu.user-menu {
        position: relative;
        min-width: 100%;
        left: 0;
        right: 0;
    }
}