/* CSS Custom Properties (Variables) */
:root {
  /* Colors */
  --color-primary: #4f46e5;
  --color-primary-dark: #3730a3;
  --color-primary-light: #6366f1;
  --color-secondary: #10b981;
  --color-secondary-dark: #059669;
  --color-accent: #f59e0b;
  --color-accent-light: #fcd34d;

  /* Neutrals */
  --color-white: #ffffff;
  --color-gray-50: #f9fafb;
  --color-gray-100: #f3f4f6;
  --color-gray-200: #e5e7eb;
  --color-gray-300: #d1d5db;
  --color-gray-400: #9ca3af;
  --color-gray-500: #6b7280;
  --color-gray-600: #4b5563;
  --color-gray-700: #374151;
  --color-gray-800: #1f2937;
  --color-gray-900: #111827;
  --color-black: #000000;

  /* Typography */
  --font-family-primary: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    "Roboto", "Helvetica Neue", Arial, sans-serif;
  --font-family-heading: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    "Roboto", "Helvetica Neue", Arial, sans-serif;
  --font-family-nav: "Bahnschrift Light", "Bahnschrift"; /* Font Weights */
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;

  /* Font Sizes */
  --font-size-xs: 0.75rem; /* 12px */
  --font-size-sm: 0.875rem; /* 14px */
  --font-size-base: 1rem; /* 16px */
  --font-size-lg: 1.125rem; /* 18px */
  --font-size-xl: 1.25rem; /* 20px */
  --font-size-2xl: 1.5rem; /* 24px */
  --font-size-3xl: 1.875rem; /* 30px */
  --font-size-4xl: 2.25rem; /* 36px */
  --font-size-5xl: 3rem; /* 48px */
  --font-size-6xl: 3.75rem; /* 60px */
  --font-size-7xl: 4.5rem; /* 72px */

  /* Line Heights */
  --line-height-none: 1;
  --line-height-tight: 1.25;
  --line-height-snug: 1.375;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.625;
  --line-height-loose: 2;

  /* Spacing */
  --space-1: 0.25rem; /* 4px */
  --space-2: 0.5rem; /* 8px */
  --space-3: 0.75rem; /* 12px */
  --space-4: 1rem; /* 16px */
  --space-5: 1.25rem; /* 20px */
  --space-6: 1.5rem; /* 24px */
  --space-8: 2rem; /* 32px */
  --space-10: 2.5rem; /* 40px */
  --space-12: 3rem; /* 48px */
  --space-16: 4rem; /* 64px */
  --space-20: 5rem; /* 80px */
  --space-24: 6rem; /* 96px */
  --space-32: 8rem; /* 128px */
  --space-40: 10rem; /* 160px */
  --space-48: 12rem; /* 192px */
  --space-56: 14rem; /* 224px */
  --space-64: 16rem; /* 256px */

  /* Breakpoints */
  --breakpoint-sm: 640px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 1024px;
  --breakpoint-xl: 1280px;
  --breakpoint-2xl: 1536px;

  /* Border Radius */
  --radius-none: 0;
  --radius-sm: 0.125rem; /* 2px */
  --radius-base: 0.25rem; /* 4px */
  --radius-md: 0.375rem; /* 6px */
  --radius-lg: 0.5rem; /* 8px */
  --radius-xl: 0.75rem; /* 12px */
  --radius-2xl: 1rem; /* 16px */
  --radius-3xl: 1.5rem; /* 24px */
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-base: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1),
    0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1),
    0 8px 10px -6px rgb(0 0 0 / 0.1);
  --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);

  /* Transitions */
  --transition-fast: 150ms ease-in-out;
  --transition-base: 300ms ease-in-out;
  --transition-slow: 500ms ease-in-out;

  /* Z-Index */
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal: 1040;
  --z-popover: 1050;
  --z-tooltip: 1060;
}

/* Base Styles */
body {
  font-family: var(--font-family-primary);
  font-size: var(--font-size-base);
  line-height: var(--line-height-normal);
  color: var(--color-gray-900);
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.menu-open {
  overflow: hidden;
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-4);
  padding-right: var(--space-4);
}

@media (min-width: 640px) {
  .container {
    padding-left: var(--space-6);
    padding-right: var(--space-6);
  }
}

