@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500&family=Playfair+Display:ital,wght@0,400;0,600;1,400&display=swap');

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #0b0f12; 
  color: #f4f4f4;
  -webkit-font-smoothing: antialiased;
}

/* --- Navbar & Dropdown --- */
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 8%;
  z-index: 10;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  letter-spacing: 4px;
  font-size: 1.4rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px; 
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.nav-links a:hover {
  opacity: 0.6;
}

.nav-links .btn-nav {
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 10px 20px;
  border-radius: 0px;
}

.nav-links .btn-nav:hover {
  border-color: #fff;
  opacity: 1;
  background: #fff;
  color: #0b0f12;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropbtn {
  background-color: transparent;
  color: #fff;
  padding: 10px 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 6px; 
}

.dropbtn:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #0b0f12;
  min-width: 240px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: none;
  box-shadow: 0px 10px 30px rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s ease;
  z-index: 100;
}

.dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-content a {
  color: #e0e0e0;
  padding: 15px 25px;
  text-decoration: none;
  display: block;
  text-align: left;
  font-size: 0.8rem;
  letter-spacing: 2px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.dropdown-content a:last-child {
  border-bottom: none;
}

.dropdown-content a:hover {
  background-color: rgba(197, 168, 128, 0.05);
  color: #c5a880;
  padding-left: 30px; 
  opacity: 1;
}

/* --- Hero Section --- */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #0b0f12;
  background-image: linear-gradient(rgba(11, 15, 18, 0.4), rgba(11, 15, 18, 0.6)), 
                    url('hero-bg.jpeg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.hero-content {
  max-width: 850px;
  padding: 0 20px;
}

.hero-content span {
  font-size: 0.85rem;
  letter-spacing: 5px;
  font-weight: 400;
  text-transform: uppercase;
  color: #c5a880; 
  display: block;
  margin-bottom: 20px;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 1px;
  margin-bottom: 25px;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.9;
  margin-bottom: 45px;
  opacity: 0.85;
  color: #e0e0e0;
}

.hero-date {
  font-family: "Georgia", serif; /* Ana başlığın zarif yapısıyla uyumlu */
  font-size: 1.2rem;             
  color: #ffffff;                /* Diğer yazılarla tam uyum için beyaz */
  font-style: italic;            /* İsteğe bağlı: Edebi havayı destekler */
  letter-spacing: 2px;           /* Harfler arasına boşluk katarak daha lüks bir görünüm verir */
  margin-top: 5px;               /* Başlık ile arasındaki boşluk */
  margin-bottom: 20px;           /* Açıklama ile arasındaki boşluk */
  text-shadow: 2px 2px 4px rgba(0,0,0, 0.6); /* Çiçeklerin üzerinde yazının net okunabilmesi için hayati önem taşıyan gölge */
}

/* --- The Experience Section --- */
.experience {
  padding: 120px 8%;
  background-color: #111; 
}

.experience .container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.experience span {
  font-size: 0.85rem;
  letter-spacing: 5px;
  font-weight: 400;
  text-transform: uppercase;
  color: #c5a880;
  display: block;
  margin-bottom: 15px;
}

.experience h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 1px;
  margin-bottom: 80px;
  color: #fff;
}

.experience-grid {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.experience-item {
  display: flex;
  align-items: center;
  text-align: left;
  gap: 60px;
}

.experience-item.reverse {
  flex-direction: row-reverse;
  text-align: right;
}

.experience-item img {
  width: 50%;
  height: 550px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.experience-text {
  width: 50%;
  padding: 20px;
}

.experience-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 400;
  margin-bottom: 25px;
  color: #fff;
}

.experience-item p {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.9;
  color: #e0e0e0;
  opacity: 0.85;
}

p a {
  color: #d1b280; /* Sitenin havasına uygun şık bir bej/altın tonu */
  text-decoration: underline; /* Tıklanabilir olduğu anlaşılsın diye alt çizgi */
  text-underline-offset: 4px; /* Çizgi metne yapışmasın, daha ferah ve modern dursun */
  font-weight: 500;
  transition: color 0.3s ease, text-decoration-color 0.3s ease;
}

p a:hover {
  color: #ffffff; /* Fareyle üzerine gelince parlayıp beyaza dönsün */
  text-decoration-color: #ffffff;
}

/* --- Itinerary Section --- */
.itinerary-section {
  padding: 120px 8%;
  background-color: #0b0f12;
}

.itinerary-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: left; 
}

.itinerary-container > span {
  font-size: 0.85rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #c5a880;
  display: block;
  margin-bottom: 15px;
}

.itinerary-container h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.2;
  margin-bottom: 60px;
  color: #fff;
}

.itinerary-grid {
  display: flex;
  gap: 30px;
  align-items: stretch;
  text-align: left;
}

.chapter-card {
  flex: 1;
  background-color: #111;
  border: 1px solid #c5a880; 
  padding: 40px 30px;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}

.chapter-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(197, 168, 128, 0.15);
}

.chapter-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 25px;
  margin-bottom: 30px;
}

.day-tag {
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #c5a880;
  display: block;
  margin-bottom: 10px;
}

.chapter-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 400;
  font-style: italic;
  color: #fff;
  margin-bottom: 5px;
}

.chapter-header h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 400;
  font-style: italic;
  color: #e0e0e0;
  opacity: 0.8;
}

.chapter-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.chapter-list li {
  position: relative;
  padding-left: 20px;
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.7;
  color: #e0e0e0;
  opacity: 0.85;
}

.chapter-list li::before {
  content: "•";
  color: #c5a880;
  font-size: 1.2rem;
  position: absolute;
  left: 0;
  top: -2px;
}

.chapter-list li strong {
  color: #fff;
  font-weight: 500;
}

