@import url('https://fonts.googleapis.com/css2?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=Red+Hat+Display:ital,wght@0,300..900;1,300..900&display=swap');

::selection {
  background-color: #777777db;
  color: #fff;
}

::-moz-selection {
  background-color: #777777db;
  color: #fff;
}

:root {
  --theme-color: #e41f26;
  --theme-hover-color: #c51b21;
}

a {
  text-decoration: none !important;
}

.bg-light {
  font-family: "Poppins", sans-serif !important;
  background-color: #fff !important;
}

.header-contain {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #000;
  height: 90px;
  min-height: 90px;
}

.header-contain-left {
  width: 15%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-contain-logo {
  width: 150px;
}

.header-contain-logo > a {
  width: 100%;
}

.header-contain-logo > a > img {
  width: 100%;
}

.header-contain-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 20%;
  height: 100%;
  gap: 2rem;
}

.header-contain-ticket {
  display: flex;
  height: 100%;
  width: 200px;
}

.header-contain-center {
  width: 65%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-contain-ticket > a {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  background-color: var(--theme-color);
  font-size: 18px;
  color: #fff;
  letter-spacing: 1px;
  transition: .25s ease-in-out;
}

.header-contain-ticket > a:hover {
  background-color: var(--theme-hover-color);
}

.header-contain-social > a > i {
  font-size: 20px;
  color: #000;
}

.services-section {
  background: #f2f2f2;
  padding: 90px 20px;
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: "";
  position: absolute;
  left: -180px;
  top: -120px;
  width: 460px;
  height: 460px;
  background: rgba(255, 31, 31, 0.10);
  filter: blur(70px);
  border-radius: 50%;
  pointer-events: none;
}

.services-section::after {
  content: "";
  position: absolute;
  left: -120px;
  bottom: -160px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(255, 31, 31, 0.10);
  border-radius: 50%;
  box-shadow:
      0 0 0 40px rgba(255, 31, 31, 0.035),
      0 0 0 80px rgba(255, 31, 31, 0.025),
      0 0 0 120px rgba(255, 31, 31, 0.018);
  pointer-events: none;
}

.services-container {
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.services-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 60px;
  align-items: center;
  margin-bottom: 45px;
}

.services-label {
  display: inline-block;
  color: var(--theme-color);
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 18px;
}

.services-title-area h2 {
  margin: 0;
  color: #171923;
  font-size: clamp(44px, 5vw, 76px);
  line-height: 0.98;
  font-weight: 700;
  letter-spacing: -2px;
}

.services-desc p {
  margin: 20px 0 0;
  color: #2f3138;
  font-size: 16px;
  line-height: 1.6;
  max-width: 500px;
  font-family: "Red Hat Display", sans-serif !important;
}

.services-button-area {
  display: flex;
  justify-content: flex-end;
}

.services-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--theme-color);
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 18px 36px;
  transition: 0.3s ease;
  white-space: nowrap;
}

.services-btn span {
  font-size: 24px;
  line-height: 1;
}

.services-btn:hover {
  background: var(--theme-hover-color);
  transform: translateY(-3px);
  color: #fff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(0, 0, 0, 0.04);
  padding: 42px 36px 36px;
  min-height: 270px;
  transition: 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
}

.service-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 32px;
}

.service-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: var(--theme-color);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  margin: 0 0 16px;
  color: #171923;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 600;
}

.service-card p {
  margin: 0 0 22px;
  color: #5f626b;
  font-size: 15px;
  line-height: 1.55;
  max-width: 340px;
  font-family: "Red Hat Display", sans-serif !important;
}

.service-card a {
  color: var(--theme-color);
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  font-family: "Red Hat Display", sans-serif !important;
}

.service-card a:hover {
  color: var(--theme-hover-color);
}