@media (min-width: 1024px) {
  .container {
    padding-left: var(--space-8);
    padding-right: var(--space-8);
  }
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-family-heading);
  font-weight: var(--font-weight-semibold);
  line-height: var(--line-height-tight);
  color: var(--color-gray-900);
}

.section__title {
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-bold);
  text-align: center;
  margin-bottom: var(--space-4);
}

.section__subtitle {
  font-size: var(--font-size-lg);
  color: var(--color-gray-600);
  text-align: center;
  margin-bottom: var(--space-12);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section__header {
  margin-bottom: var(--space-16);
}

/* Button Components */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  line-height: 1;
  text-align: center;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
  user-select: none;
}

.btn:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.btn--primary {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.btn--primary:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--secondary {
  background-color: var(--color-white);
  color: var(--color-gray-700);
  border-color: var(--color-gray-300);
}

.btn--secondary:hover {
  background-color: var(--color-gray-50);
  border-color: var(--color-gray-400);
}

.btn--outline {
  background-color: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn--outline:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--large {
  padding: var(--space-4) var(--space-8);
  font-size: var(--font-size-base);
}

.btn--full {
  width: 100%;
}

.btn__icon {
  font-size: var(--font-size-xs);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(
    255,
    255,
    255,
    0.7
  ); /* Opacity ile şeffaflık sağlandı */
  z-index: var(--z-fixed);
  transition: all var(--transition-base);
  height: 80px; /* Reduced height for mobile */
  overflow: visible;
  display: flex;
  align-items: center;
}

.header.scrolled {
  box-shadow: var(--shadow-md);
  background-color: rgba(255, 255, 255, 0.9);
}

/* Navigation */
.nav {
  display: flex;
  align-items: center; /* Dikey olarak ortalamak için eklendi */
  justify-content: space-between; /* Logo ve nav__menu arasında boşluk bırakmak için */
  width: 100%;
  position: relative;
}

.nav__brand {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 10;
  height: auto;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-gray-900);
  text-decoration: none;
  position: relative;
}

.nav__logo-img {
  width: 85px; /* Adjusted for smaller header */
  height: auto;
  object-fit: contain;
  position: relative;
    z-index: 100;
  top: 0;
}

.nav__logo-text {
  color: var(--color-primary);
}

.nav__menu {
  display: none; /* Hidden by default on all screens */
  flex-direction: column;
  gap: var(--space-4);
  position: absolute;
  top: 60px; /* Position below header */
  left: 0;
  right: 0;
  background-color: var(--color-white);
  padding: var(--space-6);
  box-shadow: var(--shadow-lg);
  border-top: 1px solid var(--color-gray-200);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all var(--transition-base);
    z-index: 30; /* Higher than logo and toggle */
}

.nav__menu.active {
  display: flex;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (min-width: 1024px) {
  .header {
    height: 100px;
  }

  .nav__logo-img {
    width: 105px;
  }

  .nav__menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--space-6);
    position: static;
    background-color: transparent;
    border-top: none;
    box-shadow: none;
    padding: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    margin-bottom: 0; /* Reset margin */
  }
}

.nav__link {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-light);
  font-family: "Bahnschrift";
  color: #51277d;
  text-decoration: none;
  padding: var(--space-2) 0;
  transition: color var(--transition-fast);
  position: relative;
}

.nav__link:hover {
  color: var(--color-primary);
}

.nav__link--active {
  color: var(--color-primary);
}

.nav__link--active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--color-primary);
  border-radius: var(--radius-full);
}

.nav__actions {
  display: none;
  gap: var(--space-3);
}

@media (min-width: 1024px) {
  .nav__actions {
    display: flex;
  }
}

.nav__toggle {
  display: flex;
  flex-direction: column;
  gap: 5px; /* Adjusted gap */
  padding: var(--space-2);
  background: none;
  border: none;
  cursor: pointer;
  z-index: 300;
  position: relative; /* Ensure z-index works */
}

@media (min-width: 1024px) {
  .nav__toggle {
    display: none;
  }
}

.nav__toggle-line {
  width: 24px;
  height: 2px;
  background-color: var(--color-gray-700);
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}

.nav__toggle.active .nav__toggle-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.active .nav__toggle-line:nth-child(2) {
  opacity: 0;
}

.nav__toggle.active .nav__toggle-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px); /* Adjusted translation */
}

