/* === 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);
}

/* 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; 
}

/* 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;
}

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: 100%;
}

.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;
  overflow: hidden;
  width: 100%;
  height: 80vh; /* Viewport'un %80'i - daha iyi responsive yapı */
  min-height: 300px;
  max-height: 800px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  background: #000;
  margin-bottom: var(--section-spacing);
}

/* Slides - Responsive */
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
  display: flex;
  align-items: flex-end;
}

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

.slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Çok önemli - responsive görüntü için */
  object-position: center;
  z-index: 1;
}

/* Slide Content - Responsive */
.slide-content {
  position: relative;
  z-index: 2;
  width: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.7) 50%, rgba(0,0,0,0.2) 85%, transparent);
  color: white;
  padding: 2.5rem;
  padding-top: 8rem; /* Gradient için daha yüksek padding */
  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);
}

/* Ekstra animasyon efektleri */
.slide {
  transform: translateX(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide.active {
  transform: translateX(0);
}

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

/* Tablet (768px - 991px) */
@media (max-width: 991px) {
  .slider-container {
    height: 65vh;
    min-height: 350px;
  }
  
  .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;
  }
  .slider-container {
    height: 60vh;
    min-height: 300px;
  }
  
  .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) {
  .slider-container {
    height: 55vh;
    min-height: 250px;
  }
  
  .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 {
    min-height: 400px;
    max-height: 600px;
  }
  
  .slide-content {
    padding: 1.5rem;
  }
}

@media (max-width: 768px) {
  .logo img{
    width: 100%;
    margin: 0;
  }
  .slider-container {
    min-height: 300px;
    max-height: 500px;
  }
  
  .slide-content {
    padding: 1rem;
  }
  
  /* Touch friendly navigation */
  .slider-nav {
    bottom: 1rem;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
  
  /* Larger touch targets */
  .slider-dot {
    min-width: 12px;
    min-height: 12px;
  }
  
  .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 {
    min-height: 250px;
    max-height: 400px;
  }
  
  .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 {
    min-height: 200px;
  }
  
  .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;
}

/* Animation improvements */
.slide {
  transition: opacity 1s ease-in-out;
}

.slide.active {
  animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

 /* 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: var(--dark-green-hover);
  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;
  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;
}

/* Ö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: var(--gold);
  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: var(--gold);
  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;
  background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.6) 60%, transparent);
  color: white;
  padding: 5rem 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%;
  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;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.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-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;
}

/* 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: var(--orange);
  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;
  }
  
  .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 {
    touch-action: pan-y; /* Önemli: none olarak değiştirildi */
    -webkit-overflow-scrolling: touch;
    user-select: none;
    position: relative;
    overflow: hidden;
  }
  
  .slide {
    touch-action:  pan-y; /* Önemli: none olarak değiştirildi */
    will-change: opacity, transform;
  }
  
  .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 */
  .slider-container {
    min-height: 250px;
    aspect-ratio: auto;
  }
  
  .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;
  }
  
  .slider-container {
    min-height: 220px;
  }
  
  .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;
}