/* ============================================
   StarGarden - Kır Düğünü Web Sitesi
   Stil Dosyası
   Renk Paleti: Koyu Yeşil + Altın + Krem
============================================ */

/* --- CSS Custom Properties --- */
:root {
  /* Colors */
  --color-primary: #1a3c28;
  --color-primary-light: #2d5e40;
  --color-primary-dark: #0d1b12;
  --color-gold: #c9a84c;
  --color-gold-light: #ddc374;
  --color-gold-dark: #a88a30;
  --color-cream: #faf6f0;
  --color-cream-dark: #f0e8d8;
  --color-white: #ffffff;
  --color-black: #111111;
  --color-text: #333333;
  --color-text-light: #666666;
  --color-overlay: rgba(13, 27, 18, 0.7);
  --color-overlay-light: rgba(13, 27, 18, 0.5);

  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Lato', sans-serif;

  /* Spacing */
  --section-padding: 100px 0;
  --container-padding: 0 15px;

  /* Transitions */
  --transition-fast: 0.3s ease;
  --transition-medium: 0.5s ease;
  --transition-slow: 0.8s ease;

  /* Shadows */
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 8px 32px rgba(0, 0, 0, 0.12);
  --shadow-strong: 0 12px 48px rgba(0, 0, 0, 0.18);
  --shadow-gold: 0 4px 20px rgba(201, 168, 76, 0.25);

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-cream);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--color-primary-dark);
  line-height: 1.3;
  font-weight: 700;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

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

ul {
  list-style: none;
}

/* --- Utility Classes --- */
.section-padding {
  padding: var(--section-padding);
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title .subtitle {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--color-gold);
  display: block;
  margin-bottom: 12px;
}

.section-title h2 {
  font-size: 42px;
  color: var(--color-primary-dark);
  margin-bottom: 20px;
  position: relative;
}

.section-title p {
  font-size: 17px;
  color: var(--color-text-light);
  max-width: 600px;
  margin: 0 auto;
}

.section-title .title-divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
  margin: 20px auto;
  border-radius: 2px;
}

.bg-cream {
  background-color: var(--color-cream);
}

.bg-white {
  background-color: var(--color-white);
}

.bg-dark {
  background-color: var(--color-primary-dark);
}

/* --- Custom Buttons --- */
.btn-gold {
  display: inline-block;
  padding: 14px 40px;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-xl);
  cursor: pointer;
  transition: var(--transition-medium);
  box-shadow: var(--shadow-gold);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-gold::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
  transition: var(--transition-medium);
  z-index: -1;
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.4);
  color: var(--color-white);
}

.btn-gold:hover::before {
  left: 0;
}

.btn-outline-gold {
  display: inline-block;
  padding: 12px 36px;
  background: transparent;
  color: var(--color-gold);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 2px solid var(--color-gold);
  border-radius: var(--radius-xl);
  cursor: pointer;
  transition: var(--transition-medium);
}

.btn-outline-gold:hover {
  background: var(--color-gold);
  color: var(--color-white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

/* ============================================
   NAVBAR
============================================ */
.navbar-custom {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1050;
  padding: 20px 0;
  transition: var(--transition-medium);
  /* background: transparent; */
  background: #c9a84c;
}

.navbar-custom.scrolled {
  background: #c9a84c;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.navbar-custom .navbar-brand {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-white) !important;
  letter-spacing: 1px;
}

.navbar-custom .navbar-brand span {
  color: var(--color-gold);
}

.navbar-custom .nav-link {
  color: rgba(255, 255, 255, 0.85) !important;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 8px 18px !important;
  transition: var(--transition-fast);
  position: relative;
}

.navbar-custom .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--color-primary-dark);
  transition: var(--transition-fast);
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
  color: var(--color-primary-dark) !important;
}

.navbar-custom .nav-link:hover::after,
.navbar-custom .nav-link.active::after {
  width: 70%;
}

.navbar-custom .navbar-toggler {
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 8px 12px;
}

.navbar-custom .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-cta-btn {
  padding: 8px 24px !important;
  background: var(--color-gold);
  border-radius: var(--radius-xl);
  color: var(--color-white) !important;
  font-weight: 600 !important;
  margin-left: 10px;
  transition: var(--transition-fast);
}

.navbar-cta-btn:hover {
  background: var(--color-gold-light);
  transform: scale(1.05);
}