/* Hero Section */
.hero {
  padding-top: 150px;
  padding-bottom: 300px;
  background: url("../assets/images/hero_bg.png") no-repeat center center/cover;
  background-size: 100% 40%;
  position: relative;
}

.hero__content {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__text {
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero__text img {
  max-width: 100%;
  height: 100px;
  position: relative;
  left: -60px;
  top: 120px; /* Changed from absolute for mobile */
  transform: none; /* Reset transform */
}

.hero__actions {
  margin-top: var(--space-6);
  position: relative; /* Ensure z-index works */
  z-index: 1000; /* Ensure it is above other elements */
}

.hero__actions .btn {
    position: relative; /* Ensure z-index works */
    z-index: 1010; /* Higher than .hero__actions */
    pointer-events: auto; /* Ensure it is clickable */
}

.hero__actions .btn {
  font-size: var(--font-size-lg);
  padding: var(--space-3) var(--space-6);
}

@media (min-width: 1024px) {
  .hero {
    padding-top: calc(250px + var(--space-64));
    padding-bottom: calc(20px + var(--space-24));
    background: url("../assets/images/hero_bg.png") no-repeat center
      center/cover; /* Hero arka planı sabit */
    background-size: 1370px 830px;
    position: relative; /* İçeriklerin bağımsız konumlandırılması için */
  }

  .hero__text img {
    position: absolute;
    width: 500px;
    height: 400px;
    top: -300px;
    left: -350px;
    transform: translateX(-50%);
    max-width: initial; /* Reset max-width for larger screens */
  }

  .btn {
    font-size: 30px!important;
    position: relative;
    left: -430px;
    top: -50px;
    padding: 10px 25px!important;
  }

  .olanaklar {
    padding: var(--space-24) 0;
    background: url("../assets/images/olanaklar_bg.jpg") no-repeat center center/cover;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}
}

/* Olanaklar Section */
.olanaklar {
  padding: var(--space-16) 0;
  background: url("../assets/images/olanaklar_bg.jpg") no-repeat center
    center/cover;
  position: relative;
}

.olanaklar__grid {
  display: grid;
  gap: var(--space-8);
  max-width: 1000px;
  margin: 0 auto;
}

.olanak-item {
  display: flex;
  flex-direction: column; /* Stack vertically on mobile */
  align-items: center;
  text-align: center;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.olanak-item__icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.olanak-item__title {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  color: black;
}

.olanak-item__description {
  font-size: var(--font-size-base);
  color: black;
  opacity: 0.9;
}

@media (min-width: 768px) {
  .olanaklar {
    padding: var(--space-24) 0;
  }

  .olanaklar__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-12);
  }

  .olanak-item {
    flex-direction: row; /* Side-by-side on larger screens */
    text-align: left;
  }
}

/* About Section */
.about {
  padding: var(--space-16) 0;
  background: url("../assets/images/about_bg.png") no-repeat center center/cover;
  background-size: cover;
  background-attachment: scroll; /* Better for mobile */
}

.about__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  position: static; /* Remove absolute positioning */
  width: 100%;
}

.about__text {
  text-align: center; /* Center text on mobile */
  color: #51277d;
  padding: 0;
}

.about__image {
  display: flex;
  justify-content: center;
  align-items: center;
  order: -1; /* Image first on mobile */
}

.about__photo {
  width: 100%;
  max-width: 350px;
  height: auto;
  position: static; /* Remove absolute positioning */
  border-radius: var(--radius-2xl);
}

.about__title {
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-bold);
  color: #51277d;
  margin-bottom: var(--space-6);
  text-align: center; /* Center title */
}

.about__description {
  font-size: var(--font-size-base);
  line-height: var(--line-height-relaxed);
  color: #51277d;
}

@media (min-width: 1024px) {
  .about {
    padding: var(--space-24) 0;
    background: url("../assets/images/about_bg.png") no-repeat center center/cover;
    background-size: cover;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
  }

  .about__content {
    position: relative;
    left: -100px;
    top: -100px;
    z-index: 2;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: center;
    min-height: 80vh;
  }

  .about__text {
    max-width: 1000px;
    text-align: left;
    color: #51277d;
    position: relative;
    top: 50px;
    padding: var(--space-8);  }

  .about__image {
    order: 0; /* Reset order */
    position: relative;
    top: 50px;
  }

  .about__photo {
    max-width: 500px;
    position: relative;
    right: -150px;
  }

  .about__title {
    font-size: var(--font-size-4xl);
    text-align: start;
  }

  .about__description {
    font-size: var(--font-size-lg);
  }
}

