/* === CSS Variables for consistent theming === */
:root {
  --neutral: #BFB9B9;
  --neutral-dark: #8A8585;
  --dark: #222222;
  --dark-hover: #333333;
  --dark-green: #4E8020;
  --dark-green-hover: #3a6018;
  --gold: #DDB945;
  --gold-light: #eed783;
  --orange: #E87928;
  --orange-dark: #d05e11;
  --text-dark: #2B2B2B;
  --text-light: #fafafa;
  --bg-light: #fafafa;
  --bg-light-contrast: #f1f1f1;
  --container-width: 1200px;
  --container-full: 100%;
  --transition: 0.3s ease;
  --section-spacing: 5rem;
  --card-shadow: 0 8px 20px rgba(0,0,0,0.08);
}
.d-flex{
  display: flex;
  align-items: center;
}
   /* Simple divider for subcategories */
    .simple-divider {
      border: none;
      height: 1px;
      background-color: #ddd;
      margin: 1rem 0 1rem 0;
      width: 100%;
    }

/* Reset & Base */
*, *::before, *::after { 
  margin: 0; 
  padding: 0; 
  box-sizing: border-box; 
}

body {
  font-family: 'League Spartan', sans-serif;
  background: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
}

img { 
  display: block; 
  max-width: 100%; 
  height: auto; 
}

ul { 
  list-style: none; 
}

a { 
  text-decoration: none; 
  color: inherit; 
}


/* Komünite'ye Katıl Butonu */
.social-area {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 15px;
}

.community-btn-container {
  padding: 0;
}

.community-btn {
  display: inline-block;
  text-decoration: none;
  margin-top: 1rem;
  color: #DDB945;
  background: transparent;
  border: 2px solid #DDB945;
  border-radius: 6px;

  font-size: 16px;
  font-weight: 700;

  padding: 8px 24px;
  cursor: pointer;
}

.header-community-btn {
  margin-left: 0 !important;
}

/* Responsive design for community button */
@media (max-width: 768px) {
  .social-area {
    align-items: flex-start;
  }

  .header-community-btn {
    margin-left: 0 !important;
  }
  
  .community-btn {
    font-size: 13px;
    padding: 9px 20px;
  }
}

@media (max-width: 480px) {
  .community-btn {
    font-size: 12px;
    padding: 8px 18px;
  }
}
  /* Rezervasyon Butonu Stilleri - Minimal Tasarım */
  .reservation-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 170px;
    height: auto;
    padding: 14px 20px;
    background: #DDB945;
    border: none;
    border-radius: 33px;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(221, 185, 69, 0.25);
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #242622;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
  }

  .reservation-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(221, 185, 69, 0.35);
    background: #E5C055;
  }

  .reservation-btn:active {
    transform: translateY(0);
  }

  .reservation-btn .btn-icon {
    font-size: 1.2rem;
    color: #242622;
  }

  /* Sol Panel Tooltip */
  .reservation-btn .btn-panel {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    color: white;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  }

  .reservation-btn .btn-panel::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -8px;
    transform: translateY(-50%);
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 8px solid rgba(26, 26, 26, 0.95);
  }

  .reservation-btn:hover .btn-panel {
    opacity: 1;
    right: 65px;
  }

  /* Mobil responsive */
  @media (max-width: 768px) {
    .reservation-btn {
      bottom: 20px;
      right: 20px;
      width: 180px;
      height: auto;
      padding: 12px 16px;
      border-radius: 33px;
      font-size: 0.9rem;
    }
    
    .reservation-btn .btn-icon {
      font-size: 1.1rem;
    }

    .reservation-btn .btn-panel {
      right: 60px;
      padding: 10px 14px;
      font-size: 0.85rem;
    }

    .reservation-btn:hover .btn-panel {
      right: 55px;
    }
  }

  /* Slide Type Badges */
.slide-type-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  color: white;
}

.contact-header{
  width: 100%;
  margin-bottom: 0rem;
}

.slide-type-badge.event {
  background: #3498db; /* Mavi */
}

.slide-type-badge.news {
  background: #27ae60; /* Yeşil */
}

.slide-type-badge.announcement {
  background: #f39c12; /* Sarı/Turuncu */
}

/* İletişim Formu Stilleri */
.contact-container {
  display: grid;
  width: 100%;
  gap: 4rem;
  margin-top: 3rem;
}

.contact-form-wrapper {
  background: none;
  padding: 0rem;
  border-radius: 12px;
  box-shadow: none;
}

.contact-form .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.contact-form .form-left,
.contact-form .form-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem;
  border: 0.5px solid #BFB9B9;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  background: #FAFAFA;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #d4a574;
  box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}

.contact-form textarea {
  resize: vertical;
  min-height: 100%;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #999;
  font-weight: 400;
}

/* KVKK Onay ve Gönder Butonu */
.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2rem;
}

.kvkk-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 0.95rem;
  line-height: 1.5;
}

.kvkk-label input[type="checkbox"] {
  width: auto;
  margin: 0;
  opacity: 0;
  position: absolute;
}

.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid #ddd;
  border-radius: 4px;
  position: relative;
  flex-shrink: 0;
  margin-top: 2px;
  background: white;
  transition: all 0.3s ease;
}

.kvkk-label input[type="checkbox"]:checked + .checkmark {
  background: #d4a574;
  border-color: #d4a574;
}

.kvkk-label input[type="checkbox"]:checked + .checkmark::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-weight: bold;
  font-size: 12px;
}

.contact-section-container{
  display: flex;
  flex-direction: column;
  align-items: baseline;
}

.kvkk-text a {
  color: #d4a574;
  text-decoration: none;
  font-weight: 500;
}

.kvkk-text a:hover {
  text-decoration: underline;
}

/* Gönder Butonu */
.btn-send {
    color: #000;
    border: 2px solid #DDB945;
    padding: 0.8rem 3rem;
    border-radius: 50px;
    font-size: 0.8rem;
    width: 165px;
	background: none;
    font-size: 0.9rem;
	   outline: none!important;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}


.btn-send:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

@media (min-width: 700px){
  .kvkk-label{
    width: 100%;
  }
  .footer-bottom-flex{
    width: 100%;
    display: flex;
  }
}

/* Responsive */
@media (max-width: 992px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .contact-form .form-grid {
    grid-template-columns: 1fr;
  }
  
  .form-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .contact-form-wrapper {
    padding: 1.5rem;
  }
  
  .btn-send {
    padding: 0.875rem 2.5rem;
    font-size: 0.95rem;
  }
}

    /* Anasayfa özel stilleri */
    .section-header, .section-content {
      text-align: left;
    }
    
    .section-header h2::after {
      left: 0;
      transform: none;
    }
    
    .about-flex {
      display: flex;
      gap: 3rem;
      align-items: center;
    }
    
    .about-image {
      flex: 1;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: var(--card-shadow);
    }
    
    .about-image img {
      width: 100%;
      height: auto;
      transition: transform 0.5s ease;
    }
    
    .about-image:hover img {
      transform: scale(1.05);
    }
    
    @media (max-width: 992px) {
      .about-flex {
        flex-direction: column;
      }
      
      .about-text, .about-image {
        width: 100%;
      }
    }

    /* reCAPTCHA Stilleri */
.recaptcha-container {
  margin: 1rem 0;
  display: flex;
  justify-content: flex-start;
}