@media (max-width: 1100px) {
  .services-top {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .services-button-area {
    justify-content: flex-start;
  }

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

@media (max-width: 700px) {
  .services-section {
    padding: 60px 16px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 15px 25px;
    min-height: auto;
  }

  .services-title-area h2 {
    font-size: 42px;
    letter-spacing: -1px;
  }

  .services-btn {
    width: 100%;
    justify-content: center;
  }
}

.why-choose-section {
  position: relative;
  min-height: 520px;
  padding: 90px 20px;
  overflow: hidden;

  /* Arka plan resmi */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.why-choose-overlay {
  position: absolute;
  inset: 0;
  background: #0303036e;
  backdrop-filter: blur(1px);
  z-index: 1;
}

.why-choose-container {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
  min-height: 340px;
  display: grid;
  grid-template-columns: 450px 1fr;
  align-items: center;
  gap: 70px;
}

.why-choose-card {
  background: rgba(255, 255, 255, .8);
  padding: 56px 52px;
  border: 1px solid rgba(255, 255, 255, 0.65);
}

.why-choose-card span {
  display: inline-block;
  color: var(--theme-color);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 24px;
}

.why-choose-card h2 {
  margin: 0 0 24px;
  color: #080808;
  font-size: 56px;
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: -1.8px;
}

.why-choose-card p {
  margin: 0;
  color: #5d5d5d;
  font-size: 16px;
  line-height: 1.55;
  font-family: "Red Hat Display", sans-serif !important;
}

.why-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
}

.stat-item {
  padding: 30px 42px;
}

.stat-item:last-child {
  border-right: none;
}

.stat-item h3 {
  margin: 0;
  color: #f2f2f2;
  font-size: 76px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -2px;
}

.stat-item p {
  margin: 12px 0 0;
  color: var(--theme-color);
  font-size: 17px;
  line-height: 1.2;
  font-weight: 700;
  font-family: "Red Hat Display", sans-serif !important;
}

@media (max-width: 1100px) {
  .why-choose-container {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .why-stats {
    max-width: 100%;
  }

  .stat-item {
    padding: 25px 24px;
  }
}

@media (max-width: 768px) {
  .why-choose-section {
    padding: 60px 16px;
  }

  .why-choose-card {
    padding: 38px 28px;
  }

  .why-choose-card h2 {
    font-size: 40px;
  }

  .why-stats {
    grid-template-columns: 1fr;
    gap: 20px;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.13);
    padding: 20px 0;
  }

  .stat-item:last-child {
    border-bottom: none;
  }

  .stat-item h3 {
    font-size: 54px;
  }
}

.custom-footer {
  background: #f2f2f2;
  color: #171923;
}

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

.footer-top {
  padding: 70px 0 55px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-head {
  display: grid;
  grid-template-columns: auto /* 1fr auto 1fr */;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.footer-menu {
  display: flex;
  align-items: center;
  gap: 38px;
}

.footer-menu a {
  color: #6f6f6f;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  transition: 0.25s ease;
  font-family: "Red Hat Display", sans-serif !important;
}

.footer-menu a:hover {
  color: var(--theme-color);
}

.footer-logo {
  text-align: center;
}

.footer-logo  a > img {
  max-width: 145px;
  height: auto;
  display: block;
}

.footer-social {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;
  display: none;
}

.footer-social a {
  width: 28px;
  height: 28px;
  color: #777;
  text-decoration: none;
  font-size: 17px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s ease;
}

.footer-social a:hover {
  color: var(--theme-color);
  transform: translateY(-2px);
}

.footer-main {
  padding: 75px 0 95px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 70px;
  align-items: flex-start;
}

.footer-col {
  text-align: center;
}

.footer-col h4 {
  margin: 0 0 30px;
  color: #1d1435;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.5px;
}

.footer-col p {
  margin: 0 0 3px;
  color: #7a7a7a;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.4px;
  font-family: "Red Hat Display", sans-serif !important;
}

.footer-col p span {
  color: #6a6a6a;
  font-weight: 500;
}
.newsletter .wpcf7 {
  max-width: 340px;
  margin: 0 auto;
}

.newsletter .wpcf7 form {
  margin: 0;
}

.newsletter .wpcf7 p {
  margin: 0;
}

.newsletter .wpcf7 br {
  display: none;
}

.newsletter .newsletter-form-wrap {
  width: 100%;
}

.newsletter .newsletter-row {
  display: flex;
  align-items: stretch;
  width: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.16);
}

.newsletter .newsletter-row .wpcf7-form-control-wrap {
  flex: 1;
  display: block;
}

.newsletter .newsletter-row input[type="email"] {
  width: 100%;
  height: 52px;
  border: none;
  background: transparent;
  outline: none;
  color: #171923;
  font-size: 14px;
  padding: 0 14px 0 0;
  font-family: "Red Hat Display", sans-serif !important;
  box-sizing: border-box;
}

.newsletter .newsletter-row input[type="email"]::placeholder {
  color: #888;
}

.newsletter .newsletter-row input[type="submit"] {
  width: 58px;
  min-width: 58px;
  height: 52px;
  border: none;
  background: var(--theme-color);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  transition: 0.25s ease;
  outline: 0 !important;
  padding: 0;
  font-family: "Red Hat Display", sans-serif !important;
  box-sizing: border-box;
}

.newsletter .newsletter-row input[type="submit"]:hover {
  background: var(--theme-hover-color);
}

.newsletter .newsletter-kvkk {
  margin-top: 14px;
  text-align: left;
}

.newsletter .newsletter-kvkk .wpcf7-list-item {
  margin: 0;
  display: block;
}

.newsletter .newsletter-kvkk label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 12px;
  line-height: 1.5;
  color: #666;
}

.newsletter .newsletter-kvkk input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin: 2px 0 0 0;
  flex-shrink: 0;
}

.newsletter .wpcf7-not-valid-tip {
  font-size: 11px;
  margin-top: 6px;
}

.newsletter .wpcf7-response-output {
  margin: 12px 0 0 0 !important;
  padding: 8px 10px !important;
  font-size: 12px;
  line-height: 1.4;
}

.newsletter .wpcf7-spinner {
  margin: 10px 0 0 0;
}

.newsletter-row > p {
  display: flex;
}

.newsletter-row > p .wpcf7-spinner {
  display: none;
}

.footer-bottom {
  background: #e1e1e1;
  padding: 24px 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-bottom p {
  margin: 0;
  color: #7d7d7d;
  font-size: 13px;
  letter-spacing: 0.5px;
}

.home-page-mobil-slider {
  display: none;
}

@media (max-width: 992px) {
  .footer-head {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-menu,
  .footer-social {
    justify-content: center;
    flex-wrap: wrap;
  }

  .footer-logo {
    order: -1;
    display: flex;
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .home-page-slider {
    display: none;
  }

  .home-page-mobil-slider {
    display: block;
  }
}

@media (max-width: 600px) {
  .footer-top {
    padding: 50px 0 40px;
  }

  .footer-main {
    padding: 55px 0 65px;
  }

  .footer-menu {
    gap: 22px;
  }

  .footer-menu a {
    font-size: 12px;
    letter-spacing: 1.5px;
  }

  .footer-col h4 {
    font-size: 21px;
  }

  .newsletter form {
    max-width: 100%;
  }
}

.event-benefits-section {
  background: #fff;
  padding: 90px 20px 100px;
  color: #171923;
  overflow: hidden;
  position: relative;
}

.event-benefits-section::before {
  content: "";
  position: absolute;
  left: -180px;
  top: -160px;
  width: 430px;
  height: 430px;
  background: rgba(255, 32, 32, 0.08);
  filter: blur(70px);
  border-radius: 50%;
  pointer-events: none;
}

.event-benefits-container {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.event-benefits-title {
  text-align: center;
  margin-bottom: 58px;
}

.event-benefits-title span {
  display: inline-block;
  color: var(--theme-color);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.event-benefits-title h2 {
  margin: 0;
  color: #171923;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -1px;
}

.event-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.event-benefit-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 32, 32, 0.22);
  border-radius: 18px;
  padding: 38px 38px 34px;
  min-height: 310px;
  transition: 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.055);
}

.event-benefit-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255, 32, 32, 0.08), transparent 42%);
  opacity: 0;
  transition: 0.3s ease;
  pointer-events: none;
}