.navbar-cta-btn::after {
  display: none !important;
}

/* ============================================
   HERO SECTION
============================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--color-primary-dark);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../assets/images/hero-bg-new.jpg') center center / cover no-repeat;
  will-change: transform;
  transition: none;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg,
      rgba(13, 27, 18, 0.6) 0%,
      rgba(13, 27, 18, 0.4) 50%,
      rgba(13, 27, 18, 0.7) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
}

.hero-content .hero-subtitle {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 6px;
  color: var(--color-gold);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeInUp 1s ease 0.3s forwards;
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: 68px;
  color: var(--color-white);
  margin-bottom: 24px;
  line-height: 1.15;
  opacity: 0;
  animation: fadeInUp 1s ease 0.6s forwards;
}

.hero-content h1 span {
  color: var(--color-gold);
  font-style: italic;
}

.hero-content .hero-desc {
  font-size: 19px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
  line-height: 1.8;
  opacity: 0;
  animation: fadeInUp 1s ease 0.9s forwards;
}

.hero-content .hero-cta {
  opacity: 0;
  animation: fadeInUp 1s ease 1.2s forwards;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounceDown 2s infinite;
}

.hero-scroll-indicator a {
  color: var(--color-gold);
  font-size: 28px;
  opacity: 0.7;
  transition: var(--transition-fast);
}

.hero-scroll-indicator a:hover {
  opacity: 1;
}

/* Decorative Elements */
.hero-decoration {
  position: absolute;
  z-index: 1;
  opacity: 0.08;
  pointer-events: none;
}

.hero-decoration.left {
  left: -50px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 350px;
  color: var(--color-gold);
}

.hero-decoration.right {
  right: -50px;
  top: 50%;
  transform: translateY(-50%) scaleX(-1);
  font-size: 350px;
  color: var(--color-gold);
}

/* ============================================
   ABOUT SECTION
============================================ */
#hakkimizda {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

#hakkimizda::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.about-img-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}

.about-img-wrapper img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: var(--transition-slow);
}

.about-img-wrapper:hover img {
  transform: scale(1.05);
}

.about-img-wrapper .about-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: rgba(13, 27, 18, 0.9);
  backdrop-filter: blur(10px);
  padding: 20px 25px;
  border-radius: var(--radius-md);
  text-align: center;
  border: 1px solid rgba(201, 168, 76, 0.3);
}

.about-badge .badge-number {
  font-family: var(--font-heading);
  font-size: 36px;
  color: var(--color-gold);
  font-weight: 700;
  line-height: 1;
}

.about-badge .badge-text {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 4px;
}

.about-content {
  padding-left: 50px;
}

.about-content .about-subtitle {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--color-gold);
  margin-bottom: 12px;
}

.about-content h2 {
  font-size: 40px;
  margin-bottom: 20px;
}

.about-content .about-desc {
  font-size: 16px;
  color: var(--color-text-light);
  margin-bottom: 30px;
  line-height: 1.8;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 35px;
}

.about-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-feature-item i {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.15), rgba(201, 168, 76, 0.05));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  font-size: 16px;
  flex-shrink: 0;
}

.about-feature-item span {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-primary-dark);
}

/* Stats */
.stats-section {
  padding: 60px 0;
  background: var(--color-primary-dark);
  position: relative;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.05) 0%, transparent 50%);
}

.stat-item {
  text-align: center;
  padding: 20px;
  position: relative;
}

.stat-item .stat-number {
  font-family: var(--font-heading);
  font-size: 52px;
  color: var(--color-gold);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-item .stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ============================================
   RESTAURANT SECTION
============================================ */
#restoran {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.restaurant-img-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}

.restaurant-img-wrapper img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: var(--transition-slow);
}

.restaurant-img-wrapper:hover img {
  transform: scale(1.05);
}

.restaurant-content {
  padding-right: 50px;
}

.restaurant-content .restaurant-subtitle {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--color-gold);
  margin-bottom: 12px;
  display: block;
}

.restaurant-content h2 {
  font-size: 40px;
  margin-bottom: 20px;
}

.restaurant-content .restaurant-desc {
  font-size: 16px;
  color: var(--color-text-light);
  margin-bottom: 20px;
  line-height: 1.8;
}

.restaurant-highlights {
  margin-bottom: 35px;
}