.g-recaptcha {
  transform: scale(0.9);
  transform-origin: 0 0;
}

@media (max-width: 480px) {
  .g-recaptcha {
    transform: scale(0.77);
  }
}

/* Form footer düzenlemesi */
.form-footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  margin-top: 2rem;
}

.form-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

@media (max-width: 768px) {
  .form-footer-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

/* Wrapper to center content */
.container {
  max-width: var(--container-width);
  margin: auto;
  padding: 0 1.5rem;
}

.container-fluid {
  width: 100%;
  padding: 0 1.5rem;
}

/* Header */
header {
  background: var(--dark);
  padding: 1rem 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  position: sticky;
  top: 0;
  z-index: 100;
}

nav.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.75rem;
  color: var(--gold);
  font-weight: 700;
}

.logo img {
  width: 55%;
  margin-left: -10px;
}

nav .nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

nav a {
  color: var(--bg-light);
  font-weight: 500;
  transition: color var(--transition);
  position: relative;
  padding: 0.25rem 0;
}

nav a:hover {
  color: var(--gold);
}

nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--gold);
  bottom: -2px;
  left: 0;
  transition: width var(--transition);
}

nav a:hover::after {
  width: 0%;
  display: none;
}

.mobile-menu-btn {
  background: none;
  border: none;
  display: none;
  color: var(--gold);
  font-size: 1.5rem;
  cursor: pointer;
}

.head-logo{
  width: 27%;
}


/* Full width event styles */
.event-container {
  width: 100%;
  max-width: 100%;
  padding: 0;
  
}

/* === SLIDER CSS (styles.css'e eklenecek) === */

/* Hero Event Section */
.hero-event {
  display: flex;
  width: 100%;
  gap: 1.5rem;

}

/* Full width event styles */
.event-container {
  width: 100%;
  max-width: 100%;
  padding: 0;
 
}
/* Slider özel CSS - Bu kodu styles.css içine ekleyin */

/* Slider Container - Responsive */
.slider-container {
  position: relative;
  width: 100%;
  aspect-ratio: 2.53 / 1; /* 1520x600 resim oranı */
  overflow: hidden;
  margin-bottom: var(--section-spacing);
  background: var(--bg-light);
}

/* Slides - Responsive */
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: none; /* Geçiş efekti kaldırıldı */
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

.slide picture {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

/* Mobil için görsel ayarları - 767px altında dikey görsel */
@media (max-width: 767px) {
  .slider-container {
    aspect-ratio: 3 / 4; /* Mobil dikey görsel oranı - genişledikçe yükseklik artar */
    height: auto;
    max-height: none;
    min-height: auto;
  }
  
  .slide img {
    object-fit: cover;
    object-position: center center;
  }
}

/* Slide Content - Responsive */
.slide-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  width: 100%;

  color: white;
  padding: 2.5rem;
  padding-top: 8rem;
  box-sizing: border-box;
}

/* Başlıklar ve metinler için responsive boyutlar */
.slide-content h2 {
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  color: var(--gold);
  margin-bottom: 0.5rem;
  line-height: 1.2;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
  max-width: 850px;
}

.slide-meta {
  font-family: "Lora", serif;
  margin-bottom: 0.75rem;
  color: var(--gold-light);
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.slide-content p {
  margin-bottom: 1.5rem;
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  line-height: 1.6;
  max-width: 700px;
  opacity: 0.9;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

/* Slider Navigation - Responsive */
.slider-nav {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 10;
  display: flex;
  gap: 0.75rem;
}

.slider-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.slider-dot.active {
  background: var(--gold);
  transform: scale(1.2);
}

/* Slider Arrows - Responsive */
.slider-arrows {
  position: absolute;
  top: 50%;
  width: 100%;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  padding: 0 1rem;
  transform: translateY(-50%);
}

.slider-arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(0,0,0,0.6);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.slider-arrow:hover {
  background: var(--dark-green);
  transform: translateY(-3px);
}

.slider-arrow i {
  font-size: 1.25rem;
}

/* Event Date on Slide - Responsive */
.slide-date {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--orange);
  color: white;
  padding: 0.75rem;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  z-index: 3;
}

.slide-date .day {
  font-size: 1.6rem;
  display: block;
}

.slide-date .month {
  font-size: 0.8rem;
  text-transform: uppercase;
}

/* Event Meta - Responsive */
.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 1rem 0;
  color: rgba(255,255,255,0.9);
}

.event-meta .meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.event-meta i {
  color: var(--gold-light);
}

/* Buttons */
.slide-content .btn {
  display: inline-block;
  background: #DDB945;
  color: #242622;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  border: none;
}

.slide-content .btn:hover {
  background: var(--orange-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* Farklı ekran boyutları için spesifik düzenlemeler */

/* Tablet (768px - 991px) */
@media (max-width: 991px) {
  .slider-container {
    aspect-ratio: 2.53 / 1; /* Tabletlerde de aynı oran */
  }
  
  .slide-content {
    padding: 2rem;
    padding-top: 7rem;
  }
  
  .slide-date {
    top: 1rem;
    right: 1rem;
    padding: 0.6rem;
  }
  
  .slide-date .day {
    font-size: 1.4rem;
  }
  
  .slider-arrow {
    width: 45px;
    height: 45px;
  }
}

/* Mobile (577px - 767px) */
@media (max-width: 767px) {
  nav a:hover::after {
    width: 0; /* Mobilde alt çizgi efektini kaldır */
  }
  nav a{
    font-size: 16px;
  }
  
  .slide-content {
    padding: 1.5rem;
    padding-top: 5rem;
  }
  
  /* Slider okları daha küçük */
  .slider-arrow {
    width: 40px;
    height: 40px;
  }
  
  .slider-arrow i {
    font-size: 1rem;
  }
  
  .slide-date {
    padding: 0.5rem;
  }
  
  .slide-date .day {
    font-size: 1.2rem;
  }
  
  /* Slider dots ortada */
  .slider-nav {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
}

/* Small Mobile (576px and below) */
@media (max-width: 576px) {
  
  .slide-content {
    padding: 1.25rem;
    padding-top: 4rem;
  }
  
  /* Slider okları gizle (mobilde swipe kullan) */
  .slider-arrows {
    display: none;
  }
  
  .slide-content h2 {
    font-size: clamp(1.4rem, 6vw, 1.8rem);
  }
  
  /* Buton için özel stil */
  .slide-content .btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.95rem;
  }
  
  .slide-date {
    top: 0.75rem;
    right: 0.75rem;
    padding: 0.4rem;
  }
  
  .slide-date .day {
    font-size: 1.1rem;
  }
}

/* Event Meta - Responsive */
.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.5rem, 2vw, 1.5rem);
  margin: 0.75rem 0;
  font-size: clamp(0.8rem, 1.5vw, 0.95rem);
  color: var(--text-light);
}

.event-meta .meta-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  min-width: max-content;
}

/* Event Date on Slide - Responsive */
.slide-date {
  position: absolute;
  top: clamp(0.75rem, 2vw, 1.5rem);
  right: clamp(0.75rem, 2vw, 1.5rem);
  background: var(--orange);
  color: white;
  padding: clamp(0.5rem, 1vw, 0.75rem);
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  z-index: 3;
  min-width: 40px;
}

.slide-date .day {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  display: block;
}