.event-benefit-card:hover {
  transform: translateY(-8px);
  border-color: var(--theme-hover-color);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.09);
}

.event-benefit-card:hover::before {
  opacity: 1;
}

.event-benefit-icon {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--theme-color), #7b1fd1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.event-benefit-icon svg {
  width: 34px;
  height: 34px;
}

.event-benefit-card h3 {
  margin: 0 0 20px;
  color: #171923;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 600;
  position: relative;
  z-index: 2;
}

.event-benefit-card p {
  margin: 0 0 34px;
  color: #5f626b;
  font-size: 15.5px;
  line-height: 1.8;
  font-weight: 500;
  max-width: 330px;
  position: relative;
  z-index: 2;
  font-family: "Red Hat Display", sans-serif !important;
}

.event-benefit-card a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #171923;
  text-decoration: none;
  font-size: 16px;
  font-weight: 800;
  position: relative;
  z-index: 2;
  transition: 0.25s ease;
  font-family: "Red Hat Display", sans-serif !important;
}

.event-benefit-card a span {
  font-size: 25px;
  line-height: 1;
  transition: 0.25s ease;
  color: var(--theme-color);
}

.event-benefit-card a:hover {
  color: var(--theme-color);
}

.event-benefit-card a:hover span {
  transform: translateX(5px);
}

@media (max-width: 992px) {
  .event-benefits-grid {
    grid-template-columns: 1fr;
  }

  .event-benefit-card {
    min-height: auto;
  }
}

@media (max-width: 600px) {
  .event-benefits-section {
    padding: 65px 16px 75px;
  }

  .event-benefits-title {
    margin-bottom: 38px;
  }

  .event-benefits-title h2 {
    font-size: 34px;
  }

  .event-benefit-card {
    padding: 32px 26px;
    border-radius: 14px;
  }

  .event-benefit-card h3 {
    font-size: 22px;
  }
}

.upcoming-event-section {
  background: #f2f2f2;
  padding: 40px 80px 80px;
  position: relative;
  overflow: hidden;
}

.upcoming-event-container {
  max-width: 100%;
  margin: 0 auto;
}

.upcoming-event-media {
  position: relative;
  width: 100%;
  height: 650px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 65px;
}

.upcoming-event-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.12);
  pointer-events: none;
}

.play-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: #ef4f4f;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #ffffff;
  box-shadow: 0 16px 35px rgba(239, 79, 79, 0.28);
  transition: 0.3s ease;
  z-index: 2;
}

.play-btn svg {
  width: 60px;
  height: 60px;
}

.play-btn:hover {
  transform: translate(-50%, -50%) scale(1.06);
  background: #df3d3d;
  color: #fff;
}

.upcoming-event-content {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 40px;
}

.upcoming-event-left h2 {
  margin: 0 0 18px;
  color: #000;
  font-size: 45px;
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase;
}

.upcoming-event-left p {
  margin: 0;
  color: #8d8d8d;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.4px;
  font-family: "Red Hat Display", sans-serif !important;
}

.upcoming-event-countdown {
  display: flex;
  align-items: flex-start;
  gap: 70px;
  padding-top: 8px;
}

.countdown-item {
  text-align: center;
  min-width: 70px;
}

.countdown-item strong {
  display: block;
  color: #1b1438;
  font-size: 60px;
  line-height: 1;
  font-weight: 400;
  margin-bottom: 16px;
}

.countdown-item span {
  display: block;
  color: #8d8d8d;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 2px;
  font-weight: 600;
  font-family: "Red Hat Display", sans-serif !important;
}