.restaurant-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.restaurant-highlight-item .highlight-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  font-size: 20px;
  flex-shrink: 0;
}

.restaurant-highlight-item h5 {
  font-family: var(--font-heading);
  font-size: 17px;
  margin-bottom: 4px;
  color: var(--color-primary-dark);
}

.restaurant-highlight-item p {
  font-size: 14px;
  color: var(--color-text-light);
  margin: 0;
  line-height: 1.5;
}

.restaurant-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================
   GALLERY / MEKANLAR SECTION
============================================ */
#mekanlar {
  padding: 120px 0;
  background: var(--color-white);
}

.gallery-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 50px;
}

.gallery-filter .filter-btn {
  padding: 10px 28px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid var(--color-cream-dark);
  background: transparent;
  color: var(--color-text-light);
  border-radius: var(--radius-xl);
  cursor: pointer;
  transition: var(--transition-fast);
}

.gallery-filter .filter-btn:hover,
.gallery-filter .filter-btn.active {
  border-color: var(--color-gold);
  color: var(--color-gold);
  background: rgba(201, 168, 76, 0.08);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.gallery-item .gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 40%, rgba(13, 27, 18, 0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
  opacity: 0;
  transition: var(--transition-medium);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

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

.gallery-overlay h4 {
  color: var(--color-white);
  font-size: 20px;
  margin-bottom: 6px;
}

.gallery-overlay p {
  color: var(--color-gold);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.gallery-overlay .gallery-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 18px;
}

/* ============================================
   SERVICES SECTION
============================================ */
#hizmetler {
  padding: 120px 0;
  background: var(--color-cream);
  position: relative;
}

.service-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition-medium);
  border: 1px solid rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-medium);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-strong);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card .service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.12), rgba(201, 168, 76, 0.04));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--color-gold);
  transition: var(--transition-medium);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  color: var(--color-white);
  transform: rotateY(180deg);
}

.service-card h4 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--color-primary-dark);
}

.service-card p {
  font-size: 15px;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* ============================================
   MENUS SECTION
============================================ */
#monuler {
  padding: 120px 0;
  background: var(--color-white);
}

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.menu-tab-btn {
  padding: 12px 30px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid var(--color-primary);
  background: transparent;
  color: var(--color-primary);
  border-radius: var(--radius-xl);
  cursor: pointer;
  transition: var(--transition-fast);
}

.menu-tab-btn:hover,
.menu-tab-btn.active {
  background: var(--color-primary);
  color: var(--color-white);
}

.menu-tab-content {
  display: none;
}

.menu-tab-content.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

.menu-card {
  background: linear-gradient(145deg, var(--color-cream), var(--color-white));
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid rgba(201, 168, 76, 0.15);
  transition: var(--transition-medium);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.menu-card::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, var(--color-gold), transparent, var(--color-gold-light));
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0;
  transition: var(--transition-medium);
}

.menu-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.menu-card:hover::after {
  opacity: 1;
}

.menu-card .menu-badge {
  display: inline-block;
  padding: 6px 18px;
  background: var(--color-gold);
  color: var(--color-white);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: var(--radius-xl);
  margin-bottom: 20px;
}

.menu-card .menu-badge.silver {
  background: #8a8a8a;
}

.menu-card .menu-badge.bronze {
  background: #b07c4a;
}

.menu-card h4 {
  font-size: 24px;
  margin-bottom: 20px;
  color: var(--color-primary-dark);
}

.menu-card .menu-list {
  list-style: none;
  padding: 0;
}

.menu-card .menu-list li {
  padding: 10px 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
  font-size: 15px;
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: 10px;
}

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

.menu-card .menu-list li i {
  color: var(--color-gold);
  font-size: 10px;
  flex-shrink: 0;
}

.menu-card .menu-list .menu-section-title {
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
  padding-top: 15px;
  border-bottom: none;
}

.menu-card .menu-list .menu-section-title i {
  color: var(--color-primary);
}

/* ============================================
   TESTIMONIALS SECTION
============================================ */
#yorumlar {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.testimonials-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../assets/images/testimonial-bg.png') center center / cover no-repeat;
}

.testimonials-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
      rgba(13, 27, 18, 0.92) 0%,
      rgba(26, 60, 40, 0.88) 100%);
}