.slide-date .month {
  font-size: clamp(0.7rem, 1.5vw, 0.9rem);
  text-transform: uppercase;
}

/* Slider Navigation - Responsive */
.slider-nav {
  position: absolute;
  bottom: clamp(1rem, 2vw, 2rem);
  right: clamp(1rem, 3vw, 2rem);
  z-index: 10;
  display: flex;
  gap: clamp(0.5rem, 1vw, 0.75rem);
}

.slider-dot {
  width: clamp(8px, 1.5vw, 12px);
  height: clamp(8px, 1.5vw, 12px);
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.slider-dot.active {
  background: var(--gold);
  transform: scale(1.2);
  border-color: var(--gold-light);
}

/* Slider Arrows - Responsive */
.slider-arrows {
  position: absolute;
  top: 50%;
  width: 100%;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  padding: 0 clamp(0.5rem, 1vw, 1rem);
  transform: translateY(-50%);
}

.slider-arrow {
  width: clamp(40px, 5vw, 50px);
  height: clamp(40px, 5vw, 50px);
  border-radius: 50%;
  background: rgba(0,0,0,0.5);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}

.slider-arrow:hover {
  background: var(--dark-green);
}

.slider-arrow i {
  font-size: clamp(1rem, 2vw, 1.5rem);
}

/* Event Types Tags - Responsive */
.slide-tag {
  display: inline-block;
  padding: clamp(0.3rem, 0.5vw, 0.4rem) clamp(0.7rem, 1.5vw, 1rem);
  background: var(--orange);
  color: white;
  border-radius: 4px;
  font-size: clamp(0.7rem, 1.2vw, 0.85rem);
  font-weight: 500;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.slide-tag.news {
  background: var(--dark-green);
}

.slide-tag.event {
  background: var(--orange);
}

.slide-tag.announcement {
  background: var(--gold);
  color: var(--text-dark);
}

/* Responsive buttons */
.slide-content .btn {
  padding: clamp(0.5rem, 1.5vw, 0.75rem) clamp(1rem, 3vw, 1.75rem);
  font-size: clamp(0.9rem, 1.5vw, 1rem);
}

/* Mobile Optimizations */
@media (max-width: 992px) {
  .hero-event {
    flex-direction: column;
  }
  
  .slider-container {
    aspect-ratio: 2.53 / 1; /* Tablet için de aynı oran */
  }
  
  .slide-content {
    padding: 1.5rem;
    padding-top: 4rem;
  }
}

@media (max-width: 768px) {
  .logo img{
    width: 100%;
    margin: 0;
  }
  .slider-container {
    aspect-ratio: 3 / 4; /* Mobil dikey oran - genişledikçe yükseklik artar */
    height: auto;
    max-height: none;
    min-height: auto;
  }
  
  .slide-content {
    padding: 1rem;
    padding-top: 3rem;
  }
  
  /* Touch friendly navigation */
  .slider-nav {
    bottom: 1rem;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
  
  /* Larger touch targets */
  .slider-dot {
    min-width: 9px;
    min-height: 9px;
  }
  
  .slider-arrow {
    min-width: 36px;
    min-height: 36px;
  }
  
  /* Mobile layout for event meta */
  .event-meta {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  /* Arrows visibility */
  .slider-arrows {
    opacity: 0.8;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    width: 100%;
    min-width: 0;
  }
  .contact-form-wrapper,
  .contact-map-wrapper {
    padding: 1.5rem;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }
  .map-container {
    width: 100%;
    min-width: 0;
  }
  .map-container iframe {
    width: 100% !important;
    min-width: 0;
    box-sizing: border-box;
    display: block;
  }
}

@media (max-width: 480px) {
  .slider-container {
    aspect-ratio: 3 / 4; /* Mobil dikey oran */
    height: auto;
    max-height: none;
    min-height: auto;
  }
  
  .slide-content {
    padding: 0.75rem;
  }
  
  /* Mobile - hide arrows, use swipe */
  .slider-arrows {
    display: none;
  }
  
  /* Touch swipe area */
  .slide {
    touch-action: pan-y;
  }
  
  /* Event date size adjustment */
  .slide-date {
    min-width: 35px;
  }
  
  /* Text sizing */
  .slide-content h2 {
    max-width: 100%;
  }
  
  .slide-content p {
    max-width: 100%;
  }

  .contact-container {
    gap: 1rem;
    width: 100%;
    min-width: 0;
  }
  .contact-form-wrapper,
  .contact-map-wrapper {
    padding: 1rem;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }
  .map-container {
    width: 100%;
    min-width: 0;
  }
  .map-container iframe {
    width: 100% !important;
    min-width: 0;
    box-sizing: border-box;
    display: block;
  }
}

/* Landscape Mode Adjustments */
@media (max-height: 400px) and (orientation: landscape) {
  .slider-container {
    aspect-ratio: 2.53 / 1; /* Landscape'de de aynı oran */
  }
  
  .slide-content {
    padding: 0.75rem 1rem;
  }
  
  .slide-content h2 {
    margin-bottom: 0.25rem;
  }
  
  .slide-meta {
    margin-bottom: 0.5rem;
  }
  
  .slide-content p {
    margin-bottom: 1rem;
  }
  
  .event-meta {
    gap: 0.5rem;
  }
}

/* High Resolution Screens */
@media (min-width: 1400px) {
  .slider-container {
    max-height: 800px;
  }
  
  .slide-content {
    padding: 3rem 4rem;
  }
}

/* Loading Animation */
.slider-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  z-index: 5;
}

/* Touch Indicator */
.touch-indicator {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
  z-index: 11;
}

 /* Thank You Section */
 .thank-you-section {
  padding: 6rem 0;
  text-align: center;
  min-height: calc(100vh - 80px - 300px); /* Viewport height minus header and footer */
}

.thank-you-card {
  background: white;
  border-radius: 16px;
  box-shadow: var(--card-shadow);
  padding: 3rem;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.thank-you-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: var(--dark-green);
}

.success-icon {
  width: 100px;
  height: 100px;
  background: rgba(78, 128, 32, 0.1);
  color: var(--dark-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

.success-icon i {
  font-size: 3rem;
}

.thank-you-card h1 {
  font-size: 2.5rem;
  color: var(--dark-green);
  margin-bottom: 1.5rem;
}

.thank-you-card p {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.order-details {
  background: var(--bg-light-contrast);
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
  text-align: left;
}

.order-details h2 {
  font-size: 1.5rem;
  color: var(--dark-green);
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.order-details h2::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 3px;
  background: var(--gold);
  bottom: -8px;
  left: 0;
  border-radius: 2px;
}

.detail-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--neutral);
}

.detail-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.detail-label {
  font-weight: 500;
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}


.btn-primary {
  background: var(--orange);
  color: white;
  border: none;
}

.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(232, 121, 40, 0.3);
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--dark-green);
  color: var(--dark-green);
}

.btn-secondary:hover {
  background: var(--dark-green);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(78, 128, 32, 0.3);
}

.confetti {
  position: absolute;
  width: 15px;
  height: 15px;
  background-color: var(--orange);
  opacity: 0.7;
  border-radius: 50%;
  animation: confetti-fall 5s ease-out forwards;
}

.confetti:nth-child(odd) {
  background-color: var(--gold);
}

.confetti:nth-child(3n) {
  background-color: var(--dark-green);
}

@keyframes confetti-fall {
  0% {
    transform: translateY(-100vh) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translateY(100vh) rotate(360deg);
    opacity: 0;
  }
}

/* What's Next Section */
.whats-next {
  margin-top: 4rem;
  text-align: left;
}

.whats-next h2 {
  font-size: 1.8rem;
  color: var(--dark-green);
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.whats-next h2::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 3px;
  background: var(--gold);
  bottom: -8px;
  left: 0;
  border-radius: 2px;
}
.logo:hover:after{
    display: none;
}
.logo:hover:after{
    display: none;
}

.head-logo{
    width:  27%;
}


.next-steps {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}

.step-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  padding: 1.5rem;
  flex: 1;
  min-width: 250px;
  transition: all 0.3s ease;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--card-shadow);
}

