:root {
  --lux-gold: #C5A028;
  --lux-gold-light: #D4AF37;
  --lux-gold-dark: #996515;
  --lux-white: #ffffff;
  --lux-bg: #fafafa;
  --lux-text: #1a1a1a;
  --lux-gray: #717171;
  --lux-shadow: 0 20px 40px rgba(0,0,0,0.08);
  --lux-border: rgba(197, 160, 40, 0.2);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', 'Playfair Display', serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--lux-bg);
  color: var(--lux-text);
  overflow-x: hidden;
}

h1, h2, h3, .lux-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.gold-gradient-text {
  background: linear-gradient(135deg, var(--lux-gold-dark), var(--lux-gold-light), var(--lux-gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--lux-white);
}
::-webkit-scrollbar-thumb {
  background: var(--lux-gold);
  border-radius: 10px;
}

.btn-gold {
  background: linear-gradient(135deg, var(--lux-gold-dark) 0%, var(--lux-gold-light) 100%);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 0;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  border: 1px solid var(--lux-gold);
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: inline-block;
  text-decoration: none;
}

.btn-gold:hover {
  color: var(--lux-gold-dark);
  box-shadow: 0 10px 30px rgba(197, 160, 40, 0.3);
}

.btn-gold::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: white;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: -1;
}

.btn-gold:hover::after {
  left: 0;
}

.lux-card {
  background: white;
  border: 1px solid var(--lux-border);
  padding: 2.5rem;
  transition: all 0.4s ease;
}

.lux-card:hover {
  transform: translateY(-10px);
  border-color: var(--lux-gold);
  box-shadow: var(--lux-shadow);
}

.video-docker video {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -1;
}

.hero-overlay {
  background: rgba(0,0,0,0.5);
}

.desktop-contact {
  position: fixed;
  right: 30px;
  bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
}

.float-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  transition: all 0.3s;
  text-decoration: none;
}

.float-btn:hover {
  transform: scale(1.1) rotate(5deg);
}

.mobile-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  z-index: 9999;
  background: white;
  box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
}

.mobile-sticky-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  font-weight: 700;
  gap: 10px;
  text-transform: uppercase;
  font-size: 13px;
  text-decoration: none;
}

.lux-gold-border { 
  border: 1px solid var(--lux-gold); 
}

.bg-gold { 
  background-color: var(--lux-gold); 
}

.text-gold { 
  color: var(--lux-gold); 
}

@media (max-width: 1024px) {
  .desktop-contact { 
    display: none; 
  }
}

@media (min-width: 1025px) {
  .mobile-sticky-bar { 
    display: none; 
  }
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 15px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px;
  background: white;
  border: 1px solid var(--lux-border);
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item[open] summary {
  background: var(--lux-bg);
  border-bottom: none;
}

.faq-content {
  padding: 20px;
  background: white;
  border: 1px solid var(--lux-border);
  border-top: none;
  line-height: 1.8;
}

.swiper {
  width: 100%;
  height: auto;
}

.swiper-slide {
  height: auto;
}

.swiper-pagination-bullet {
  background: var(--lux-gold);
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}

.prose {
  max-width: 100%;
}

.prose p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.prose h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.prose h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.prose ul {
  list-style: none;
  padding: 0;
}

.prose li {
  margin-bottom: 0.5rem;
}
/* MOBİL MENÜ DÜZENLEMELERİ */
#mobile-nav {
    display: none;
}

#mobile-nav.active {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
}

#mobile-nav a {
    display: block;
    width: 100%;
    max-width: 300px;
    text-align: center;
    padding: 1rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: #000;
    transition: all 0.3s;
}

#mobile-nav a:hover {
    color: #C5A028;
    transform: translateX(5px);
}

#mobile-nav .btn-gold {
    width: 100%;
    max-width: 300px;
    text-align: center;
}
/* SOSYAL MEDYA PAYLAŞIM BUTONLARI - MİNİMAL */
.social-share-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 0;
  margin: 3rem 0;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}

.social-share-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
  white-space: nowrap;
}

.social-share-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.social-share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
  font-size: 0.875rem;
}

.social-share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.share-facebook {
  background: #1877f2;
}

.share-twitter {
  background: #1da1f2;
}

.share-whatsapp {
  background: #25d366;
}

.share-linkedin {
  background: #0077b5;
}

.share-telegram {
  background: #0088cc;
}

.share-email {
  background: var(--lux-gold);
}

/* Mobil Responsive */
@media (max-width: 768px) {
  .social-share-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .social-share-buttons {
    width: 100%;
  }
}