/* ========================= */
/* RESET */
/* ========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: #f4efec;
  color: #3a1f1f;
  padding-top: 140px;
}

/* ========================= */
/* CONTAINER */
/* ========================= */

.container {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  padding: 0 20px;
}

/* ========================= */
/* HEADER */
/* ========================= */

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 80px;
  background: #f4efec;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header img {
  height: 90px;
  object-fit: contain;
}

/* NAV */
nav {
  display: flex;
  gap: 40px;
}

nav a {
  font-size: 22px;
  text-decoration: none;
  color: #3a1f1f;
  position: relative;
}

nav a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: #8b0000;
  transition: 0.3s;
}

nav a:hover::after {
  width: 100%;
}

/* ========================= */
/* HERO */
/* ========================= */

.hero {
  text-align: center;
  padding: 120px 20px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 72px;
  max-width: 1200px;
  margin: auto;
}

.hero p {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  line-height: 1.6;
}

.hero img {
  width: 40%;
  margin: 50px 0;
  border-radius: 10px;
}

.hero-bottom {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

/* ========================= */
/* BUTTONS */
/* ========================= */

.btn {
  background: #8b0000;
  color: white;
  padding: 14px 28px;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-outline {
  border: 1px solid #8b0000;
  padding: 10px 20px;
  color: #8b0000;
  transition: 0.3s;
}

.btn-outline:hover {
  background: #8b0000;
  color: white;
}

/* ========================= */
/* SERVICES */
/* ========================= */

.services {
  padding: 100px 80px;
}

.services h2 {
  text-align: center;
  margin-bottom: 60px;
  font-family: 'Playfair Display', serif;
  font-size: 72px;
}

.service {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  align-items: center;
  padding: 25px;
  margin-bottom: 15px;
  background: #ece7e4;
}

.service img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
}

/* ========================= */
/* ABOUT */
/* ========================= */

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 100px 80px;
  gap: 60px;
  align-items: start;
}

.about-title {
  text-align: center;
  margin-bottom: 60px;
  font-family: 'Playfair Display', serif;
  font-size: 72px;
  grid-column: 1 / -1;
}

.about img {
  width: 100%;
  border-radius: 10px;
}

.about div {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-bottom: 80px;
}

.about h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  margin-bottom: 20px;
}

.about p {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  line-height: 1.6;
}

.about .btn {
  position: absolute;
  bottom: 0;
  right: 0;
}

/* ========================= */
/* REPERTOAR */
/* ========================= */

.repertoar {
  padding: 100px 80px;
}

.repertoar h2 {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 72px;
  margin-bottom: 20px;
}

.repertoar-text {
  max-width: 1400px;
  margin: 0 auto 60px;
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  line-height: 1.7;
}

.repertoar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.repertoar-box {
  background: #ece7e4;
  padding: 30px;
}

/* ========================= */
/* KONTAKT */
/* ========================= */

.kontakt {
  padding: 100px 80px;
}

.kontakt-title {
  text-align: center;
  margin-bottom: 60px;
  font-family: 'Playfair Display', serif;
  font-size: 72px;
}

.kontakt-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.kontakt-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  margin-bottom: 20px;
}

.kontakt-form h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  margin-bottom: 20px;
}

/* FORM */
form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

input,
textarea {
  padding: 12px;
  border: 1px solid #ccc;
}

button {
  background: #8b0000;
  color: white;
  padding: 14px;
  border: none;
  cursor: pointer;
}

/* ========================= */
/* FOOTER */
/* ========================= */