.step-icon {
  width: 60px;
  height: 60px;
  background: rgba(78, 128, 32, 0.1);
  color: var(--dark-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.step-icon i {
  font-size: 1.8rem;
}

.step-card h3 {
  margin-bottom: 1rem;
  color: var(--dark-green);
  font-size: 1.3rem;
}

.step-card p {
  color: var(--text-dark);
  font-size: 0.95rem;
}

/* Footer */
footer {
  padding: 3rem 0 2rem;
  background: var(--dark);
  color: var(--text-light);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-brand img {
  width: 60%;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #DDB945;
  color: var(--dark);
  transform: translateY(-3px);
}

   /* Newsletter */
   .newsletter {
  margin-top: 2rem;
}

.newsletter h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--gold);
}

.newsletter p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
}

.newsletter form {
  display: flex;
  gap: 0.5rem;
}

.about{
    display: flex;
    flex-direction: row;
    align-items: center;
}

.about p{
    width: 90%;
}



.newsletter input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
}

.newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.head-logo{
    width:  27%;
}

 /* Main Content */
 .main-content {
  padding: 4rem 0;
  min-height: calc(100vh - 80px - 300px); /* Viewport height minus header and footer */
}

/* Event Summary */
.event-summary {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--neutral);
}

.event-image {
  flex: 1;
  border-radius: 12px;
  box-shadow: var(--card-shadow);
}

.event-image img {
  width: 100%;
  height: auto;
  display: block;
}

.event-details {
  flex: 2;
}

.event-details h1 {
  font-size: 2.5rem;
  color: var(--dark-green);
  margin-bottom: 0.5rem;
}

.event-artist {
  font-style: italic;
  color: var(--neutral-dark);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.event-info {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.event-info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.event-info-item i {
  color: var(--orange);
  font-size: 1.2rem;
}

.event-description {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

.ticket-options {
  background: var(--bg-light-contrast);
  padding: 1.5rem;
  border-radius: 12px;
}

.ticket-type {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--neutral);
}

.logo:hover:after{
    display: none;
}

.ticket-type:last-child {
  border-bottom: none;
}

.logo:hover:after{
    display: none;
}

.head-logo{
    width:  27%;
}

.ticket-price {
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--dark-green);
}

.ticket-quantity {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.ticket-quantity button {
  background: var(--dark-green);
  color: white;
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.ticket-quantity button:hover {
  background: var(--dark-green-hover);
}

.ticket-quantity span {
  font-weight: 500;
  width: 30px;
  text-align: center;
}

/* Payment Form */
.payment-section {
  background: white;
  border-radius: 12px;
  box-shadow: var(--card-shadow);
  padding: 2rem;
  margin-top: 3rem;
}

.payment-section h2 {
  font-size: 1.8rem;
  color: var(--dark-green);
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
}

.payment-section h2::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 3px;
  background: var(--gold);
  bottom: -8px;
  left: 0;
  border-radius: 2px;
}

.payment-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: flex;
  gap: 1.5rem;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 500;
  color: var(--text-dark);
}

.form-group input,
.form-group select {
  padding: 0.75rem 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: 'League Spartan', sans-serif;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--dark-green);
  box-shadow: 0 0 0 2px rgba(78, 128, 32, 0.2);
}

.card-details {
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 1.5rem;
  margin-top: 1rem;
}

/* Ödeme ve Güvenlik Bilgileri */
.payment-security {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.payment-logos {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.8);
}

.payment-logos img {
  height: 30px;
  width: auto;
  object-fit: contain;
  background: white;
  padding: 3px;
  border-radius: 4px;
  transition: transform 0.3s ease;
}

.payment-logos img:hover {
  transform: translateY(-3px);
}

.security-badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.ssl-badge, .secure-payment {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(255, 255, 255, 0.05);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.85rem;
}

.ssl-badge i, .secure-payment i {
  color: var(--gold);
  font-size: 1rem;
}