/* Neden Biz Section */
.nedenbiz {
  padding: var(--space-16) 0;
  background: url("../assets/images/nedenbiz_bg.png") no-repeat center
    center/cover;
  background-size: cover;
  position: relative;
  display: flex;
  align-items: center;
}

.nedenbiz::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(81, 39, 125, 0.9) 0%,
    rgba(81, 39, 125, 0.7) 100%
  );
  z-index: 1;
}

.nedenbiz__content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: center;
}

.nedenbiz__text {
  padding: 0;
  color: white;
  text-align: center;
}

  .nedenbiz__btn {
    position: relative;
    font-family: 'Bahnschrift', sans-serif;
    font-weight: bolder;
    color: #51277d;
    font-size: var(--font-size-xl);
    background-color: white;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-fast);
    text-transform: none;
    letter-spacing: 0.5px;
}

.nedenbiz__btn:hover {
    background-color: white;
    color: #51277d;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.nedenbiz__title {
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-bold);
  color: white;
  margin-bottom: var(--space-8);
  text-align: center;
}

.nedenbiz__list {
  display: inline-flex; /* Center items */
  flex-direction: column;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
  text-align: left; /* Align text inside items */
}

.nedenbiz__item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--font-size-lg);
}

.nedenbiz__actions {
  display: flex;
  justify-content: center;
  margin-top: var(--space-8);
}

.nedenbiz__  {
  font-size: var(--font-size-lg);
}

.nedenbiz__image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.nedenbiz__image img {
  max-width: 100%;
  height: auto;
}

@media (min-width: 1024px) {
  .nedenbiz {
    padding: var(--space-24) 0;
    background: url("../assets/images/nedenbiz_bg.png") no-repeat center center/cover;
    background-size: cover;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
  }

  .nedenbiz__content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: center;
    min-height: 80vh;
  }

  .nedenbiz__text {
    padding: var(--space-8);
    font-size: 34px;
    color: white;
    text-align: left;  }

  .nedenbiz__title {
    font-size: 56px;
    font-weight: var(--font-weight-bold);
    color: white;
    margin-bottom: var(--space-12);
    text-align: left;
    letter-spacing: 1px;
    font-family: var(--font-family-heading);
  }

  .nedenbiz__list {
    display: flex;
  }

  .nedenbiz__item {
    font-size: var(--font-size-xl);
  }

  .nedenbiz__actions {
    justify-content: flex-start;
  }

  .nedenbiz__btn {
    position: relative;
    font-family: 'Bahnschrift', sans-serif;
    font-weight: bolder;
    color: #51277d;
    font-size: var(--font-size-xl);
    background-color: white;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-fast);
    text-transform: none;
    letter-spacing: 0.5px;
}

.nedenbiz__btn:hover {
    background-color: white;
    color: #51277d;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}
}

/* Odalarımız Section */
.odalarimiz {
  padding: var(--space-16) 0;
  background: url("../assets/images/odalarimiz_bg.png") no-repeat center
    center/cover;
  background-size: cover;
  display: flex;
  align-items: center;
}

.odalarimiz__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: center;
  width: 100%;
}

.odalarimiz__text {
  position: static;
  color: #51277d;
  font-weight: bold;
  text-align: center;
  padding: 0;
}

.odalarimiz__description {
  font-size: var(--font-size-base);
  margin-bottom: var(--space-8);
}

.odalarimiz__actions {
  display: flex;
  justify-content: center;
}

.odalarimiz__btn {
    font-family: 'Bahnschrift';
    font-weight: var(--font-weight-light);
    font-size: var(--font-size-xl);
    color: white;
    background-color: #51277d;
    position: relative;
    padding: var(--space-2) var(--space-4);
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
}