#yorumlar .section-title h2 {
  color: var(--color-white);
}

#yorumlar .section-title p {
  color: rgba(255, 255, 255, 0.65);
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  margin: 0 10px;
  transition: var(--transition-medium);
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(201, 168, 76, 0.3);
}

.testimonial-card .quote-icon {
  font-size: 36px;
  color: var(--color-gold);
  margin-bottom: 20px;
  opacity: 0.6;
}

.testimonial-card .testimonial-text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-card .testimonial-stars {
  color: var(--color-gold);
  font-size: 16px;
  margin-bottom: 16px;
}

.testimonial-card .testimonial-author {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--color-white);
  margin-bottom: 4px;
}

.testimonial-card .testimonial-date {
  font-size: 13px;
  color: var(--color-gold);
  letter-spacing: 1px;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  background: rgba(201, 168, 76, 0.2);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  transition: var(--transition-fast);
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: var(--color-gold);
}

.carousel-control-prev {
  left: -60px;
}

.carousel-control-next {
  right: -60px;
}

.carousel-indicators {
  bottom: -50px;
}

.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.3);
  border: none;
  margin: 0 5px;
}

.carousel-indicators .active {
  background: var(--color-gold);
}

/* ============================================
   CONTACT SECTION
============================================ */
#iletisim {
  padding: 120px 0;
  background: var(--color-cream);
}

.contact-info-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 35px 30px;
  text-align: center;
  transition: var(--transition-medium);
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.contact-info-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
}

.contact-info-card .contact-icon {
  width: 65px;
  height: 65px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  font-size: 24px;
}

.contact-info-card h5 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--color-primary-dark);
}

.contact-info-card p {
  font-size: 15px;
  color: var(--color-text-light);
  line-height: 1.7;
}

.contact-info-card a {
  color: var(--color-gold);
  font-weight: 600;
}

.contact-info-card a:hover {
  color: var(--color-gold-dark);
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 50px;
  box-shadow: var(--shadow-soft);
}

.contact-form-wrapper h3 {
  font-size: 28px;
  margin-bottom: 8px;
}

.contact-form-wrapper .form-subtitle {
  font-size: 15px;
  color: var(--color-text-light);
  margin-bottom: 30px;
}

.form-floating {
  margin-bottom: 20px;
}

.form-floating .form-control,
.form-floating .form-select {
  border: 2px solid var(--color-cream-dark);
  border-radius: var(--radius-sm);
  padding: 16px;
  font-family: var(--font-body);
  font-size: 15px;
  transition: var(--transition-fast);
  background-color: var(--color-cream);
}

.form-floating .form-control:focus,
.form-floating .form-select:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.1);
  background-color: var(--color-white);
}

.form-floating label {
  font-family: var(--font-body);
  color: var(--color-text-light);
}

/* Map */
.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  height: 100%;
  min-height: 400px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
}

/* ============================================
   FOOTER
============================================ */
.footer {
  background: var(--color-primary-dark);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.footer-brand {
  margin-bottom: 16px;
}

.footer-brand .footer-logo-img {
  max-width: 200px;
  height: auto;
}

.footer-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  transition: var(--transition-fast);
}

.footer-social a:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-white);
  transform: translateY(-3px);
}

.footer h5 {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--color-white);
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

.footer h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--color-gold);
}

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

.footer-links a {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-gold);
  padding-left: 8px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}

.footer-contact-item i {
  color: var(--color-gold);
  font-size: 18px;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact-item p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  line-height: 1.6;
}

.footer-contact-item a {
  color: rgba(255, 255, 255, 0.6);
}

.footer-contact-item a:hover {
  color: var(--color-gold);
}

.footer-bottom {
  margin-top: 50px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.footer-bottom p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
}

.footer-bottom a {
  color: var(--color-gold);
}

/* ============================================
   WHATSAPP FLOAT BUTTON
============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 28px;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition-fast);
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
  color: var(--color-white);
}

/* ============================================
   LIGHTBOX - GLightbox Override
============================================ */
.glightbox-clean .goverlay {
  background: rgba(13, 27, 18, 0.92);
}