/* Mobil Düzenleme */
@media (max-width: 768px) {
  .payment-security {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .security-badges {
    width: 100%;
  }
}

.card-details h3 {
  color: var(--dark-green);
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.card-icons {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.card-icon {
  background: var(--bg-light-contrast);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-icon i {
  font-size: 1.8rem;
  color: var(--neutral-dark);
}

.card-icon:first-child i {
  color: #1a1f71; /* Visa blue */
}

.card-icon:nth-child(2) i {
  color: #ff5f00; /* Mastercard orange */
}

.secure-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2rem;
  padding: 1rem;
  background: rgba(78, 128, 32, 0.1);
  border-radius: 8px;
}

.secure-badge i {
  color: var(--dark-green);
  font-size: 1.5rem;
}

.secure-badge p {
  font-size: 0.9rem;
  color: var(--text-dark);
}

.order-summary {
  background: var(--bg-light-contrast);
  padding: 1.5rem;
  border-radius: 12px;
  margin-top: 2rem;
}

.order-summary h3 {
  color: var(--dark-green);
  margin-bottom: 1rem;
  font-size: 1.3rem;
  border-bottom: 1px solid var(--neutral);
  padding-bottom: 0.5rem;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  font-size: 1.1rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--neutral);
}

.checkout-btn {
  background: var(--orange);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  margin-top: 2rem;
  width: 100%;
  transition: all 0.3s ease;
}

.checkout-btn:hover {
  background: var(--orange-dark);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(232, 121, 40, 0.3);
}

/* Policy Information */
.policy-info {
  margin-top: 3rem;
  font-size: 0.9rem;
  color: var(--neutral-dark);
}

.policy-info h3 {
  color: var(--dark-green);
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.policy-info p {
  margin-bottom: 0.5rem;
}

/* Footer */
footer {
  padding: 3rem 0 2rem;
  background: var(--dark);
  color: var(--text-light);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-brand img {
  width: 60%;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.ticket-info{
  width: 53%;
}

.social-links a {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
/*
.social-links a:hover {
  background: #DDB945;
  color: var(--dark);
  transform: translateY(-3px);
} */

.footer-links h3 {
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  position: relative;
}

.footer-links h3::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 2px;
  background: var(--gold);
  bottom: -8px;
  left: 0;
}

 /* Main Content */
 .main-content {
  padding: 4rem 0;
  min-height: calc(100vh - 80px - 300px); /* Viewport height minus header and footer */
}

/* Event Summary */
.event-summary {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--neutral);
}

.event-image {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

.event-image img {
  width: 100%;
  height: auto;
  display: block;
}

.event-details {
  flex: 2;
}

.event-details h1 {
  font-size: 2.5rem;
  color: var(--dark-green);
  margin-bottom: 0.5rem;
}

.event-artist {
  font-style: italic;
  color: var(--neutral-dark);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.event-info {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.event-info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.event-info-item i {
  color: var(--orange);
  font-size: 1.2rem;
}

.event-description {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

.ticket-options {
  background: var(--bg-light-contrast);
  padding: 1.5rem;
  border-radius: 12px;
}

.ticket-type {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--neutral);
}

.logo:hover:after{
    display: none;
}

.ticket-type:last-child {
  border-bottom: none;
}

.logo:hover:after{
    display: none;
}

.head-logo{
    width:  27%;
}

.ticket-price {
  font-weight: 600;
  font-size: 1.2rem;
  color: var (--dark-green);
}

.ticket-quantity {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.ticket-quantity button {
  background: var(--dark-green);
  color: white;
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.ticket-quantity button:hover {
  background: var(--dark-green-hover);
}

.ticket-quantity span {
  font-weight: 500;
  width: 30px;
  text-align: center;
}

/* Payment Form */
.payment-section {
  background: white;
  border-radius: 12px;
  box-shadow: var(--card-shadow);
  padding: 2rem;
  margin-top: 3rem;
}

.payment-section h2 {
  font-size: 1.8rem;
  color: var(--dark-green);
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
}

.payment-section h2::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 3px;
  background: var(--gold);
  bottom: -8px;
  left: 0;
  border-radius: 2px;
}

.payment-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: flex;
  gap: 1.5rem;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 500;
  color: var(--text-dark);
}

.form-group input,
.form-group select {
  padding: 0.75rem 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: 'League Spartan', sans-serif;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--dark-green);
  box-shadow: 0 0 0 2px rgba(78, 128, 32, 0.2);
}

.card-details {
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 1.5rem;
  margin-top: 1rem;
}

.card-details h3 {
  color: var(--dark-green);
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.card-icons {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.card-icon {
  background: var(--bg-light-contrast);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-icon i {
  font-size: 1.8rem;
  color: var(--neutral-dark);
}

.card-icon:first-child i {
  color: #1a1f71; /* Visa blue */
}

.card-icon:nth-child(2) i {
  color: #ff5f00; /* Mastercard orange */
}

.secure-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2rem;
  padding: 1rem;
  background: rgba(78, 128, 32, 0.1);
  border-radius: 8px;
}

.secure-badge i {
  color: var(--dark-green);
  font-size: 1.5rem;
}

.secure-badge p {
  font-size: 0.9rem;
  color: var(--text-dark);
}

.order-summary {
  background: var(--bg-light-contrast);
  padding: 1.5rem;
  border-radius: 12px;
  margin-top: 2rem;
}

.order-summary h3 {
  color: var(--dark-green);
  margin-bottom: 1rem;
  font-size: 1.3rem;
  border-bottom: 1px solid var(--neutral);
  padding-bottom: 0.5rem;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  font-size: 1.1rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--neutral);
}

.checkout-btn {
  background: var(--orange);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  margin-top: 2rem;
  width: 100%;
  transition: all 0.3s ease;
}

.checkout-btn:hover {
  background: var(--orange-dark);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(232, 121, 40, 0.3);
}

/* Policy Information */
.policy-info {
  margin-top: 3rem;
  font-size: 0.9rem;
  color: var(--neutral-dark);
}

.policy-info h3 {
  color: var(--dark-green);
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.policy-info p {
  margin-bottom: 0.5rem;
}

/* Footer */
footer {
  padding: 3rem 0 2rem;
  background: var(--dark);
  color: var(--text-light);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-brand img {
  width: 60%;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.ticket-info{
  width: 53%;
}

.social-links a {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
/*
.social-links a:hover {
  background: #DDB945;
  color: var(--dark);
  transform: translateY(-3px);
} */


.footer-links h3 {
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  position: relative;
}

.footer-links h3::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 2px;
  background: var(--gold);
  bottom: -8px;
  left: 0;
}

.footer-links ul li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}


.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}

/* Mobile Responsive */
@media (max-width: 992px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  
  .event-summary {
    flex-direction: column;
  }
  
  .event-image {
    width: 100%;
  }
}

   /* Newsletter */
   .newsletter {
  margin-top: 2rem;
}

.newsletter h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--gold);
}

.newsletter p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
}

.newsletter form {
  display: flex;
  gap: 0.5rem;
}

.about{
    display: flex;
    flex-direction: row;
    align-items: center;
}

.about p{
    width: 90%;
}



.newsletter input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
}

.newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.head-logo{
    width:  27%;
}

.newsletter button {
  background: var(--gold);
  color: var(--dark);
  border: none;
  padding: 0.75rem 1rem;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}



.newsletter button:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
}

.footer-links ul li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.footer-links a {
 padding: 0px 10px;
}

.footer-bottom {
	display:flex;
	justify-content: space-between;
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}

/* Mobile Responsive */
@media (max-width: 992px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  
  .event-summary {
    flex-direction: column;
  }
  
  .event-image {
    width: 100%;
  }
}

   /* Newsletter */
   .newsletter {
  margin-top: 2rem;
}

.newsletter h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--gold);
}

.newsletter p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
}

.newsletter form {
  display: flex;
  gap: 0.5rem;
}

.about{
    display: flex;
    flex-direction: row;
    align-items: center;
}

.about p{
    width: 90%;
}



.newsletter input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
}

.newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.head-logo{
    width:  27%;
}

.newsletter button {
  background: var(--gold);
  color: var(--dark);
  border: none;
  padding: 0.75rem 1rem;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}



.newsletter button:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
}

.slide-content {
  position: relative;
  z-index: 2;
  color: white;
  padding: 8rem 8rem;
  width: 100%;
}

.slide-content h2 {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.slide-meta {
  margin-bottom: 0.75rem;
  color: var(--gold-light);
  font-size: 1.1rem;
}

.slide-content p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 800px;
}

/* Slider Navigation */
.slider-nav {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  z-index: 10;
  display: flex;
  gap: 0.75rem;
}

.slider-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot.active {
  background: var(--gold);
  transform: scale(1.2);
}

.slider-arrows {
  position: absolute;
  top: 50%;
  width: 100%;
  pointer-events: none;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  padding: 0 1rem;
  transform: translateY(-50%);
}

.slider-arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(0,0,0,0.5);
  color: white;
  display: flex;
  pointer-events: auto;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-arrow:hover {
  background: var(--gold);
}

.slider-arrow i {
  font-size: 1.5rem;
}

/* Event Types */
.slide-tag {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: var(--orange);
  color: white;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.slide-tag.news {
  background: var(--dark-green);
}

.slide-tag.event {
  background: var(--orange);
}

.slide-tag.announcement {
  background: var(--gold);
  color: var(--text-dark);
}

/* Event Date on Slide */
.slide-date {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--orange);
  color: white;
  padding: 0.75rem;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  z-index: 2;
}

.slide-date .day {
  font-size: 1.5rem;
  display: block;
}

.slide-date .month {
  font-size: 0.9rem;
  text-transform: uppercase;
}

.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 0.75rem 0;
  font-size: 0.95rem;
  color: var(--text-light);
}

.event-meta .meta-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.event-meta i {
  color: var(--gold-light);
}

/* Section Styles */
.section {
  padding: 4rem 0;
}

#topluluk {
  background-image: url("img/topluluk_bg.webp");
  position: relative;
  overflow: hidden;
}

