:root {
  --rose-50: #fdf6f6;
  --rose-100: #f8e6e9;
  --rose-200: #f0cdd4;
  --rose-300: #e4b0bb;
  --rose-400: #d492a2;
  --rose-500: #c2788c;
  --ink: #5a3944;
  --muted: #8a6570;
  --cream: #fff8f6;
  --panel: rgba(255, 247, 245, 0.78);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: "Nunito", sans-serif;
  color: var(--ink);
  background: #f3c9d1;
}

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

.sky {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.42), transparent 30%),
    radial-gradient(circle at 86% 8%, rgba(232, 176, 188, 0.55), transparent 34%),
    linear-gradient(
      180deg,
      #f3c2cc 0%,
      #f7d4db 28%,
      #f3c9d2 52%,
      #e8b7c2 78%,
      #d9a3b0 100%
    );
}

.sparkles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.sparkle {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: radial-gradient(circle, #fff 0%, #f4d0d6 45%, transparent 70%);
  animation: float-sparkle 6s linear infinite;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 6vw;
  background: rgba(253, 239, 241, 0.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226, 176, 188, 0.45);
}

.brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--rose-500);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--rose-400);
  background: #fff;
  color: var(--ink);
  border-radius: 999px;
  padding: 0.45rem 1rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.panel-nav {
  display: flex;
  gap: 0.35rem;
}

.panel-nav a {
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--muted);
}

.panel-nav a:hover,
.panel-nav a.active {
  background: var(--rose-100);
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: calc(100vh - 4.2rem);
  display: flex;
  flex-direction: column;
  padding: 1.2rem 4vw 0;
  scroll-margin-top: 4.6rem;
}

.hero h1 {
  display: flex;
  flex-direction: column;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 5.6vw, 4.4rem);
  line-height: 1.12;
  font-weight: 700;
  color: #9a5d6d;
  text-shadow: 0 8px 24px rgba(255, 255, 255, 0.5);
}

.stage {
  flex: 1;
  min-height: 360px;
  position: relative;
  z-index: 2;
}

.scene {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.rainbow {
  display: block;
}

.meadow {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 18vh;
  pointer-events: none;
  z-index: 1;
}

.hills {
  display: block;
  width: 100%;
  height: 100%;
}

.cloud-a {
  animation: drift 24s ease-in-out infinite;
}

.cloud-b {
  animation: drift 30s ease-in-out infinite reverse;
}

.video-band {
  padding: 0 6vw 4.5rem;
  background: #fff6f4;
  overflow: visible;
}

.video-band .panel-inner {
  overflow: visible;
}

.video-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  overflow: visible;
}

.volume-icon {
  flex: 0 0 auto;
  width: clamp(3.2rem, 8vw, 5.2rem);
  height: auto;
  overflow: visible;
  color: var(--rose-500);
}

.volume-icon-mirror {
  transform: scaleX(-1);
}

.video-stage {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  isolation: isolate;
}

.video-poster {
  display: none;
}

.intro-video {
  display: block;
  width: auto;
  height: 75vh;
  max-width: min(100%, 42vw);
  margin: 0;
  object-fit: contain;
  border-radius: 1.4rem;
  background: #e8b7c2;
  box-shadow: none;
}

.video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 5;
  width: 5.5rem;
  height: 5.5rem;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  border: 0;
  padding: 0;
  border-radius: 50%;
  background: #c2788c;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(90, 57, 68, 0.35);
}

.video-play svg {
  width: 2.4rem;
  height: 2.4rem;
  margin-left: 0.2rem;
}

.video-stage.is-playing .video-play {
  display: none;
}

.panel {
  padding: 5.5rem 6vw;
  background: #fff6f4;
  scroll-margin-top: 4.6rem;
}

#hakkinda {
  padding-bottom: 1.6rem;
}

.panel-alt {
  background: #f8e6ea;
}

.panel-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.eyebrow {
  color: var(--rose-500);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 0.7rem;
}

.panel h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3.3rem);
  margin-bottom: 1rem;
}

.lead {
  max-width: 40rem;
  font-size: 1.12rem;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 2.4rem;
}

.about-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(3, 1fr);
}

.about-grid article {
  background: #fff;
  border: 1px solid rgba(226, 176, 188, 0.55);
  border-radius: 1.4rem;
  padding: 1.4rem;
  box-shadow: 0 18px 40px rgba(154, 93, 109, 0.08);
}

.about-grid h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.55rem;
  margin-bottom: 0.45rem;
}

