/* ============================ */
/* HARİTADA GÖSTER BUTONU      */
/* ============================ */
.map-button-container {
  max-width: 1000px;
  margin: 2rem auto;
  text-align: left;
}

.map-button {
  background-color: #002b5c;
  color: white;
  border: none;
  padding: 0.5rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 022.5rem;
  transition: background 0.3s ease;

  position: relative;
  z-index: 1;
  margin-top: 60px;
}

.map-button:hover {
  background-color: #001a3a;
}

/* ============================ */
/* GENEL ÖZELLİKLER BÖLÜMÜ     */
/* ============================ */
.specs-grid {
  display: flex;
  flex-direction: column;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  margin-top: 1rem;
}

.specs-row {
  display: flex;
  justify-content: space-between;
  padding: 0.65rem 1rem;
  border-bottom: 1px solid #f1f1f1;
}

.specs-row:last-child {
  border-bottom: none;
}

.specs-row .key {
  font-weight: 600;
  color: #002b5c;
  min-width: 160px;
  text-align: left;
}

.specs-row .value {
  color: #444;
  text-align: right;
  flex: 1;
  padding-left: 1rem;
}
/* ========================= */
/* YAZI TİPİ (Google Fonts) */
/* ========================= */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600&family=Open+Sans&display=swap');

/* ============================ */
/* ÜST NAVİGASYON (TOPBAR)     */
/* ============================ */
.topbar {
  background-color: #1c2d4a;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2.75rem 2rem;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
  flex-wrap: wrap;
}

.topbar .logo img {
  height: 200px;
  width: auto;
  background: none;
  box-shadow: none;
  padding: 0;
}

.topbar .contact-info {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  font-size: 1rem;
}

.topbar .contact-info i {
  font-style: normal;
  font-size: 1.2rem;
}

/* ============================ */
/* SAYFA TEMEL AYARLARI        */
/* ============================ */
body {
  background: #f5f7fa;
  font-family: 'Open Sans', sans-serif;
  color: #1a1a1a;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

.logo {
  position: absolute;
  top: 30px;
  left: 0px;
  z-index: 999;
}
.logo {
  position: absolute;
  top: 30px;
  left: 0;
  z-index: 5;
}


/* ============================ */
/* ANA GÖRSEL (HERO BÖLÜMÜ)    */
/* ============================ */
header.hero {
  background: url("images/gulenay1.jpeg") no-repeat center center;
  background-size: contain;
  height: 50vh;
  max-width: 1000px;
  margin: 0 auto;
  color: white;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  padding-bottom: 2rem;
  position: relative;
  box-sizing: border-box;
  border-radius: 12px;
  overflow: hidden;
}

header.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 600;
  letter-spacing: 2px;
  margin: 0;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.4);
}

/* ============================ */
/* GENEL BAŞLIKLAR             */
/* ============================ */
h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  color: #002b5c;
  font-weight: 600;
  margin-bottom: 1rem;
  border-left: 4px solid #c9a04e;
  padding-left: 1rem;
}

/* ============================ */
/* ANA SECTİON GENİŞLİK/STİL  */
/* ============================ */
section {
  padding: 2rem;
  max-width: 1000px;
  margin: 2rem auto;
  background-color: white;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  border-radius: 12px;
}

/* ============================ */
/* ÖNE ÇIKAN BİLGİLER GRIDİ    */
/* ============================ */
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  text-align: center;
  gap: 1.5rem;
  margin-top: 1rem;
  font-size: 1rem;
}

.highlight-grid div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  gap: 0.5rem;
}

.highlight-grid div strong {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  color: #002b5c;
  font-weight: 600;
  font-size: 0.95rem;
}

.highlight-grid div span {
  font-size: 1.1rem;
  color: #1a1a1a;
  font-weight: 500;
}


.description p {
  margin-bottom: 1rem;
}

/* ============================ */
/* SEKME (TABS) ALANI          */
/* ============================ */
.tabs {
  display: flex;
  background: #eee;
  border-bottom: 1px solid #ccc;
  margin-top: 2rem;
  width: 1000px;
  margin-left: auto;
  margin-right: auto;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  overflow: hidden;
  box-sizing: border-box;
}

.tab-button {
  flex: 1;
  min-width: 160px;
  padding: 1rem;
  text-align: center;
  cursor: pointer;
  border: none;
  background: #eee;
  font-size: 1.05rem;
  font-weight: 600;
  transition: background 0.3s, color 0.3s;
}

.tab-button.active {
  background: white;
  color: #c9a04e;
  border-bottom: 3px solid #c9a04e;
}

.tab-button:hover {
  background: #fdf9f2;
  color: #c9a04e;
}

.tab-content {
  display: none;
  padding: 2rem;
  background: white;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  border: 1px solid #ddd;
  border-top: none;
  box-sizing: border-box;
}

.tab-content.active {
  display: block;
}

h3 {
  margin-bottom: 0.5rem;
}

p {
  margin-top: 0;
  color: #444;
}

/* ============================ */
/* TABLO STİLLERİ              */
/* ============================ */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  text-align: center;
  table-layout: auto; 
}

table thead th {
  background-color: #fdf9f2;
  padding: 1rem;
  font-weight: bold;
  color: #c9a04e;
  border: 1px solid #ddd;
  font-size: 1rem;
  white-space: nowrap;
}