@media (max-width: 1100px) {
  .upcoming-event-content {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .upcoming-event-countdown {
    gap: 38px;
    justify-content: flex-start;
    flex-wrap: wrap;
    padding-top: 0;
  }
}

@media (max-width: 767px) {
  .upcoming-event-section {
    padding: 30px 16px 60px;
  }

  .upcoming-event-media {
    height: 260px;
    margin-bottom: 42px;
  }

  .play-btn {
    width: 68px;
    height: 68px;
  }

  .play-btn svg {
    width: 22px;
    height: 22px;
  }

  .upcoming-event-left h2 {
    font-size: 32px;
    text-align: center;
  }

  .upcoming-event-left p {
    font-size: 14px;
    text-align: center;
  }

  .upcoming-event-countdown {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
  }

  .countdown-item strong {
    font-size: 46px;
    margin-bottom: 12px;
  }

  .countdown-item span {
    font-size: 11px;
  }
}

.sponsor-section {
  background: #ffffff;
  padding: 50px 0 70px;
  overflow: hidden;
  font-family: "Poppins", Arial, sans-serif;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.sponsor-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.sponsor-title {
  color: #1d1435;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 35px;
}

.sponsor-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.sponsor-slider::before,
.sponsor-slider::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.sponsor-slider::before {
  left: 0;
  background: linear-gradient(to right, #ffffff, transparent);
}

.sponsor-slider::after {
  right: 0;
  background: linear-gradient(to left, #ffffff, transparent);
}

.sponsor-track {
  display: flex;
  align-items: center;
  gap: 90px;
  width: max-content;
  animation: sponsorScroll 28s linear infinite;
}

.sponsor-slider:hover .sponsor-track {
  animation-play-state: paused;
}

.sponsor-item {
  width: 180px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sponsor-item img {
  max-width: 100%;
  max-height: 58px;
  object-fit: contain;
  filter: brightness(0);
  opacity: 0.65;
  transition: 0.25s ease;
}

.sponsor-item:hover img {
  opacity: 1;
  transform: scale(1.04);
}

@keyframes sponsorScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .sponsor-section {
    padding: 40px 0 55px;
  }

  .sponsor-title {
    font-size: 15px;
    margin-bottom: 28px;
  }

  .sponsor-track {
    gap: 50px;
    animation-duration: 22s;
  }

  .sponsor-item {
    width: 140px;
    height: 58px;
  }

  .sponsor-item img {
    max-height: 46px;
  }
}

.marquee-section {
  background: #f2f2f2;
  padding: 34px 0;
  overflow: hidden;
  position: relative;
  font-family: "Poppins", Arial, sans-serif;
}

.marquee-wrap {
  width: 100%;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeMove 22s linear infinite;
  will-change: transform;
}

.marquee-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.marquee-text {
  display: inline-block;
  font-size: clamp(72px, 9vw, 128px);
  line-height: 1;
  font-weight: 800;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 2px #21183c;
  text-stroke: 2px #21183c;
  margin-right: 34px;
  letter-spacing: -2px;
}

.marquee-star {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(38px, 4vw, 64px);
  line-height: 1;
  color: var(--theme-color);
  margin: 0 34px 0 10px;
  flex-shrink: 0;
}

@keyframes marqueeMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Hover olunca dursun istersen bunu bırak */
/* .marquee-section:hover .marquee-track {
  animation-play-state: paused;
} */

@media (max-width: 768px) {
  .marquee-section {
    padding: 22px 0;
  }

  .marquee-text {
    -webkit-text-stroke: 1.4px #21183c;
    margin-right: 20px;
    letter-spacing: -1px;
  }

  .marquee-star {
    margin: 0 20px 0 8px;
  }
}

.event-schedule-section {
  background: #f2f2f2;
  padding: 80px 0 90px;
  font-family: "Poppins", Arial, sans-serif;
  color: #171923;
  overflow: hidden;
}

.schedule-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 60px;
}

.schedule-title span {
  display: inline-block;
  color: var(--theme-color);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.schedule-title h2 {
  margin: 0;
  color: #000;
  font-size: 40px;
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: -1px;
}

.schedule-tabs {
  display: flex;
  gap: 18px;
  border: none;
}

.schedule-tabs .nav-link {
  position: relative;
  min-width: 140px;
  padding: 10px 15px;
  border: 1px solid rgba(0, 0, 0, 0.10);
  border-radius: 999px;
  background: #ffffff;
  color: #171923;
  text-align: center;
  transition: 0.25s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
}

.schedule-tabs .nav-link strong {
  display: block;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
}

.schedule-tabs .nav-link small {
  display: block;
  margin-top: 5px;
  color: #777;
  font-size: 11px;
  font-weight: 500;
}

.schedule-tabs .nav-link.active {
  border-color: transparent;
  background: linear-gradient(135deg, #ff2020, #6618d9);
  color: #ffffff;
}

.schedule-tabs .nav-link.active small {
  color: rgba(255, 255, 255, 0.88);
}

.schedule-tabs .nav-link.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -15px;
  transform: translateX(-50%);
  border-left: 13px solid transparent;
  border-right: 13px solid transparent;
  border-top: 16px solid #6618d9;
}

.schedule-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 32px 40px;
  margin-bottom: 30px;
  display: grid;
  grid-template-columns: 1.25fr 1.2fr 0.8fr auto;
  align-items: center;
  gap: 48px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.065);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.schedule-text h3 {
  margin: 0 0 22px;
  color: #000;
  font-size: 24px;
  line-height: 1.50;
  font-weight: 500;
}

.schedule-text p {
  margin: 0;
  color: #5f626b;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 500;
  font-family: "Red Hat Display", sans-serif !important;
}

.schedule-image {
  width: 100%;
  height: 145px;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.schedule-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.info-icon {
  color: #ff2020;
  font-size: 12px;
  line-height: 1.6;
}

.info-item p {
  margin: 0;
  color: #171923;
  font-size: 13px;
  line-height: 1.55;
  font-weight: 500;
}

.info-item small {
  color: #777;
  font-size: 13px;
  font-weight: 500;
  font-family: "Red Hat Display", sans-serif !important;
}

.ticket-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 185px;
  padding: 18px 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff2020, #6618d9);
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: 0.25s ease;
}

.ticket-btn span {
  font-size: 24px;
  line-height: 1;
}

.ticket-btn:hover {
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-3px);
}

@media (max-width: 1199px) {
  .schedule-card {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .ticket-btn {
    max-width: 200px;
  }
}

@media (max-width: 991px) {
  .schedule-header {
    flex-direction: column;
  }

  .schedule-tabs {
    width: 100%;
    flex-wrap: wrap;
  }

  .schedule-tabs .nav-link {
    min-width: 140px;
  }

  .schedule-card {
    grid-template-columns: 1fr;
  }

  .schedule-image {
    height: 230px;
  }
}

@media (max-width: 575px) {
  .event-schedule-section {
    padding: 60px 0 70px;
  }

  .schedule-title h2 {
    font-size: 36px;
  }

  .schedule-card {
    padding: 26px 22px;
    border-radius: 15px;
  }

  .schedule-text h3 {
    font-size: 23px;
  }

  .schedule-image {
    height: 190px;
  }

  .ticket-btn {
    width: 100%;
    max-width: 100%;
  }

  .schedule-tabs > li {
    width: calc(50% - (18px) / 2);
  }
}

/* VIDEO MODAL */
.video-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: 0.28s ease;
  z-index: 9999;
}

.video-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.video-modal-box {
  position: relative;
  width: min(920px, 100%);
  background: transparent;
  transform: translateY(18px) scale(0.98);
  transition: 0.28s ease;
}

.video-modal-overlay.active .video-modal-box {
  transform: translateY(0) scale(1);
}

.video-close {
  position: absolute;
  top: -34px;
  right: 0;
  width: 34px;
  height: 34px;
  border: none;
  background: transparent;
  color: #ffffff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  z-index: 3;
  transition: 0.2s ease;
}

.video-close:hover {
  opacity: 0.8;
  transform: scale(1.08);
}

.video-frame-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #000;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}

.video-frame-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
  
@media (max-width: 767px) {
  .video-close {
    top: -30px;
    right: 0;
    font-size: 26px;
  }
}

.festival-location-section {
  background: #f2f2f2;
  padding: 95px 20px;
  font-family: "Poppins", Arial, sans-serif;
  overflow: hidden;
}

.festival-location-container {
  max-width: 1220px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 55px;
  align-items: center;
}

.festival-location-content {
  position: relative;
}

.section-mini-title {
  display: inline-block;
  color: var(--theme-color);
  font-size: 15px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.festival-location-content h2 {
  margin: 0 0 22px;
  color: #171923;
  font-size: clamp(40px, 4.5vw, 62px);
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -1.8px;
}

.location-desc {
  max-width: 480px;
  margin: 0 0 34px;
  color: #60636d;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 500;
  font-family: "Red Hat Display", sans-serif !important;
}

.location-card {
  max-width: 500px;
  background: #ffffff;
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 20px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  margin-bottom: 28px;
}

.location-icon {
  width: 74px;
  height: 74px;
  background: var(--theme-color);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.location-icon svg {
  width: 34px;
  height: 34px;
}

.location-card-text h3 {
  margin: 0 0 7px;
  color: #171923;
  font-size: 21px;
  line-height: 1.2;
  font-weight: 700;
}

.location-card-text p {
  margin: 0;
  color: #6d7078;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 500;
  font-family: "Red Hat Display", sans-serif !important;
}

.location-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--theme-color);
  color: #ffffff;
  text-decoration: none;
  padding: 16px 28px;
  font-size: 15px;
  font-weight: 600;
  transition: 0.25s ease;
}

.location-btn span {
  font-size: 22px;
  line-height: 1;
}

.location-btn:hover {
  color: #ffffff;
  text-decoration: none;
  background: var(--theme-hover-color);
  transform: translateY(-3px);
}

.festival-location-map-wrap {
  position: relative;
  height: 430px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.08);
}

.festival-location-map-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.7);
  z-index: 2;
}