.about-grid p {
  color: var(--muted);
  line-height: 1.65;
}

#urunler {
  overflow: hidden;
}

.photo-marquee {
  margin-top: 2rem;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.photo-track {
  display: flex;
  width: max-content;
  animation: photo-marquee 42s linear infinite;
}

.photo-set {
  display: flex;
  gap: 1rem;
  padding-right: 1rem;
}

.photo-card {
  flex: 0 0 auto;
  width: calc(min(58vh, 420px) * 0.75);
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.photo-card img {
  display: block;
  width: 100%;
  height: min(58vh, 420px);
  object-fit: cover;
  border-radius: 1.1rem;
  background: var(--rose-200);
}

.photo-card figcaption {
  margin: 0;
  padding: 0.55rem 0.75rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(226, 176, 188, 0.55);
  border-radius: 0.85rem;
  box-shadow: 0 10px 24px rgba(154, 93, 109, 0.08);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-meta {
  list-style: none;
  color: var(--muted);
  line-height: 1.9;
}

.contact-form {
  position: relative;
  display: grid;
  gap: 0.9rem;
  background: #fff;
  border: 1px solid rgba(226, 176, 188, 0.55);
  border-radius: 1.5rem;
  padding: 1.4rem;
}

.contact-form label {
  display: grid;
  gap: 0.4rem;
  font-weight: 700;
  font-size: 0.92rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--rose-200);
  background: #fff;
  border-radius: 0.85rem;
  padding: 0.75rem 0.9rem;
  font: inherit;
  color: var(--ink);
}

.contact-form button {
  justify-self: start;
  border: 0;
  background: var(--rose-500);
  color: #fff;
  font: inherit;
  font-weight: 700;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  cursor: pointer;
}

.contact-form button:hover {
  background: #a86376;
}

.contact-form button:disabled {
  opacity: 0.65;
  cursor: wait;
}

.form-note {
  color: var(--rose-500);
  font-weight: 700;
}

.form-note.is-error {
  color: #9b3d52;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.site-footer {
  text-align: center;
  padding: 1.6rem;
  color: var(--muted);
  background: rgba(217, 163, 176, 0.45);
}

@keyframes float-sparkle {
  0% {
    transform: translateY(10px) scale(0.4);
    opacity: 0;
  }
  20% {
    opacity: 0.8;
  }
  100% {
    transform: translateY(-55vh) scale(1);
    opacity: 0;
  }
}

@keyframes drift {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(24px);
  }
}

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

@media (max-width: 980px) {
  .about-grid,
  .contact-layout {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .menu-toggle {
    display: inline-flex;
  }

  .panel-nav {
    display: none;
    position: absolute;
    top: 100%;
    right: 4vw;
    left: 4vw;
    flex-direction: column;
    padding: 0.6rem;
    background: rgba(255, 248, 246, 0.96);
    border: 1px solid var(--rose-200);
    border-radius: 1rem;
  }

  .panel-nav.open {
    display: flex;
  }

  .about-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .photo-card {
    width: calc(min(48vh, 320px) * 0.75);
  }

  .photo-card img {
    height: min(48vh, 320px);
  }

  .hero h1 {
    font-size: clamp(1.7rem, 8vw, 2.5rem);
  }

  .hero {
    min-height: 0;
    padding: 0.55rem 3vw 0;
  }

  .stage {
    flex: none;
    min-height: 0;
    aspect-ratio: 1200 / 540;
    height: auto;
  }

  .scene {
    height: auto;
  }

  .meadow {
    height: 16%;
  }

  .panel {
    padding: 3.5rem 6vw;
  }

  #hakkinda {
    padding-bottom: 1.2rem;
  }

  .volume-icon {
    display: none;
  }

  .video-band {
    padding: 0 4.5vw;
  }

  .video-band .panel-inner {
    max-width: none;
  }

  .video-frame,
  .video-stage {
    display: block;
    width: 100%;
  }

  .video-poster {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 1.15rem;
  }

  .intro-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    border-radius: 1.15rem;
    background: transparent;
  }

  .video-stage:not(.is-playing) .intro-video {
    visibility: hidden;
  }

  .video-stage.is-playing .video-poster {
    visibility: hidden;
  }

  .video-play {
    width: 4.2rem;
    height: 4.2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .sparkle,
  .cloud-a,
  .cloud-b,
  .photo-track {
    animation: none;
  }

  .photo-marquee {
    overflow-x: auto;
    mask-image: none;
  }

  .photo-set:last-child {
    display: none;
  }
}