#topluluk > .container{
  z-index: 2;
  position: relative;
}

#topluluk::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: #ffffffe3; 
  pointer-events: none; 
}

.section-header {
  margin-bottom: 3rem;
  text-align: left;
}

.section-header h2 {
  font-family: "League Spartan", sans-serif;
  
}

.section h2 {
  font-size: 2.5rem;
  color: #242622;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  width: 50px;
  height: 4px;
  background: var(--gold);
  bottom: -10px;
  left: 0;
  border-radius: 2px;
}

.section-header p {
  max-width: 800px;
  color: var(--neutral-dark);
  font-size: 1.1rem;
  margin-top: 1.5rem;
}

/* About Section */
.about-section {
  background-color: var(--bg-light);
  padding-top: 2rem;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

/* Food & Drink Section Improvements */
.food-drink-section {
  background-color: #f8f8f8;
  padding: 4rem 0;
}

.food-drink-principles {
  display: flex;
  gap: 1rem;
  flex-direction: column;
  margin-bottom: 3rem;
  align-items: flex-start; /* This ensures columns start at the same top position */
}

.principles-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0; /* Reset any default margins */
}

.principle-item {



  transition: all 0.3s ease;
 
  display: flex;
  align-items: center;
  margin: 0; /* Reset any default margins */
}


.principle-item p {
  margin: 0; /* Important to reset paragraph margins */
  font-size: 1rem;
  line-height: 1.5;
}

.menu-button-container {
  text-align: center;
  margin-top: 3rem;
}

.food-drink-section .section-content {
  margin-top: 2rem; /* Add consistent spacing after the header */
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .food-drink-principles {
    flex-direction: column;
  }
  
  .principle-item {
    min-height: auto;
  }
}

.food-drink-content-list li{
  margin-bottom: 1rem;
  font-size: 18px;
  list-style-type: none;
}

.about-text h3 {
  color: var(--dark-green);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.about-text p {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  line-height: 1.8;
}

.emphasis {
  font-weight: 500;
  color: var(--dark-green);
}

.highlight-box {
  background: var(--bg-light-contrast);
  padding: 2.5rem;
  border-radius: 12px;
  margin: 3rem 0;
  position: relative;
  border-left: 4px solid var(--gold);
}

.highlight-box p {
  font-size: 1.3rem;
  font-weight: 500;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 0;
}

.highlight-box::before {
  content: '"';
  position: absolute;
  top: 0;
  left: 2rem;
  font-size: 8rem;
  font-family: serif;
  color: rgba(221, 185, 69, 0.2);
  line-height: 1;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.principle-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.principle-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--card-shadow);
}

.principle-icon {
  width: 60px;
  height: 60px;
  background: rgba(78, 128, 32, 0.1);
  color: var(--dark-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.principle-icon i {
  font-size: 1.8rem;
}

.principle-card h4 {
  font-size: 1.4rem;
  color: var (--dark-green);
  margin-bottom: 1rem;
}

.principle-card p {
  color: var(--text-dark);
  font-size: 1rem;
  line-height: 1.7;
  flex-grow: 1;
}

/* Food & Drink Section */
.food-drink-section {
 
  padding: 5rem 0;
}

.food-drink-content {
  max-width: 800px;

}

.food-drink-content p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.8;
}

.menu-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 3rem 0;
}

.menu-item-preview {
  flex: 1;
  min-width: 300px;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: transform 0.3s ease;
}

.menu-item-preview:hover {
  transform: translateY(-10px);
}

.menu-item-image {
  height: 200px;
  overflow: hidden;
}

.menu-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.menu-item-preview:hover .menu-item-image img {
  transform: scale(1.1);
}

.menu-item-info {
  padding: 1.5rem;
}

.menu-item-info h4 {
  font-size: 1.3rem;
  color: var(--dark-green);
  margin-bottom: 0.5rem;
}

.menu-item-info p {
  font-size: 0.9rem;
  color: var(--neutral-dark);
  margin-bottom: 0;
}



/* === MENU SEGMENT STYLES === */
/* Ana kategori segment başlıkları */
.category-segment-header {
  margin: 1rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.segment-title {
  font-size: 1.4rem;
  font-weight: 550;
  color: #2B2B2B;
  margin: 0 10px;
  text-align: center;
  height: 25px;
}

.segment-divider {
  height: 14px;
  border-radius: 2px;
}

/* Alt kategori segment başlıkları */
.subcategory-segment-header {
  margin: 1.5rem 0 1rem 0;
}

.subsegment-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 0;
  text-align: left;
  padding-left: 1rem;
  border-left: 4px solid var(--orange);
  position: relative;
}

.subsegment-title::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--orange);
}

/* Segment ürün grid'leri */
.subcategory-items-grid,
.category-items-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

/* Responsive segment styles */
@media (max-width: 768px) {
  .segment-title {
    font-size: 1.5rem;
  }
  
  .subsegment-title {
    font-size: 1.1rem;
    padding-left: 0.75rem;
  }
  
  .subcategory-items-grid,
  .category-items-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .category-segment-header {
    margin: 1.5rem 0 1rem 0;
  }
  
  .subcategory-segment-header {
    margin: 1rem 0 0.75rem 0;
  }
}

.menu-button-container {
  text-align: left;
  margin-top: 2rem;
}

/* Community Section */
.community-section {
  background-color: var(--bg-light);
}

.community-content {
  max-width: 800px;
  margin: 0 auto;
}

.community-content p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
  line-height: 1.8;
}



.featured-events h3 {
  color: var(--dark-green);
  font-size: 1.8rem;
  margin-bottom: 2rem;
  text-align: center;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.event-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: transform 0.3s ease;
}

.event-card:hover {
  transform: translateY(-10px);
}

.event-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.event-card:hover .event-image img {
  transform: scale(1.1);
}

.event-date-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--orange);
  color: white;
  padding: 0.5rem;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  line-height: 1.2;
  min-width: 60px;
}

.event-date-badge .day {
  font-size: 1.25rem;
  display: block;
}

.event-date-badge .month {
  font-size: 0.8rem;
  text-transform: uppercase;
}

.event-content {
  padding: 1.5rem;
}

.event-content h4 {
  font-size: 1.3rem;
  color: var(--dark-green);
  margin-bottom: 0.5rem;
}