.festival-location-map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(100%) contrast(1.05);
}

@media (max-width: 991px) {
  .festival-location-container {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .festival-location-map-wrap {
    height: 360px;
  }
}

@media (max-width: 575px) {
  .festival-location-section {
    padding: 65px 16px;
  }

  .festival-location-content h2 {
    font-size: 36px;
    letter-spacing: -1px;
  }

  .location-desc {
    font-size: 15px;
  }

  .location-card {
    align-items: flex-start;
    padding: 16px;
    border-radius: 16px;
  }

  .location-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
  }

  .location-icon svg {
    width: 28px;
    height: 28px;
  }

  .location-card-text h3 {
    font-size: 18px;
  }

  .location-btn {
    width: 100%;
    justify-content: center;
  }

  .festival-location-map-wrap {
    height: 300px;
    border-radius: 18px;
    padding: 7px;
  }

  .festival-location-map-wrap iframe {
    border-radius: 14px;
  }
}

/* Header responsive düzenlemeleri */

.header-contain {
  box-sizing: border-box;
}

.header-contain * {
  box-sizing: border-box;
}

.header-contain-ticket > a {
  white-space: nowrap;
}

.service-icon > img {
  width: 100%;
}

/* 1200px altı - orta/ara ekran */
@media (max-width: 1200px) {
  .header-contain-left {
    width: 20%;
  }

  .header-contain-center {
    width: 50%;
  }

  .header-contain-right {
    width: 30%;
    gap: 1.5rem;
  }

  .header-contain-logo {
    width: 135px;
  }

  .header-contain-ticket {
    width: 180px;
  }

  .header-contain-ticket > a {
    font-size: 16px;
  }
}