.site-footer {
  background: #f8f3ed;
  padding: 40px 80px 20px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-left img {
  height: 65px;
}

.footer-right {
  display: flex;
  gap: 20px;
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media (max-width: 768px) {

  .header {
    padding: 20px;
  }

  nav {
    display: none;
  }

  .hero h1 {
    font-size: 36px;
  }

  .about,
  .kontakt-wrapper,
  .repertoar-grid {
    grid-template-columns: 1fr;
  }

  .services,
  .about,
  .repertoar,
  .kontakt {
    padding: 60px 20px;
  }
}

/* ========================= */
/* ANIMATION */
/* ========================= */

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ========================= */
/* FOOTER – FINAL ICON FIX */
/* ========================= */

.site-footer {
  background: #f8f3ed;
  padding: 40px 80px 20px;
  border-top: 1px solid #e2d8d1;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.footer-left img {
  height: 55px;              /* ⬅️ küçültüldü */
  width: auto;
  object-fit: contain;
}

/* SOCIAL ICONS */
.footer-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

/* KRİTİK KISIM */
.footer-right img {
  width: 26px;               /* ⬅️ ikon boyutu sabitlendi */
  height: 26px;
  max-width: 26px;
  max-height: 26px;
  object-fit: contain;

  transition: transform 0.25s ease, opacity 0.25s ease;
}

.footer-right img:hover {
  transform: translateY(-3px) scale(1.05);
  opacity: 0.75;
}

/* COPYRIGHT */
.footer-bottom {
  text-align: center;
  margin-top: 25px;
  padding-top: 16px;
  border-top: 1px solid #e6ddd6;
  font-size: 13px;
  color: #666;
}

/* ========================= */
/* FOOTER – MOBILE */
/* ========================= */

@media (max-width: 768px) {
  .site-footer {
    padding: 30px 20px 15px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 18px;
  }

  .footer-right img {
    width: 24px;
    height: 24px;
  }
}
/* ========================= */
/* ABOUT – CENTER ALIGN FIX */
/* ========================= */

.about {
  padding: 100px 0;          /* sola–sağa padding’i kaldırıyoruz */
  display: block;            /* grid’i container’a devrediyoruz */
}

.about .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* BAŞLIK ORTADA */
.about-title {
  grid-column: 1 / -1;
  text-align: center;
  margin-bottom: 60px;
}

/* IMAGE */
.about img {
  width: 100%;
  max-width: 520px;
  border-radius: 10px;
  justify-self: center;      /* görseli ortalar */
}

/* TEXT */
.about div {
  position: relative;
  padding-bottom: 70px;
}

.about .btn {
  position: absolute;
  bottom: 0;
  right: 0;
}

/* ========================= */
/* ABOUT – MOBILE */
/* ========================= */

@media (max-width: 768px) {
  .about .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about .btn {
    position: static;
    margin-top: 20px;
  }
}
/* ========================= */
/* GALLERY PAGE – FIX */
/* ========================= */

/* HERO */
.gallery-hero {
  padding: 120px 20px;
  text-align: center;
}

.gallery-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  margin-bottom: 10px;
}

.gallery-hero p {
  font-size: 22px;
}

/* ========================= */
/* PHOTO GALLERY */
/* ========================= */

.gallery {
  padding: 100px 0;
}

.gallery-title {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 72px;
  margin-bottom: 60px;
}

/* PHOTO GRID */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* PHOTO ITEM */
.gallery-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
  transition: transform .3s ease, box-shadow .3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.04);
  box-shadow: 0 12px 30px rgba(0,0,0,.2);
}

/* ========================= */
/* VIDEO GALLERY */
/* ========================= */

.video-section {
  padding: 120px 0;
}

/* VIDEO GRID */
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

/* VIDEO CARD */
.video-thumb {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
}

.video-thumb img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* PLAY ICON */
.video-thumb::after {
  content: "▶";
  position: absolute;
  font-size: 64px;
  color: white;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-shadow: 0 6px 20px rgba(0,0,0,.6);
}

/* ========================= */
/* LIGHTBOX */
/* ========================= */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.lightbox.active {
  display: flex;
}

.lightbox img,
.lightbox iframe {
  max-width: 90%;
  max-height: 85%;
  border-radius: 12px;
}

.lightbox::after {
  content: "✕";
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 42px;
  color: white;
  cursor: pointer;
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .gallery-title {
    font-size: 36px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .video-grid {
    grid-template-columns: 1fr;
  }
}
/* ========================= */
/* VIDEO HOVER EFFECT */
/* ========================= */

.video-thumb {
  position: relative;
  overflow: hidden;
}

/* Dark overlay */
.video-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 1;
}