.event-artist {
  font-style: italic;
  color: var(--neutral-dark);
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.event-details {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.event-detail {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--neutral-dark);
}

.event-detail i {
  color: var(--dark-green);
}

.btn-small {
  display: inline-block;
  background: var(--orange);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-small:hover {
  background: var(--orange-dark);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(232, 121, 40, 0.3);
}

.all-events-link {
  text-align: left;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}


.venue-spec-link {
  display: inline-flex;
  align-items: end;
  gap: 13px;
  margin-top: 2.5rem;
  color: #242622;
  text-decoration: none;
  font-family: 'League Spartan', sans-serif;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.01em;
  line-height: 1;
}

@media (max-width: 768px) {
  .venue-spec-link {
    font-size: 14px;
    margin-top: 1.75rem;
    margin-left: 10px;
  }

  .venue-spec-link svg {
    width: 20px;
    height: 20px;
  }
}

.venue-spec-link:hover {
  text-decoration: underline;
}


/* Button Styles */
.btn {
  display: inline-block;
  background: #DDB945;
  color: #242622;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all var(--transition);
  border: none;
  cursor: pointer;
  min-width: 200px;
  text-align: center;
  letter-spacing: 0.8px;
}

.btn:hover {
  background: #DDB945;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(232, 121, 40, 0.3);
}

.btn.btn-outline {
  background: transparent;
  border: 2px solid var(--dark-green);
  color: var(--dark-green);
}

.btn.btn-outline:hover {
  background: var(--dark-green);
  color: var(--text-light);
}

/* Footer */
footer {
  padding: 4rem 0 2rem;
  background: var(--dark);
  color: var(--text-light);
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 3rem;
}

.footer-info {
  flex: 1;
  min-width: 300px;
  margin-right: 2rem;
}

.footer-logo {
  margin-bottom: 1.5rem;
}

.footer-logo img {
  width: 200px;
}

.footer-contact {
  margin-bottom: 1.5rem;
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.contact-info p {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-bottom: 1rem;
      color: rgba(255, 255, 255, 0.8);
    }
    
    .contact-info i {
      color: var(--gold);
    }

.footer-contact i {
  color: var(--gold);
}

.social-links {
  display: flex;
  gap: 1rem;
 
}

.social-links a {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all var(--transition);
}
/*
.social-links a:hover {
  background: #DDB945;
  color: #fff;
  transform: translateY(-3px);
} */

.footer-newsletter {
  flex: 0 0 350px;
}

.footer-newsletter h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--gold);
}

.footer-newsletter p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
  background: var(--gold);
  color: var(--dark);
  border: none;
  padding: 0.75rem 1rem;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
}