/* 992px altı - tablet */
@media (max-width: 992px) {
  .header-contain {
    height: 82px;
    min-height: 82px;
  }

  .header-contain-left {
    width: 25%;
  }

  .header-contain-center {
    width: 40%;
  }

  .header-contain-right {
    width: 35%;
    gap: 1.2rem;
  }

  .header-contain-logo {
    width: 125px;
  }

  .header-contain-ticket {
    width: 165px;
  }

  .header-contain-ticket > a {
    font-size: 15px;
    letter-spacing: 0.5px;
  }
}

/* 768px altı - mobil */
@media (max-width: 768px) {
  .header-contain {
    height: 76px;
    min-height: 76px;
    padding-left: 16px;
  }

  .header-contain-left {
    width: 45%;
    justify-content: flex-start;
  }

  .header-contain-center {
    display: none;
  }

  .header-contain-right {
    width: 55%;
    gap: 1rem;
  }

  .header-contain-logo {
    width: 125px;
  }

  .header-contain-ticket {
    width: 150px;
  }

  .header-contain-ticket > a {
    font-size: 14px;
    letter-spacing: 0.4px;
  }
}

/* 575px altı - küçük mobil */
@media (max-width: 575px) {
  .header-contain {
    height: 70px;
    min-height: 70px;
    padding-left: 14px;
  }

  .header-contain-left {
    width: 42%;
  }

  .header-contain-right {
    width: 58%;
    gap: 0.75rem;
  }

  .header-contain-logo {
    width: 112px;
  }

  .header-contain-ticket {
    width: 132px;
  }

  .header-contain-ticket > a {
    font-size: 13px;
    letter-spacing: 0.3px;
  }
}

/* Çok küçük ekran */
@media (max-width: 390px) {
  .header-contain {
    padding-left: 10px;
  }

  .header-contain-logo {
    width: 100px;
  }

  .header-contain-right {
    gap: 0.55rem;
  }

  .header-contain-ticket {
    width: 118px;
  }

  .header-contain-ticket > a {
    font-size: 12px;
    letter-spacing: 0.2px;
  }
}

.textwidget.custom-html-widget {
  display: contents;
}


/* ================================
   HEADER YENİ DÜZEN
================================ */

.header-contain {
    padding: 0 60px;
}

.header-contain-left {
    width: auto;
    flex: 0 0 auto;
}

.header-contain-center {
    width: auto;
    flex: 1;
}

.header-contain-right {
    width: auto;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 28px;
    height: 100%;
}


/* HAKKIMIZDA */

.header-about-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    height: 46px;
    padding: 0 20px;

    background: var(--theme-color);
    color: #fff !important;

    border: 1px solid var(--theme-color);
    border-radius: 4px;

    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.2px;

    white-space: nowrap;
    text-decoration: none !important;

    transition: 0.25s ease;
}

.header-about-btn i {
    font-size: 16px;
    transition: transform 0.25s ease;
}

.header-about-btn:hover {
    background: var(--theme-hover-color);
    border-color: var(--theme-hover-color);
    color: #fff !important;
}

.header-about-btn:hover i {
    transform: translateX(4px);
}



/* =========================================================
   AİLEFEST HEADER - FINAL
   Masaüstü + Tablet + Mobil
========================================================= */

.header-wrapper {
    width: 100%;
    background: #fff;
}

.header-contain,
.header-contain * {
    box-sizing: border-box;
}

.header-contain {
    width: 100% !important;

    height: 90px !important;
    min-height: 90px !important;

    padding: 0 clamp(24px, 5vw, 100px) !important;

    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;

    border-bottom: 1px solid #1d1d1d;

    background: #fff;
}


/* =========================================================
   SOL - LOGO
========================================================= */

.header-contain-left {
    width: auto !important;
    height: auto;

    flex: 0 0 auto;

    display: flex;
    align-items: center;
    justify-content: flex-start !important;
}

.header-contain-logo {
    width: 150px !important;
    max-width: 150px;
}

.header-contain-logo > a {
    display: block;
    width: 100%;
}

.header-contain-logo > a > img {
    display: block;
    width: 100%;
    height: auto;
}


/* =========================================================
   ORTA BOŞ ALAN
========================================================= */

.header-contain-center {
    display: block !important;

    width: auto !important;

    flex: 1 1 auto;

    min-width: 20px;
}


/* =========================================================
   SAĞ ALAN
========================================================= */

.header-contain-right {
    width: auto !important;
    height: 100% !important;

    flex: 0 0 auto;

    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;

    gap: 28px !important;

    margin-left: auto;
}