.hexagon-gallery {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hexagon-gallery img {
  max-width: 100%;
  height: auto;
}

@media (min-width: 1024px) {
  .odalarimiz {
    padding: var(--space-24) 0;
    background: url("../assets/images/odalarimiz_bg.png") no-repeat center center/cover;
    background-size: cover;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
  }

  .odalarimiz__content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
    min-height: 80vh;
    max-width: 1400px;
    margin: 0 auto;
  }

  .odalarimiz__text {
    max-width: 600px;
    text-align: left;
    position: relative;
    right: 100px;
    color: #51277d;
    padding: var(--space-8);
  }

  .odalarimiz__description {
    font-size: 24px;
    line-height: var(--line-height-relaxed);
    color: #51277d;
    position: relative;
    left: 40px;
    margin-bottom: var(--space-8);  }

  .odalarimiz__btn {
    font-family: 'Bahnschrift';
    font-weight: var(--font-weight-light);
    font-size: var(--font-size-xl);
    color: white;
    background-color: #51277d;
    position: relative;
    right: 125px;
    padding: var(--space-2) var(--space-4);
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
  }

  .hexagon-gallery img {
    width: 1000px;
    height: 400px;
  }
}

/* Gallery Section */
.gallery {
  padding: var(--space-16) 0;
  background: url("../assets/images/gallery_bg.png") no-repeat center
    center/cover;
  background-attachment: scroll;
  min-height: auto;
}

.gallery::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.1);
  z-index: 1;
}

.gallery__content {
  position: relative;
  z-index: 2;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  padding: 1.5rem;
  border-radius: 0.5rem;
}

.gallery__header {
  text-align: center;
  margin-bottom: var(--space-8);
}

.gallery__title {
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-bold);
  color: #51277d;
  letter-spacing: 2px;
}

/* Swiper Container */
.gallery__swiper {
  width: 100%;
  height: auto;
  padding: var(--space-4) 0;
}

.gallery__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.gallery__card img {
  width: 100%;
  height: 200px; /* Set a fixed height for images on mobile */
  border-radius: var(--radius-lg);
  object-fit: cover;
}

/* Swiper Navigation */
.gallery .swiper-button-next,
.gallery .swiper-button-prev {
  color: var(--color-primary);
  width: 3rem;
  height: 3rem;
  top: 60%; /* Center align vertically */
  transform: translateY(-60%);
  background-color: var(--color-white);
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  transition: background-color var(--transition-fast);
}

.gallery .swiper-button-next:hover,
.gallery .swiper-button-prev:hover {
  background-color: var(--color-primary-light);
}

.gallery .swiper-button-next::after,
.gallery .swiper-button-prev::after {
  font-size: var(--font-size-xl);
}

/* Swiper Pagination */
.gallery .swiper-pagination {
  bottom: var(--space-4);
}

.gallery .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--color-gray-300);
  opacity: 1;
  transition: background-color var(--transition-fast);
}

.gallery .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

/* Swiper Slide Effects */
.gallery .swiper-slide {
  opacity: 0.5;
  transform: scale(0.9);
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.gallery .swiper-slide-active {
  opacity: 1;
  transform: scale(1);
}

@media (min-width: 768px) {
  .gallery__swiper {
    padding: var(--space-8) 0;
  }

  .gallery__card img {
    height: 250px; /* Adjust height for tablets */
  }

  .gallery .swiper-slide {
    transform: scale(0.95);
  }

  .gallery .swiper-slide-active {
    transform: scale(1);
  }
}

@media (min-width: 1024px) {
  .gallery__swiper {
    padding: var(--space-12) 0;
  }

  .gallery__card img {
    height: 300px; /* Adjust height for desktops */
  }

  .gallery .swiper-slide {
    transform: scale(1);
  }

  .gallery .swiper-slide-active {
    transform: scale(1.15);
  }
}

/* Movie Section */
.movie {
  padding: var(--space-16) 0;
  background: url("../assets/images/tanitim_bg.png") no-repeat center
    center/cover;
  background-size: cover;
  background-attachment: scroll;
  min-height: auto;
}

  .movie::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(81, 39, 125, 0.1);
    z-index: 1;
}

.movie__content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.movie__title {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  color: #51277d;
  margin-bottom: var(--space-8);
}

  .movie__video-wrapper {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 800px;
    aspect-ratio: 16/9;
    background: rgba(81, 39, 125, 0.8);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all var(--transition-base);  
}

.movie__video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    background: linear-gradient(135deg, rgba(81, 39, 125, 0.9), rgba(81, 39, 125, 0.7));
}