/* --- Detailed Content Sections --- */
.content-section {
  padding: 120px 8%;
  background-color: #111;
}

.content-section.alt-bg {
  background-color: #0b0f12;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

.section-container span {
  font-size: 0.85rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #c5a880;
  display: block;
  margin-bottom: 15px;
}

.section-container h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.2;
  margin-bottom: 60px;
  color: #fff;
}

.placeholder-text {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.8;
  color: #e0e0e0;
  opacity: 0.8;
  max-width: 800px;
}

/* --- Reserve & Footer Section --- */
.reserve-section {
  padding: 120px 8% 40px 8%;
  background-color: #111;
  text-align: center;
}

.reserve-container {
  max-width: 600px;
  margin: 0 auto 80px auto;
}

.reserve-section span {
  font-size: 0.85rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #c5a880;
  display: block;
  margin-bottom: 15px;
}

.reserve-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: #fff;
}

.reserve-text {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.8;
  opacity: 0.8;
  margin-bottom: 50px;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 40px;
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 1px;
  opacity: 0.5;
}

/* --- Mobil Uyum (Responsive) --- */

/* 992px ve altı ekranlar (Tablet ve küçük dizüstüler) */
@media (max-width: 992px) {
  .experience { padding: 80px 5%; }
  .experience h2 { font-size: 2.2rem; margin-bottom: 50px; }
  .experience-item { flex-direction: column; gap: 30px; text-align: center; }
  .experience-item.reverse { flex-direction: column; text-align: center; }
  .experience-item img { width: 100%; height: 350px; object-fit: cover; }
  .experience-text { width: 100%; padding: 0; }
  .experience-item h3 { font-size: 1.8rem; margin-bottom: 15px; }
  
  .itinerary-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
}

/* 768px ve altı ekranlar (Telefonlar) - SINGLE CONTINUOUS BACKGROUND & LOGO */
@media (max-width: 768px) {
  /* Apply the big background picture continuously across the entire header and hero wrapper */
  header, .hero, .hero-section {
    background: linear-gradient(rgba(11, 15, 18, 0.6), rgba(11, 15, 18, 0.6)), url('hero-bg.jpeg') no-repeat center center !important;
    background-size: cover !important;
    width: 100% !important;
  }

  /* Completely transparent navbar so the big background picture shows right through */
  .navbar { 
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 15px 4% 10px 4% !important; 
    flex-direction: column !important;
    gap: 12px !important;
    margin-bottom: 0 !important; 
  }
  
  /* Keep the logo image and text visible and centered together */
  .logo {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    width: 100% !important;
  }
  
  .logo img {
    display: block !important;
    width: 45px !important;
    height: 45px !important;
    min-width: 45px !important;
    object-fit: contain !important;
  }

  .logo span {
    font-size: 1.35rem !important;
    white-space: nowrap !important; 
    letter-spacing: 2px !important;
    color: #ffffff !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
  }

  /* Navigation links and buttons side-by-side */
  .nav-links { 
    width: 100% !important;
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 8px !important;
    margin-top: 5px !important;
  }

  .dropdown {
    width: auto !important;
    display: flex !important;
    justify-content: center !important;
  }

  /* Compact action buttons */
  .dropbtn, .btn-nav {
    width: auto !important;
    padding: 8px 12px !important;
    font-size: 0.8rem !important;
    box-sizing: border-box !important;
    text-align: center !important;
    display: inline-block !important;
  }

  /* Hero content blending smoothly right below */
  .hero-content {
    margin-top: 15px !important;
    padding-top: 5px !important;
    text-align: center !important;
  }

  .hero-content h1 { 
    font-size: 1.8rem !important; 
    line-height: 1.2 !important;
    margin-top: 10px !important;
  }

  .hero-content p {
    font-size: 0.9rem !important;
  }


  /* Genel Başlıklar */
  h2 {
    font-size: 1.8rem !important;
  }

  /* Host (Mervé) alanı */
  .host-flex {
    flex-direction: column !important;
    text-align: center !important;
  }

  .host-img {
    width: 100% !important;
    max-width: 260px;
    margin: 0 auto 20px auto;
  }

  /* Rezervasyon Bölümü */
  .reserve-section { padding: 60px 5% 30px 5% !important; }
  .reserve-section h2 { font-size: 2rem !important; }
  
  .reserve-section a[href*="stripe"] {
    display: block;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    padding: 16px 20px !important;
  }
}

/* --- Host Text Design --- */
.host-text {
  max-width: 800px;
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.9;
  color: #e0e0e0;
}

.host-text p {
  margin-bottom: 25px;
}

.host-text strong {
  color: #fff;
  font-weight: 500;
  font-size: 1.15rem;
}

.host-text .sign-off {
  margin-top: 50px;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.3rem;
  color: #c5a880;
}

.host-text .sign-off .host-name {
  display: block;
  font-size: 1.8rem;
  margin-top: 8px;
  color: #fff;
  letter-spacing: 2px;
  text-transform: none;
}

.host-flex {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-top: 40px;
}

.host-img {
  width: 40%;
  height: auto;
  aspect-ratio: 4/5;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.host-text {
  width: 60%;
}

@media (max-width: 992px) {
  .host-flex {
    flex-direction: column;
    gap: 40px;
  }
  .host-img {
    width: 100%;
    aspect-ratio: 1/1;
  }
  .host-text {
    width: 100%;
  }
}

/* --- FAQ Accordion Design --- */
.faq-wrapper {
  max-width: 800px;
  margin-top: 40px;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  text-align: left;
  padding: 25px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: #c5a880;
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: #c5a880;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding-bottom: 25px;
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.8;
  color: #e0e0e0;
  opacity: 0.85;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}