/* Wordpress widget gereksiz boşluklarını kaldır */

.header-contain-right .widget {
    margin: 0 !important;
    padding: 0 !important;
}

.header-contain-right p {
    margin: 0 !important;
    padding: 0 !important;
}

.header-contain-right .textwidget {
    margin: 0 !important;
    padding: 0 !important;
}

.textwidget.custom-html-widget {
    display: contents;
}


/* =========================================================
   HAKKIMIZDA
   Sade yazı + kırmızı alt çizgi
========================================================= */

.header-about-btn {
    position: relative;

    display: inline-flex !important;
    align-items: center;
    justify-content: center;

    width: auto !important;
    height: auto !important;

    padding: 9px 0 7px !important;

    background: transparent !important;

    color: #151515 !important;

    border: 0 !important;
    border-radius: 0 !important;

    font-size: 15px;
    line-height: 1;
    font-weight: 600;

    letter-spacing: 0;

    white-space: nowrap;

    text-decoration: none !important;

    transition: color .25s ease;
}


/* Alt kırmızı çizgi */

.header-about-btn::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;
    height: 2px;

    background: var(--theme-color);

    transition: width .25s ease;
}


/* Hakkımızda içindeki eski oku kaldır */

.header-about-btn i {
    display: none !important;
}


/* Hover */

.header-about-btn:hover {
    background: transparent !important;
    color: var(--theme-color) !important;
}

.header-about-btn:hover::after {
    width: 55%;
}


/* =========================================================
   INSTAGRAM
========================================================= */

.header-contain-social {
    display: flex !important;
    align-items: center;
    justify-content: center;

    flex: 0 0 auto !important;

    width: auto !important;
    height: auto !important;

    margin: 0 !important;
    padding: 0 !important;
}


/* Instagram link */

.header-contain-social > a {
    display: inline-flex !important;

    align-items: center;
    justify-content: center;

    width: 40px !important;
    height: 40px !important;

    padding: 0 !important;
    margin: 0 !important;

    background: transparent !important;

    color: #111 !important;

    border: 0 !important;
    border-radius: 50%;

    text-decoration: none !important;

    transition:
        color .25s ease,
        background-color .25s ease,
        transform .25s ease;
}


/* Instagram icon */

.header-contain-social > a > i {
    margin: 0 !important;

    font-size: 23px !important;
    line-height: 1 !important;

    color: inherit !important;
}


/* Instagram hover */

.header-contain-social > a:hover {
    color: var(--theme-color) !important;

    background: rgba(228, 31, 38, 0.06) !important;

    transform: translateY(-2px);
}


/* =========================================================
   DİJİTAL DAVETİYE
========================================================= */

.header-contain-ticket {
    display: flex !important;
    align-items: center;
    justify-content: center;

    flex: 0 0 auto !important;

    width: auto !important;
    height: auto !important;

    margin: 0 !important;
    padding: 0 !important;
}


/* Dijital davetiye butonu */

.header-contain-ticket > a {
    display: inline-flex !important;

    align-items: center;
    justify-content: center;

    gap: 15px;

    width: auto !important;
    height: 48px !important;

    min-width: 0 !important;

    padding: 0 24px !important;

    background: var(--theme-color) !important;

    color: #fff !important;

    border: 1px solid var(--theme-color) !important;
    border-radius: 5px !important;

    font-size: 15px !important;
    line-height: 1 !important;

    font-weight: 600 !important;

    letter-spacing: .4px !important;

    white-space: nowrap !important;

    text-decoration: none !important;

    transition:
        background-color .25s ease,
        border-color .25s ease,
        transform .25s ease !important;
}


/* Dijital Davetiye sağ ok */

.header-contain-ticket > a::after {
    content: "\2192";

    display: inline-block;

    margin-left: 2px;

    font-size: 22px;
    line-height: 1;
    font-weight: 400;

    color: #fff;

    transition: transform .25s ease;
}


/* Hover */

.header-contain-ticket > a:hover {
    background: var(--theme-hover-color) !important;

    border-color: var(--theme-hover-color) !important;

    color: #fff !important;

    transform: translateY(-1px);
}

.header-contain-ticket > a:hover::after {
    transform: translateX(4px);
}


/* =========================================================
   1200 PX ALTI
========================================================= */

@media (max-width: 1200px) {

    .header-contain {
        padding: 0 35px !important;
    }

    .header-contain-logo {
        width: 135px !important;
    }

    .header-contain-right {
        gap: 22px !important;
    }

    .header-about-btn {
        font-size: 14px;
    }

    .header-contain-ticket > a {
        height: 46px !important;

        padding: 0 20px !important;

        font-size: 14px !important;

        gap: 12px;
    }

    .header-contain-ticket > a::after {
        font-size: 20px;
    }

}


/* =========================================================
   TABLET - 992 PX ALTI
========================================================= */

@media (max-width: 992px) {

    .header-contain {
        height: 80px !important;
        min-height: 80px !important;

        padding: 0 25px !important;
    }

    .header-contain-logo {
        width: 125px !important;
    }

    .header-contain-right {
        gap: 17px !important;
    }

    .header-about-btn {
        font-size: 13px;
    }

    .header-contain-social > a {
        width: 36px !important;
        height: 36px !important;
    }

    .header-contain-social > a > i {
        font-size: 21px !important;
    }

    .header-contain-ticket > a {
        height: 43px !important;

        padding: 0 17px !important;

        font-size: 13px !important;

        gap: 10px;

        letter-spacing: .2px !important;
    }

    .header-contain-ticket > a::after {
        font-size: 18px;
    }

}