.footer-bottom {
  padding-top: 2rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 992px) {
  .principles-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
  
  .menu-preview {
    flex-direction: column;
  }
  
  .events-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
  
  .footer-info {
    margin-right: 0;
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  .hero-event {
    flex-direction: column;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  nav .nav-links.active{
	  display: flex;
  }
  
  nav .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--dark);
    padding: 1rem;
    flex-direction: column;
    text-align: center;
  }

  nav .nav-links .header-community-btn {
    margin-bottom: 1rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .slide-content h2 {
    font-size: 2rem;
  }
  
  .slider-arrows {
    display: none;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form button {
    align-self: flex-start;
  }
}

@media (max-width: 576px) {
  .principles-grid {
    grid-template-columns: 1fr;
  }
  
  .events-grid {
    grid-template-columns: 1fr;
  }
}


  .public .online-booking-page-template{
	background: #0000008f!important;
}

/* Mobile Large (576px - 767px) */
@media (max-width: 767px) {
  :root {
    --section-spacing: 2.5rem;
  }
  
  .container {
    max-width: 540px;
  }
  
  html {
    font-size: 14px;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .section-header {
    margin-bottom: 2rem;
  }
  
  /* Slider */
  .slider-container {
    aspect-ratio: 3 / 4; /* Mobil dikey oran */
    height: auto;
    max-height: none;
    min-height: auto;
    touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
    user-select: none;
    position: relative;
    overflow: hidden;
  }
  
  .slide {
    touch-action:  pan-y;
  }
  
  .slide-content {
    padding: 1.5rem;
  }
  
  /* Simplify slider navigation for mobile */
  .slider-arrows {
    display: none; /* Hide arrows on mobile, use touch swipe */
  }
  
  .slider-nav {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }
  
  /* Footer responsive */
  .footer-content {
    flex-direction: column;
    gap: 2rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .footer-links {
    justify-content: center;
  }
}

/* Mobile Small (<576px) */
@media (max-width: 575px) {
  :root {
    --section-spacing: 2rem;
  }
  
  .container {
    width: 100%;
    padding: 0 1rem;
  }
  
  html {
    font-size: 13px;
  }
  
  .section {
    padding: 2.5rem 0;
  }
  
  /* Slider - 550px altında dikey oran uygulanacak */
  
  .slide-content {
    padding: 1rem;
  }
  
  .slide-content p {
    margin-bottom: 1rem;
  }
  
  /* Simplify navigation elements further */
  .slider-dot {
    width: 10px;
    height: 10px;
  }
  
  /* Increase button sizes for better touch targets */
  .btn {
    padding: 0.75rem 1.5rem;
  }
  
  /* Footer adjustments */
  footer {
    padding: 2.5rem 0 1.5rem;
  }
}

/* Very Small Devices */
@media (max-width: 360px) {
  .slide-content h2 {
    font-size: 1.4rem;
  }
  
  .slide-content p {
    font-size: 0.9rem;
  }
  
 
  
  .social-links {
    gap: 0.5rem;
  }
  
  .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }
}

/* Mobile Navigation */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  display: none;
  z-index: 99;
}

.menu-overlay.active {
  display: block;
}

/* İletişim Bölümü */
.contact-section {
  background: var(--bg-light-contrast);
}

/* İletişim Bilgileri Çubuğu - Üst Kısım */
.contact-info-bar {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
  padding: 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: var(--card-shadow);
}

.contact-info-bar .contact-info-item {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
}

.contact-info-bar .contact-icon {
  background: rgb(221 186 69 / 26%);
  color: #000;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-bar .contact-icon i {
  font-size: 1.2rem;
}

.contact-info-bar .contact-details h4 {
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.contact-info-bar .contact-details p {
  color: var(--text-dark);
  line-height: 1.6;
  margin: 0;
  font-size: 0.95rem;
}

.contact-info-bar .contact-details a {
  color: #000;
  text-decoration: none;
  font-weight: 400;
}

.contact-info-bar .contact-details a:hover {
  text-decoration: underline;
}

.contact-info-bar .contact-details small {
  color: var(--neutral-dark);
  font-size: 0.85rem;
}

/* Ana İçerik Konteyneri */
.contact-container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-top: 2rem;
}

.contact-form-wrapper,
.contact-map-wrapper {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  min-height: -webkit-fill-available;
  box-shadow: var(--card-shadow);
  height: fit-content;
}

.contact-form-wrapper h3,
.contact-map-wrapper h3 {
  color: #000;
  text-align: center;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.contact-form-wrapper p {
  color: var(--neutral-dark);
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* Form Stilleri */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 500;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 2px solid rgb(225, 229, 233);
  border-radius: 8px;
  font-family: 'League Spartan', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--dark-green);
  box-shadow: 0 0 0 3px rgba(78, 128, 32, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.char-counter {
  text-align: right;
  font-size: 0.85rem;
  color: var(--neutral-dark);
  margin-top: 0.25rem;
}

/* Form Mesajları */
.form-message {
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
  font-weight: 500;
}
.map-container iframe{
    height: 65vh;
}

.form-message.success {
  background: rgba(78, 128, 32, 0.1);
  color: var(--dark-green);
  border: 1px solid rgba(78, 128, 32, 0.3);
}

.form-message.error {
  background: rgba(220, 53, 69, 0.1);
  color: #dc3545;
  border: 1px solid rgba(220, 53, 69, 0.3);
}

/* Harita Stilleri */
.map-container {
  position: relative;
  margin-bottom: 2rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.map-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 450px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  border-radius: 12px;
}

.map-placeholder-content {
  text-align: center;
  color: var(--neutral-dark);
}

.map-placeholder-content i {
  font-size: 3rem;
  color: var(--dark-green);
  margin-bottom: 1rem;
}

.map-placeholder-content h4 {
  color: var(--dark-green);
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.map-placeholder-content p {
  color: var(--neutral-dark);
  font-size: 0.95rem;
  max-width: 250px;
}

/* Harita yüklendiğinde placeholder'ı gizle */
#locationMap[src]:not([src=""]) + .map-placeholder {
  display: none;
}

/* Sosyal Medya Bölümü */
.contact-social {
  border-top: 1px solid var(--bg-light-contrast);
  padding-top: 1.5rem;
}

.contact-social h4 {
  color: var(--dark-green);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.contact-social .social-links {
  display: flex;
  gap: 1rem;
}

.contact-social .social-link {
  background: var(--dark-green);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

.contact-social .social-link:hover {
  background: var(--orange);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(232, 121, 40, 0.3);
}

/* Button Loading Durumu */
.btn .btn-loading {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Mobile Responsive */
@media (max-width: 1200px) {
  .contact-info-bar {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .contact-form-wrapper,
  .contact-map-wrapper {
    padding: 2rem;
  }
  
  .contact-info-bar {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .contact-form-wrapper,
  .contact-map-wrapper {
    padding: 1.5rem;
  }
  
  .contact-info-bar {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
  }
  
  .contact-info-bar .contact-info-item {
    text-align: center;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }


  
  .contact-info-bar .contact-icon {
    align-self: center;
  }
  
  .map-container {
    height: 350px;
  }
  
  .map-placeholder {
    height: 350px;
  }
}

@media (max-width: 480px) {
  .contact-info-bar {
    padding: 1rem;
  }
  
  .contact-form-wrapper,
  .contact-map-wrapper {
    padding: 1rem;
  }
  
  .map-container {
    height: 300px;
  }
  
  .map-placeholder {
    height: 300px;
  }
}

/* Ekstra: Her zaman responsive için */
.contact-form-wrapper,
.contact-map-wrapper,
.map-container,
.map-container iframe {
  max-width: 100%;
  box-sizing: border-box;
}

/* === COOKIE CONSENT STYLES === */

/* Cookie Consent Banner */
.cookie-consent {
  position: fixed;
  bottom: -200px;
  left: 0;
  display: none;
  right: 0;
  background: var(--dark);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  z-index: 9999;
  transition: bottom 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.3);
}

.cookie-consent.show {
  bottom: 0;
  display:block;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-icon {
  font-size: 2rem;
  color: #ffffff;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

.cookie-text {
  flex: 1;
  min-width: 300px;
}

.cookie-text h3, .cookie-text .cookie-title {
  color: #ffffffcf;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.cookie-text p {
  color: #cccccc;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

.cookie-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-cookie {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  white-space: nowrap;
}

.btn-reject {
  background: #666666;
  color: #ffffff;
  border: 2px solid #666666;
}

.btn-reject:hover {
  background: #555555;
  color: #ffffff;
  border-color: #555555;
  transform: translateY(-2px);
}

.btn-details {
  background: #333333;
  color: #ffffff;
  border: 2px solid #333333;
}

.btn-details:hover {
  transform: translateY(-2px);
}

.btn-accept {
  background: #666666;
  color: #fff;
  border: 2px solid #666666;
}

.btn-accept:hover {
  transform: translateY(-2px);
}

.btn-save {
  background: #000000;
  color: #ffffff;
  border: 2px solid #000000;
}

.btn-save:hover {
  background: #333333;
  border-color: #333333;
  transform: translateY(-2px);
}

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cookie-modal.open {
  opacity: 1;
  visibility: visible;
}

.cookie-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
}

.cookie-modal-content {
  position: relative;
  background: #ffffff;
  border-radius: 16px;
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: scale(0.8);
  transition: transform 0.3s ease;
  border: 2px solid #000000;
}

.cookie-modal.open .cookie-modal-content {
  transform: scale(1);
}

.cookie-modal-header {
  padding: 2rem 2rem 1rem;
  border-bottom: 2px solid #000000;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-modal-header h2, .cookie-modal-header .cookie-modal-title {
  color: #000000;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
}

.cookie-modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #666666;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  transition: all 0.3s ease;
}



.cookie-modal-body {
  padding: 2rem;
}

.cookie-modal-body > p {
  color: #000000;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.cookie-category {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: #f8f8f8;
  border-radius: 12px;
  border-left: 4px solid #000000;
}

.cookie-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.cookie-category h3, .cookie-category .cookie-category-label {
  color: #000000;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
}

.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

.cookie-toggle.disabled {
  background: #000000;
  color: #ffffff;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
}

.cookie-toggle input[type="checkbox"] {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #cccccc;
  transition: 0.3s;
  border-radius: 24px;
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
}

input:checked + .toggle-slider {
  background-color: #000000;
}

input:checked + .toggle-slider:before {
  transform: translateX(26px);
}

.cookie-category p {
  color: #666666;
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.5;
}

.cookie-modal-footer {
  padding: 1rem 2rem 2rem;
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  flex-wrap: wrap;
}

/* Responsive Design for Cookie Components */
@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  
  .cookie-actions {
    justify-content: center;
  }
  
  .btn-cookie {
    flex: 1;
    min-width: 120px;
  }
  
  .cookie-modal-content {
    width: 95%;
    margin: 1rem;
  }
  
  .cookie-modal-header {
    padding: 1.5rem 1.5rem 1rem;
  }
  
  .cookie-modal-body {
    padding: 1.5rem;
  }
  
  .cookie-modal-footer {
    padding: 1rem 1.5rem 1.5rem;
    flex-direction: column;
  }
  
  .cookie-modal-footer .btn-cookie {
    width: 100%;
  }
  
  .cookie-category-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
	.slider-nav{
		display:none;
	}
  .cookie-consent {
    padding: 1rem;
  }
  
  .cookie-text h3, .cookie-text .cookie-title {
    font-size: 1.1rem;
  }
  
  .cookie-text p {
    font-size: 0.85rem;
  }
  
  .btn-cookie {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }
}

/* Animation for cookie consent */
@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cookie-consent.show {
  animation: slideUp 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Focus styles for accessibility */


.cookie-toggle input[type="checkbox"]:focus + .toggle-slider {
  box-shadow: 0 0 0 2px #000000;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .cookie-consent {
    background: black;
    border-top-color: white;
  }
  
  .cookie-text h3, .cookie-text .cookie-title {
    color: white;
  }
  
  .cookie-text p {
    color: white;
  }
  
  .btn-cookie {
    border-width: 3px;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .cookie-consent,
  .cookie-modal,
  .cookie-modal-content,
  .btn-cookie,
  .toggle-slider,
  .toggle-slider:before {
    transition: none;
  }
  
  .cookie-icon {
    animation: none;
  }
}

/* Print styles - hide cookie components */
@media print {
  .cookie-consent,
  .cookie-modal {
    display: none !important;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* İç linkleme CTA bandı (faq, menu sayfaları) */
.internal-cta {
  background: #f7f5f2;
  border-top: 1px solid #e8e4e0;
  padding: 2rem 0;
  text-align: center;
}
.internal-cta p {
  margin: 0 0 .75rem;
  color: #555;
  font-size: .95rem;
}
.internal-cta a {
  display: inline-block;
  font-weight: 600;
  font-size: .95rem;
  color: #222;
  text-decoration: none;
  border-bottom: 2px solid #222;
  padding-bottom: 1px;
  transition: opacity .2s;
}
.internal-cta a:hover { opacity: .65; }