.movie__play-button {
  width: 70px;
  height: 70px;
}

@media (min-width: 1024px) {
  .movie {
    padding: var(--space-24) 0;
    background: url("../assets/images/tanitim_bg.png") no-repeat center center/cover;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
  }

  .movie::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(81, 39, 125, 0.1);
    z-index: 1;
}

.movie__content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.movie__title {
    font-size: var(--font-size-4xl);
    font-weight: var(--font-weight-bold);
    color: #51277d;
    margin-bottom: var(--space-16);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    letter-spacing: 2px;
}

  .movie__title {
    font-size: var(--font-size-4xl);
  }

  .movie__video-wrapper {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 800px;
    aspect-ratio: 16/9;
    background: rgba(81, 39, 125, 0.8);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all var(--transition-base);  
}



.movie__video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    background: linear-gradient(135deg, rgba(81, 39, 125, 0.9), rgba(81, 39, 125, 0.7));
}

  .movie__play-button {
    width: 100px;
    height: 100px;
  }
}

/* Footer */
.footer {
  background-color: #51277d;
  color: white;
  padding: var(--space-12) 0 var(--space-8);
}

.footer__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  text-align: center;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer__logo-img {
  width: 100px;
  height: auto;
}

.footer__social {
  display: flex;
  justify-content: center;
  gap: var(--space-4);
  margin-top: var(--space-4);
}

.footer__social-link {
  position: static;
}

.footer__links {
  display: grid;
  grid-template-columns: 1fr;
color: var(--color-gray-400);
  gap: var(--space-8);
}

.footer__bottom {
  flex-direction: column;
  text-align: center;
  gap: var(--space-4);
}

.footer__column-title {
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-semibold);
    color: var(--color-white);
    margin-bottom: var(--space-4);
}

@media (min-width: 768px) {
  .footer__content {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .footer__brand {
    align-items: flex-start;
  }

  .footer__social {
    justify-content: flex-start;
  }

  .footer__links {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {

.footer {
    background-color: #51277d;
    color: white;
    padding: var(--space-16) 0 var(--space-8);
}

    .footer__content {
        grid-template-columns: 1fr 2fr;
        gap: var(--space-4);
    }

.footer__brand {
    max-width: 400px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    margin-bottom: var(--space-4);
}

.footer__logo-img {
    width: 100px;
    height: 130px;
}

.footer__logo-text {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    color: var(--color-white);
}

.footer__description {
    color: var(--color-gray-400);
    line-height: var(--line-height-relaxed);
    margin-bottom: var(--space-6);
}

.footer__social {
    display: flex;
    gap: var(--space-4);
}

.footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #51277d;
    color: var(--color-gray-400);
    border-radius: var(--radius-lg);
    transition: all var(--transition-fast);
    position: relative;
    right: 50px;
}

.footer__social-link:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
}

    .footer__links {
        grid-template-columns: repeat(3, 1fr);
    }

.footer__column-title {
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-semibold);
    color: var(--color-white);
    margin-bottom: var(--space-4);
}

.footer__link-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.footer__link {
    color: var(--color-gray-400);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer__link:hover {
    color: var(--color-primary-light);
}

    .footer__bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }

.footer__copyright {
    color: var(--color-gray-500);
    font-size: var(--font-size-sm);
}

.footer__bottom-links {
    display: flex;
    gap: var(--space-6);
    justify-content: center;
}

.footer__bottom-link {
    color: var(--color-gray-500);
    text-decoration: none;
    font-size: var(--font-size-sm);
    transition: color var(--transition-fast);
}

.footer__bottom-link:hover {
    color: var(--color-primary-light);
}

}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Ensure no other elements overlap the button */
.hero__content {
    position: relative;
    z-index: 5; /* Lower than .hero__actions */
}

.hero__text {
    position: relative;
    z-index: 5; /* Lower than .hero__actions */
}

/* WhatsApp Floating Icon */
.whatsapp-icon {
  position: fixed;
  bottom: 20px; /* Sağ alt köşe için mesafe */
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #51277d; /* WhatsApp yeşili */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: var(--z-fixed);
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.whatsapp-icon:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-xl);
}

.whatsapp-icon img {
  width: 30px;
  height: 30px;
}
