/* Modern and Premium CSS Design System for YAKAMOZZ TUR DİKİLİ */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,500;0,700;1,400&display=swap');

:root {
  --primary-color: #0f172a; /* Deep Slate Navy */
  --secondary-color: #0ea5e9; /* Turquoise Blue */
  --accent-color: #f59e0b; /* Sunset Gold */
  --bg-color: #f8fafc; /* Pale Blue Ice */
  --text-dark: #1e293b;
  --text-light: #f8fafc;
  --card-bg: rgba(255, 255, 255, 0.8);
  --border-radius: 16px;
  --transition-speed: 0.3s;
  --font-sans: 'Outfit', sans-serif;
  --font-serif: 'Playfair Display', serif;
}

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

html {
  scroll-behavior: smooth;
}

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

/* Custom Navigation Bar */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 2rem;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Custom Text-based Logo */
.logo-container {
  display: flex;
  flex-direction: column;
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-light);
  line-height: 1;
}

.logo-text span {
  color: var(--secondary-color);
}

.logo-subtext {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--accent-color);
  font-weight: 600;
  margin-top: 2px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: color var(--transition-speed);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary-color);
  transition: width var(--transition-speed);
}

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

.nav-link:hover {
  color: var(--secondary-color);
}

/* Mobile Menu Button */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
}

.menu-toggle span {
  width: 25px;
  height: 2px;
  background-color: var(--text-light);
  transition: all var(--transition-speed);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-light);
  background: linear-gradient(rgba(15, 23, 42, 0.75), rgba(15, 23, 42, 0.85)), url('./gorseller/tekne.jpg');
  background-size: cover;
  background-position: center;
  padding: 8rem 1rem 4rem;
}

.hero-content {
  max-width: 800px;
  z-index: 10;
}

.hero-subtitle {
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 6px;
  color: var(--secondary-color);
  font-weight: 700;
  margin-bottom: 1rem;
  animation: fadeInDown 1s ease;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-desc {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  color: rgba(248, 250, 252, 0.9);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.stat-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  padding: 1rem 2rem;
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-val {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent-color);
}

.stat-lbl {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.8;
}

.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all var(--transition-speed);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary {
  background-color: var(--secondary-color);
  color: var(--text-light);
  box-shadow: 0 4px 15px rgba(14, 165, 233, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(14, 165, 233, 0.6);
  background-color: #0284c7;
}

/* Section Header */
.section {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-subtitle {
  color: var(--secondary-color);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 3px;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  color: var(--primary-color);
}

.section-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
  margin: 1rem auto 0;
  border-radius: 2px;
}

/* Koylar Grid */
.koylar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.koy-card {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: all var(--transition-speed);
  position: relative;
  display: flex;
  flex-direction: column;
}

.koy-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.koy-img-container {
  height: 250px;
  overflow: hidden;
  position: relative;
}

.koy-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.koy-card:hover .koy-img {
  transform: scale(1.1);
}

.koy-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--primary-color);
  color: var(--accent-color);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.koy-content {
  padding: 1.5rem;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.koy-name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

/* Teknemiz & Medya Bölümü */
.tekne-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.media-item {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  cursor: pointer;
}

.media-item img, .media-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.media-item:hover img {
  transform: scale(1.08);
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-speed);
}

.media-item:hover .video-overlay {
  background: rgba(15, 23, 42, 0.2);
}

.play-btn {
  width: 60px;
  height: 60px;
  background-color: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  box-shadow: 0 4px 15px rgba(14, 165, 233, 0.5);
  transition: transform var(--transition-speed);
}

.media-item:hover .play-btn {
  transform: scale(1.15);
}

/* Yemekler ve İkramlar */
.menu-section {
  background: linear-gradient(rgba(15, 23, 42, 0.05), rgba(15, 23, 42, 0.02));
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 6rem 0;
}

.menu-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.lunch-box {
  background: white;
  border-radius: var(--border-radius);
  padding: 3rem;
  box-shadow: 0 15px 35px rgba(0,0,0,0.05);
  border-left: 5px solid var(--secondary-color);
}

.lunch-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-item-list {
  list-style: none;
}

.menu-item-list li {
  padding: 0.8rem 0;
  border-bottom: 1px dashed #e2e8f0;
  display: flex;
  align-items: center;
  gap: 15px;
}

.menu-item-list li:last-child {
  border-bottom: none;
}

.menu-bullet {
  color: var(--accent-color);
  font-weight: bold;
}

.treats-box h3 {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.treats-carousel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.treat-img {
  border-radius: var(--border-radius);
  overflow: hidden;
  height: 150px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.treat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.treat-img:hover img {
  transform: scale(1.1);
}

/* Kurallar */
.rules-container {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  border-radius: var(--border-radius);
  padding: 3rem;
  box-shadow: 0 15px 35px rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.05);
}

.rule-card {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}

.rule-card:last-child {
  margin-bottom: 0;
}

.rule-icon {
  background: rgba(245, 158, 11, 0.1);
  color: var(--accent-color);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: bold;
  font-size: 1.2rem;
}

.rule-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.3rem;
}

/* Lightbox Modal */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 23, 42, 0.95);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox-content {
  max-width: 90%;
  max-height: 80%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  border-radius: 8px;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: var(--text-light);
  font-size: 2.5rem;
  cursor: pointer;
  transition: color var(--transition-speed);
}

.lightbox-close:hover {
  color: var(--accent-color);
}

/* Yüzen Rezervasyon Butonu */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: white;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  z-index: 999;
  text-decoration: none;
  transition: all var(--transition-speed);
}

.floating-whatsapp:hover {
  transform: scale(1.1) rotate(10deg);
}

.floating-whatsapp svg {
  width: 35px;
  height: 35px;
  fill: currentColor;
}

/* Footer */
footer {
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 4rem 2rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.footer-col p {
  opacity: 0.8;
  margin-bottom: 0.8rem;
}

.footer-col a {
  color: var(--secondary-color);
  text-decoration: none;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.6;
}

/* Keyframes */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Styles */
@media (max-width: 968px) {
  .menu-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: rgba(15, 23, 42, 0.98);
    flex-direction: column;
    align-items: center;
    padding-top: 4rem;
    transition: left var(--transition-speed);
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .menu-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
}
