/* =============================================
   GÖNLÜ BOL — Premium Dark Theme
   ============================================= */

/* ---------- CUSTOM PROPERTIES ---------- */
:root {
  --color-bg:           #0a0a0a;
  --color-bg-alt:       #0f0f0f;
  --color-bg-card:      #141414;
  --color-bg-elevated:  #1a1a1a;
  --color-text:         #f5f5f5;
  --color-text-secondary: #999999;
  --color-text-muted:   #666666;
  --color-accent:       #c8a46e;
  --color-accent-hover: #d4b37f;
  --color-accent-glow:  rgba(200, 164, 110, 0.15);
  --color-border:       #222222;
  --color-border-light: #2a2a2a;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --nav-height: 72px;
  --section-padding: 120px 24px;
  --container-max: 1200px;
  --transition-smooth: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast:   0.3s ease;
}

/* ---------- RESET & BASE ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

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

ul {
  list-style: none;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- SELECTION ---------- */
::selection {
  background: var(--color-accent);
  color: var(--color-bg);
}

/* ---------- SECTION SHARED ---------- */
.section {
  padding: var(--section-padding);
  position: relative;
}

.section-header {
  margin-bottom: 64px;
  text-align: center;
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 16px;
  position: relative;
}

.section-label::before,
.section-label::after {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--color-accent);
  vertical-align: middle;
  margin: 0 12px;
  opacity: 0.5;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-text);
}

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  transition: background var(--transition-fast), backdrop-filter var(--transition-fast);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--color-text-secondary);
  letter-spacing: 0.5px;
  transition: color var(--transition-fast);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--color-accent);
  transition: all var(--transition-fast);
  transform: translateX(-50%);
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-text);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Nav Toggle (Mobile) */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--color-text);
  transition: all var(--transition-fast);
  border-radius: 2px;
}

.nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 5px);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -5px);
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-video,
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 1s ease;
}

.hero-video {
  opacity: 1;
}

.hero-image {
  opacity: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.4) 0%,
    rgba(10, 10, 10, 0.5) 50%,
    rgba(10, 10, 10, 0.85) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1200px;
  height: 100%;
  padding: 24px;
}

.hero-text-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-text-group.slide-to-corner {
  transform: translateX(30vw) translateY(25vh);
  text-align: right;
  align-items: flex-end;
  opacity: 0.3;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 24px;
  animation: fadeUp 1s ease 0.3s both;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: 700;
  line-height: 1;
  color: var(--color-text);
  margin-bottom: 20px;
  animation: fadeUp 1s ease 0.5s both;
  text-shadow: 0 2px 40px rgba(0,0,0,0.3);
}

.hero-desc {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--color-text-secondary);
  margin-bottom: 40px;
  animation: fadeUp 1s ease 0.7s both;
}

.hero-cta {
  display: inline-block;
  padding: 14px 40px;
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all var(--transition-fast);
  animation: fadeUp 1s ease 0.9s both;
}

.hero-cta:hover {
  background: var(--color-accent);
  color: var(--color-bg);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeUp 1s ease 1.2s both;
}

.scroll-indicator span {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-text-muted), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- HİKAYE ---------- */
.section-hikaye {
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
}

.hikaye-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hikaye-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-text-secondary);
  margin-bottom: 20px;
}

.hikaye-text p:first-child {
  font-size: 1.2rem;
  color: var(--color-text);
  font-weight: 300;
}

.hikaye-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid var(--color-border-light);
}

.hikaye-image {
  overflow: hidden;
  max-height: 400px;
}

/* ---------- ÜRÜNLER ---------- */
.section-urunler {
  background: var(--color-bg);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: all var(--transition-smooth);
  cursor: pointer;
  position: relative;
}

.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, var(--color-accent-glow));
  opacity: 0;
  transition: opacity var(--transition-smooth);
  pointer-events: none;
}

.product-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-4px);
}

.product-card:hover::before {
  opacity: 1;
}

.product-image {
  aspect-ratio: 1;
  overflow: hidden;
}

.product-image .image-placeholder {
  width: 100%;
  height: 100%;
  background: var(--color-bg-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-smooth);
}

.product-card:hover .image-placeholder {
  transform: scale(1.05);
}

.product-image .material-symbol {
  font-size: 4rem;
  filter: grayscale(0.2);
}

.product-info {
  padding: 24px;
}

.product-info h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-text);
}

.product-info p {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  line-height: 1.5;
}

/* ---------- LEZZETLER ---------- */
.section-lezzetler {
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.flavors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.flavor-item {
  text-align: center;
  padding: 40px 24px;
  border: 1px solid var(--color-border);
  background: var(--color-bg-card);
  transition: all var(--transition-smooth);
}

.flavor-item:hover {
  border-color: var(--color-accent);
  background: var(--color-bg-elevated);
  transform: translateY(-4px);
}

.flavor-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}

.flavor-item h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-text);
}

.flavor-item p {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--color-bg);
  padding: 80px 24px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--color-border);
}

.footer-brand h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--color-text);
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
}

.footer h4 {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 20px;
}

.footer-links ul li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-accent);
}

.footer-contact p {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  margin-bottom: 8px;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-border-light);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--color-text-secondary);
  transition: all var(--transition-fast);
}

.social-links a:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* ---------- REVEAL ANIMATIONS ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- RESPONSIVE ---------- */

/* Tablet */
@media (max-width: 1024px) {
  :root {
    --section-padding: 80px 24px;
  }

  .hikaye-content {
    gap: 48px;
  }

  .flavors-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --section-padding: 60px 20px;
  }

  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px 32px;
    gap: 20px;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition-fast);
    border-bottom: 1px solid var(--color-border);
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-title {
    font-size: clamp(2.5rem, 15vw, 4rem);
  }

  .hero-subtitle {
    font-size: 0.7rem;
    letter-spacing: 3px;
  }

  .hero-desc {
    font-size: 0.95rem;
  }

  .hikaye-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hikaye-image {
    max-height: 300px;
  }

  .product-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
  }

  .product-info {
    padding: 16px;
  }

  .product-info h3 {
    font-size: 1rem;
  }

  .flavors-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .flavor-item {
    padding: 32px 16px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .section-header h2 {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  /* Mobile: daha az kayma */
  .hero-text-group.slide-to-corner {
    transform: translateX(15vw) translateY(15vh);
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: 1fr 1fr;
  }

  .flavors-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-text-group.slide-to-corner {
    transform: translateX(10vw) translateY(10vh);
  }
}
