/* =============================================
   GNS ORGANİZASYON — home.css
   ============================================= */

/* ---------- Hero ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.75) 0%,
    rgba(0,0,0,0.4) 50%,
    rgba(0,0,0,0.65) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding-inline: 5%;
}
.hero-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 1.5rem;
  overflow: hidden;
  display: block;
}
.hero-label-inner { display: block; }
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 7vw, 7.5rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--clr-white);
  margin-bottom: 1.5rem;
}
.hero-title em { font-style: italic; color: var(--clr-gold-lt); }
.hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  font-weight: 300;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.65);
  margin-bottom: 2.5rem;
}
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.hero-scroll-hint span {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 55px;
  background: linear-gradient(to bottom, var(--clr-gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; opacity: 0; }
  50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

/* ---------- Hero Slider (photo) ---------- */
.hero-slider-section {
  padding: 0;
  background: var(--clr-black);
  overflow: hidden;
}
.hero-slider-wrapper {
  display: flex;
  will-change: transform;
  cursor: grab;
}
.hero-slider-wrapper:active { cursor: grabbing; }
.hero-slide {
  flex: 0 0 calc(50vw - 2rem);
  min-width: calc(50vw - 2rem);
  height: 70vh;
  position: relative;
  overflow: hidden;
  margin-right: 0.5rem;
}
.hero-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.hero-slide:hover img { transform: scale(1.05); }
.slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.5rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
}
.slide-caption h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--clr-white);
}
.slide-caption p {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  color: var(--clr-gold);
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .hero-slide { flex: 0 0 80vw; min-width: 80vw; height: 50vh; }
}

/* ---------- Slogan Text Section ---------- */
.slogan-section {
  padding-block: var(--gap-xl);
  background: var(--clr-black);
  text-align: center;
}
.slogan-words {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 5rem);
  font-weight: 300;
  line-height: 1.2;
  color: rgba(255,255,255,0.12);
  max-width: 900px;
  margin-inline: auto;
  padding-inline: 5%;
}
.slogan-words .word {
  display: inline-block;
  transition: color 0.6s ease;
}
.slogan-words .word.lit { color: var(--clr-white); }
.slogan-words em { font-style: italic; }

/* ---------- About Intro ---------- */
.about-intro {
  padding-block: var(--gap-xl);
  background: var(--clr-dark);
}
.about-intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-lg);
  align-items: center;
}
.about-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 7rem;
  font-weight: 300;
  color: rgba(201, 169, 110, 0.15);
  line-height: 1;
}
@media (max-width: 768px) {
  .about-intro-inner { grid-template-columns: 1fr; }
}

/* ---------- Services Grid ---------- */
.services-section { background: var(--clr-black); }
.service-card {
  border: 1px solid rgba(255,255,255,0.07);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s ease;
  background: transparent;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--clr-gold);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
  z-index: 0;
}
.service-card:hover::before { transform: scaleY(1); }
.service-card:hover { border-color: var(--clr-gold); }
.service-card > * { position: relative; z-index: 1; transition: color 0.4s ease; }
.service-card:hover .service-icon,
.service-card:hover .service-title,
.service-card:hover .service-text { color: var(--clr-black); }
.service-icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--clr-gold);
  display: block;
}
.service-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--clr-white);
  margin-bottom: 0.7rem;
}
.service-text {
  font-size: 0.82rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
}

/* ---------- Mini Event Slider ---------- */
.mini-events-section { background: var(--clr-dark); overflow: hidden; }
.mini-events-track {
  display: flex;
  gap: 1rem;
  animation: autoScroll 30s linear infinite;
  width: max-content;
}
.mini-events-track:hover { animation-play-state: paused; }
.mini-event-card {
  flex: 0 0 320px;
  height: 420px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.mini-event-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.mini-event-card:hover img { transform: scale(1.08); }
.mini-event-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 40%, rgba(0,0,0,0.85));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}
.mini-event-cat {
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 0.3rem;
}
.mini-event-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--clr-white);
}
@keyframes autoScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (max-width: 768px) {
  .mini-event-card { flex: 0 0 260px; height: 340px; }
}