/* =========================================================
   MOBİL - 768 PX ALTI
========================================================= */

@media (max-width: 768px) {

    .header-contain {
        height: 72px !important;
        min-height: 72px !important;

        padding: 0 15px !important;

        gap: 10px;
    }


    /* Logo */

    .header-contain-left {
        flex: 0 0 auto !important;

        width: auto !important;
    }

    .header-contain-logo {
        width: 108px !important;
    }


    /* Ortadaki boş alan mobilde kalkıyor */

    .header-contain-center {
        display: none !important;
    }


    /* Sağ alan */

    .header-contain-right {
        flex: 1 1 auto !important;

        width: auto !important;

        min-width: 0;

        gap: 11px !important;

        margin-left: auto;
    }


    /* Hakkımızda */

    .header-about-btn {
        flex: 0 0 auto;

        padding: 7px 0 5px !important;

        font-size: 12px;

        font-weight: 600;
    }

    .header-about-btn::after {
        height: 1.5px;
    }


    /* Instagram MOBİLDE DE GÖRÜNÜR */

    .header-contain-social {
        display: flex !important;

        flex: 0 0 auto !important;
    }

    .header-contain-social > a {
        display: inline-flex !important;

        width: 32px !important;
        height: 32px !important;
    }

    .header-contain-social > a > i {
        font-size: 19px !important;
    }


    /* Dijital Davetiye */

    .header-contain-ticket {
        flex: 0 0 auto !important;

        width: auto !important;
    }

    .header-contain-ticket > a {
        width: auto !important;

        height: 38px !important;

        padding: 0 12px !important;

        font-size: 11px !important;

        font-weight: 600 !important;

        letter-spacing: 0 !important;

        gap: 7px;
    }

    .header-contain-ticket > a::after {
        font-size: 16px;
    }

}


/* =========================================================
   MOBİL - 575 PX ALTI
========================================================= */

@media (max-width: 575px) {

    .header-contain {
        height: 68px !important;
        min-height: 68px !important;

        padding: 0 11px !important;

        gap: 7px;
    }


    /* Logo */

    .header-contain-logo {
        width: 94px !important;
    }


    /* Sağ taraf */

    .header-contain-right {
        gap: 8px !important;
    }


    /* Hakkımızda */

    .header-about-btn {
        padding: 6px 0 4px !important;

        font-size: 11px;

        letter-spacing: -.1px;
    }


    /* Instagram */

    .header-contain-social {
        display: flex !important;
    }

    .header-contain-social > a {
        display: inline-flex !important;

        width: 29px !important;
        height: 29px !important;
    }

    .header-contain-social > a > i {
        font-size: 18px !important;
    }


    /* Dijital davetiye */

    .header-contain-ticket > a {
        height: 35px !important;

        padding: 0 10px !important;

        font-size: 10px !important;

        gap: 5px;

        border-radius: 4px !important;
    }

    .header-contain-ticket > a::after {
        font-size: 14px;
    }

}


/* =========================================================
   ÇOK KÜÇÜK MOBİL - 420 PX
========================================================= */

@media (max-width: 420px) {

    .header-contain {
        padding: 0 8px !important;

        gap: 5px;
    }


    /* Logo biraz küçülür */

    .header-contain-logo {
        width: 85px !important;
    }


    /* Sağ alan */

    .header-contain-right {
        gap: 6px !important;
    }


    /* Hakkımızda */

    .header-about-btn {
        font-size: 10px;

        padding: 5px 0 4px !important;
    }


    /* Instagram kesinlikle görünmeye devam eder */

    .header-contain-social {
        display: flex !important;
    }

    .header-contain-social > a {
        display: inline-flex !important;

        width: 27px !important;
        height: 27px !important;
    }

    .header-contain-social > a > i {
        font-size: 17px !important;
    }


    /* Dijital davetiye */

    .header-contain-ticket > a {
        height: 33px !important;

        padding: 0 8px !important;

        font-size: 9.5px !important;

        gap: 4px;
    }

    .header-contain-ticket > a::after {
        font-size: 13px;
    }

}


/* =========================================================
   ÇOK ÇOK KÜÇÜK - 360 PX
========================================================= */

@media (max-width: 360px) {

    .header-contain {
        height: 64px !important;
        min-height: 64px !important;

        padding: 0 6px !important;
    }


    /* Logo */

    .header-contain-logo {
        width: 78px !important;
    }


    /* Sağ */

    .header-contain-right {
        gap: 5px !important;
    }


    /* Hakkımızda */

    .header-about-btn {
        font-size: 9px;

        padding: 5px 0 3px !important;
    }


    /* Instagram */

    .header-contain-social {
        display: flex !important;
    }

    .header-contain-social > a {
        display: inline-flex !important;

        width: 25px !important;
        height: 25px !important;
    }

    .header-contain-social > a > i {
        font-size: 16px !important;
    }


    /* Davetiye */

    .header-contain-ticket > a {
        height: 31px !important;

        padding: 0 7px !important;

        font-size: 8.8px !important;

        gap: 3px;
    }

    .header-contain-ticket > a::after {
        font-size: 12px;
    }

}