/* Play icon already exists (::after) */
.video-thumb::after {
  z-index: 2;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

/* Image zoom */
.video-thumb img {
  transition: transform 0.45s ease;
}

/* HOVER STATES */
.video-thumb:hover::before {
  opacity: 1;
}

.video-thumb:hover img {
  transform: scale(1.08);
}

.video-thumb:hover::after {
  transform: translate(-50%, -50%) scale(1.15);
  opacity: 1;
}
/* ========================= */
/* HERO IMAGE HOVER */
/* ========================= */

.hero img {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero img:hover {
  transform: scale(1.04);
  box-shadow: 0 20px 40px rgba(0,0,0,0.18);
}
/* ========================= */
/* GENERAL IMAGE HOVER */
/* ========================= */

.services img,
.about img,
.repertoar-box {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.services img:hover,
.about img:hover {
  transform: scale(1.03);
  box-shadow: 0 14px 30px rgba(0,0,0,0.15);
}
/* ========================= */
/* SERVICES HOVER */
/* ========================= */

.service {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(0,0,0,0.12);
}
/* ========================= */
/* ABOUT HOVER */
/* ========================= */

.about img {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about img:hover {
  transform: scale(1.03);
  box-shadow: 0 18px 35px rgba(0,0,0,0.18);
}
.about div {
  transition: transform 0.3s ease;
}

.about:hover div {
  transform: translateY(-4px);
}
/* ========================= */
/* BUTTON HOVER – GLOBAL */
/* ========================= */

.btn,
button {
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover,
button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(139,0,0,0.35);
}
/* ========================= */
/* REPERTOAR HOVER */
/* ========================= */

.repertoar-box {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.repertoar-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 30px rgba(0,0,0,0.12);
}

/* ========================= */
/* HAMBURGER MENU – FINAL FIX */
/* ========================= */

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1100;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: #3a1f1f;
  transition: 0.3s ease;
}

/* ------------------------- */
/* MOBILE NAV */
/* ------------------------- */

@media (max-width: 768px) {

  /* SHOW HAMBURGER */
  .hamburger {
    display: flex;
  }

  /* HIDE NAV BY DEFAULT */
  #main-nav {
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    background: #f4efec;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    padding: 40px 0;
    display: none;
    border-top: 1px solid #ddd;
  }

  /* SHOW NAV WHEN ACTIVE */
  #main-nav.active {
    display: flex;
  }

  #main-nav a {
    font-size: 20px;
  }
}

/* ------------------------- */
/* HAMBURGER ANIMATION */
/* ------------------------- */

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ========================= */
/* COLLABORATION – MOBILE FIX */
/* ========================= */

@media (max-width: 768px) {

  /* İlk collaboration hero (Husle a harfa) */
  .spolupraca-hero {
    grid-template-columns: 1fr 1fr !important;
    align-items: center;
    padding: 60px 20px !important;
    gap: 20px;
  }

  /* Metin tarafı */
  .spolupraca-hero > div {
    padding: 0 !important;
  }

  .spolupraca-hero h1 {
    font-size: 34px !important;
    line-height: 1.2;
  }

  .spolupraca-hero p {
    font-size: 16px;
    line-height: 1.6;
  }

  /* Fotoğraf tarafı */
  .spolupraca-hero img {
    width: 100%;
    height: auto;
    max-height: 220px;           /* ✅ foto küçülür */
    border-radius: 10px;
    object-fit: cover;
  }
}

/* ========================= */
/* COLLABORATION – MOBILE CTA FIX */
/* ========================= */

@media (max-width: 768px) {

  /* Husle a tanec bölümündeki btn-outline */
  section a.btn-outline {
    display: inline-block;
    margin-top: 20px;
    align-self: flex-start;   /* ✅ metinle hizalı */
    font-size: 15px;
    padding: 12px 18px;
  }

}