table tbody td {
  padding: 1rem;
  border: 1px solid #ddd;
  background-color: #fbfbfb;
  font-weight: 600;
  color: #002b5c;
  font-size: 1rem;
}


/* ============================ */
/* FİYAT BİLGİSİ BÖLÜMÜ        */
/* ============================ */
section.pricing {
  max-width: 1000px;
  margin: auto;
  background: white;
  padding: 2rem;
  margin-top: 2rem;
  border-radius: 8px;
}

/* ============================ */
/* BİLGİLENDİRME KUTUSU   -  Tekne Kiralamada Bilinmesi Gerekenler     */
/* ============================ */
.notice {
  max-width: 1000px;
  margin: 2rem auto;
  background: white;
  padding: 2rem;
  border-radius: 8px;
}

.notice-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.notice-grid > div {
  flex: 1;
  min-width: 250px;
}

.notice-grid h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.notice-grid a {
  color: #4a8df8;
  text-decoration: none;
}

.notice-grid a:hover {
  text-decoration: underline;
}

/* ============================ */
/* Fiyata Dahil Olan Hizmetler       */
/* ============================ */
.included-excluded {
  display: flex;
  gap: 2rem;
  max-width: 1000px;
  margin: 2rem auto;
  background: white;
  padding: 2rem;
  border-radius: 8px;
  flex-wrap: wrap;
}

.included-excluded > div {
  flex: 1;
  min-width: 280px;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 1rem 1.5rem;
}

.included-excluded h3 {
  color: #001f4d;
  border-bottom: 2px solid #007bff;
  padding-bottom: 0.5rem;
}

.included-excluded ul {
  padding-left: 1.2rem;
  list-style: disc;
}

.included-excluded li {
  margin-bottom: 0.5rem;
  color: #222;
}

/* ============================ */
/* GÖRSEL SLIDER BÖLÜMÜ        */
/* ============================ */
.image-slider {
  position: relative;
  max-width: 1000px;
  margin: 2rem auto;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.image-slider img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  display: block;
}

.slider-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.7);
  border: none;
  font-size: 2rem;
  cursor: pointer;
  padding: 0.5rem 1rem;
  z-index: 1;
  transition: background 0.3s;
  border-radius: 4px;
}

.slider-button:hover {
  background: rgba(255, 255, 255, 0.9);
}

.slider-button.prev {
  left: 10px;
}

.slider-button.next {
  right: 10px;
}

/* ============================ */
/* ALT BİLGİ (FOOTER)          */
/* ============================ */
footer {
  background: #0d1b2a;
  color: white;
  text-align: center;
  padding: 2rem;
  font-family: 'Open Sans', sans-serif;
  margin-top: 3rem;
}

footer p {
  margin: 0;
  font-size: 1rem;
  color: #ccc;
}

/* ============================ */
/* İLETİŞİM FORMU              */
/* ============================ */
.contact-form.fixed {
  position: fixed;
  top: 100px;
  right: 2vw;
  width: 12vw;
  max-width: 280px;
  min-width: 200px;
  z-index: 999;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}



.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-form label {
  font-weight: 700;
  color: #203349;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-size: 0.95rem;
  white-space: normal;
  word-break: break-word;
}

.contact-form label span {
  display: block;
  margin-bottom: 0.2em;
  font-weight: 600;
  color: #002b5c;
  font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.6rem;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: inherit;
  white-space: normal;
  word-break: break-word;
}

.contact-form textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-form .checkbox {
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
}

.contact-form button {
  background: #3454d1;
  color: white;
  padding: 0.75rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: #2c46b0;
}


/* ============================ */
/* RESPONSIVE GÖRÜNÜM          */
/* ============================ */
@media (max-width: 768px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem 1rem;
  }

  .topbar .contact-info {
    margin-left: 0;
    margin-top: 1rem;
    font-size: 0.9rem;
  }

  header.hero {
    height: 35vh;
    background-size: cover;
  }

  .tabs {
    flex-direction: column;
    width: 100%;
  }

  .tab-button {
    width: 100%;
    min-width: unset;
  }

  .tab-content {
    padding: 1rem;
  }

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

  .notice-grid {
    flex-direction: column;
  }

  .included-excluded {
    flex-direction: column;
    padding: 1.5rem;
  }

  .image-slider img {
    height: 220px;
  }

  .contact-form {
    position: static !important;
    width: 100% !important;
    max-width: 100%;
    margin: 2rem auto;
    padding: 1.5rem;
    box-shadow: none;
    min-width: unset;
    word-break: break-word;
  }

  .slider-and-form {
    flex-direction: column;
  }

  section {
    padding: 1.5rem;
  }

  h2 {
    font-size: 1.5rem;
  }
}

.route-section {
  max-width: 1000px;
  margin: 2rem auto;
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.04);
  font-family: 'Open Sans', sans-serif;
}

.route-section h2 {
  color: #002b5c;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  border-left: 4px solid #c9a04e;
  padding-left: 1rem;
}

.route-path {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 1rem;
  color: #1a1a1a;
  line-height: 1.6;
}

.route-path span {
  background-color: #f4f4f4;
  padding: 0.5rem 0.75rem;
  border-radius: 20px;
  border: 1px solid #ddd;
  white-space: nowrap;
}