/* ============================================
   ANIMATIONS
============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes bounceDown {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  40% {
    transform: translateX(-50%) translateY(-15px);
  }

  60% {
    transform: translateX(-50%) translateY(-8px);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 4px 35px rgba(37, 211, 102, 0.6);
  }

  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1199.98px) {
  .hero-content h1 {
    font-size: 54px;
  }

  .section-title h2 {
    font-size: 36px;
  }
}

@media (max-width: 991.98px) {
  .hero-content h1 {
    font-size: 44px;
  }

  .about-content {
    padding-left: 0;
    margin-top: 40px;
  }

  .about-img-wrapper img {
    height: 400px;
  }

  .restaurant-content {
    padding-right: 0;
    margin-top: 40px;
  }

  .restaurant-img-wrapper img {
    height: 400px;
  }

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

  .navbar-collapse {
    background: rgba(201, 168, 76, 0.98);
    backdrop-filter: blur(15px);
    padding: 20px;
    border-radius: var(--radius-md);
    margin-top: 10px;
  }

  .navbar-custom .navbar-brand {
    flex: 1;
    text-align: center;
    background: #c9a84c;
  }

  .navbar-custom .navbar-brand img {
    max-width: 40% !important;
    display: inline !important;

  }

  .navbar-cta-btn {
    margin-left: 0;
    margin-top: 10px;
    text-align: center;
  }

  .carousel-control-prev {
    left: -20px;
  }

  .carousel-control-next {
    right: -20px;
  }

  .contact-form-wrapper {
    padding: 30px;
  }
}

@media (max-width: 767.98px) {
  :root {
    --section-padding: 80px 0;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-content .hero-desc {
    font-size: 16px;
  }

  .hero-content .hero-subtitle {
    font-size: 12px;
    letter-spacing: 4px;
  }

  .hero-content .hero-cta {
    flex-direction: column;
    align-items: stretch;
    max-width: 280px;
    margin: 0 auto;
  }

  .hero-content .hero-cta .btn-gold,
  .hero-content .hero-cta .btn-outline-gold {
    width: 100%;
    text-align: center;
    padding: 14px 20px;
    font-size: 14px;
  }

  .section-title h2 {
    font-size: 30px;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .restaurant-img-wrapper img {
    height: 300px;
  }

  .restaurant-cta-group {
    flex-direction: column;
    align-items: stretch;
    max-width: 280px;
  }

  .restaurant-cta-group .btn-gold,
  .restaurant-cta-group .btn-outline-gold {
    width: 100%;
    text-align: center;
  }

  #restoran {
    padding: 80px 0;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .stat-item .stat-number {
    font-size: 38px;
  }

  .menu-card {
    padding: 25px;
  }

  .testimonial-card {
    padding: 25px;
  }

  .carousel-control-prev,
  .carousel-control-next {
    display: none;
  }

  .carousel-indicators {
    bottom: -40px;
  }

  #hakkimizda,
  #mekanlar,
  #hizmetler,
  #monuler,
  #yorumlar,
  #iletisim {
    padding: 80px 0;
  }

  .whatsapp-float {
    width: 52px;
    height: 52px;
    font-size: 24px;
    bottom: 20px;
    right: 20px;
  }
}

@media (max-width: 575.98px) {
  .hero-content h1 {
    font-size: 30px;
  }

  .btn-gold {
    padding: 12px 30px;
    font-size: 14px;
  }

  .gallery-filter .filter-btn {
    padding: 8px 18px;
    font-size: 12px;
  }

  .menu-tabs {
    gap: 8px;
  }

  .menu-tab-btn {
    padding: 8px 18px;
    font-size: 12px;
  }
}

/* ============================================
   PRELOADER
============================================ */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-primary-dark);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hide {
  opacity: 0;
  visibility: hidden;
}

.preloader-logo {
  margin-bottom: 20px;
  text-align: center;
}

.preloader-logo img {
  max-width: 250px;
  height: auto;
}

.preloader-bar {
  width: 200px;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

.preloader-bar::after {
  content: '';
  display: block;
  width: 40%;
  height: 100%;
  background: var(--color-gold);
  border-radius: 2px;
  animation: preloaderSlide 1.2s ease infinite;
}

@keyframes preloaderSlide {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(350%);
  }
}

/* ============================================
   BACK TO TOP
============================================ */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: var(--color-primary);
  color: var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
  cursor: pointer;
  border: 1px solid rgba(201, 168, 76, 0.3);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--color-gold);
  color: var(--color-white);
  transform: translateY(-4px);
}