/* Genel Stil */
html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    color: #2c3e50; /* Koyu gri-mavi */
    line-height: 1.6;
    background: #f9f9f9; /* Açık gri arka plan */ 
  overflow-x: hidden;
  padding-top: 0px;
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* Header */
  .header {
    position: relative;
    text-align: center;
    padding-top: 60px;
  }
  
  /* Logo Section */
  .logo-section {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1001;
  width: 400px;
  height: auto;
  margin: 10px auto;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: drop-shadow(0px 5px 10px rgba(224, 230, 227, 0.2));
}

.logo-section::before {
  content: "";
  position: absolute;
  width: 220px;        /* Logo genişliğine yakın tut */
  height: 220px;       /* Eşit yap → tam daire */
  background-color: rgba(255, 255, 255, 0.15);  /* Daha transparan */
  border-radius: 50%;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
  z-index: -1;
  backdrop-filter: blur(4px);  /* Cam efekti için */
  -webkit-backdrop-filter: blur(4px);
}

.logo {
  width: 180px;
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 1;
}
  
  #logo {
    width: 400px; /* Logo genişliği */
    height: auto;
  }
  
  /* Header Image */


  .header-image img {
    width: 100%;
    height: 600px;
    display: block;
    opacity: 0.8;
  }
  
  .logo-section img:hover {
    transform: scale(1.1); /* %10 büyüsün */
    filter: drop-shadow(0px 10px 15px rgba(0, 0, 0, 0.3)); /* Daha güçlü gölge */
  }
  
  /* Navigation Menu */
  .nav {
    background: #2c3e50; /* Koyu gri-mavi */
    padding: 10px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: fixed; /* Menüyü sabitler */
    top: 0; /* En üste yapışır */
    left: 0;
    z-index: 1000; /* Diğer içeriklerin üstünde kalır */
    width: 100%;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    
 
  }
  
  .nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
    list-style: none;
  }

  .nav ul li {
    margin: 0 15px;
  }
  
  .nav ul li a {
    color: #ecf0f1; /* Açık gri */
    text-decoration: none;
    font-weight: 400;
    padding: 10px 15px;
    border-radius: 5px;
    /*transition: all 0.3s ease;*/
    transition: color 0.3s ease-in-out;
  }
  
  .nav ul li a:hover {
    background: #1abc9c; /* Turkuaz */
    color: #fff;
    font-size: 16px; /* Yazı boyutu büyüsün */
  }
  
  /* Hero Section */
  .hero {
   
    color: #fff;
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .hero-content h2 {
    font-size: 48px;
    margin-bottom: 10px;
    color: #1b1b1b; /* Açık gri */
  }
  
  .hero-content p {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1b1b1b; /* Açık gri */
  }
  
  .btn {
    background: #1abc9c; /* Turkuaz */
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s ease;
  }
  
  .btn:hover {
    background: #16a085; /* Koyu turkuaz */
  }
  
  /* Diğer Bölümler */
  .konaklama, .aktivite, .galeri, .hakkinda, .restaurant {
    padding: 60px 0;
    text-align: center;
  }
  
  .konaklama h2, .aktivite h2, .galeri h2, .hakkinda h2, .restaurant h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c3e50; /* Koyu gri-mavi */
  }
  
  .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
  }
  
  .card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  
  .card:hover {
    transform: translateY(-10px);
    transform: scale(1.2);
  }
  
  .card img {
    width: 100%;
    border-radius: 10px;
  }
  
  .card h3 {
    font-size: 24px;
    margin: 15px 0;
    color: #1abc9c; /* Turkuaz */
  }
  
  .card p {
    font-size: 16px;
    color: #666;
  }
  
  /* Gallery Section */
  .galeri .grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  
  .galeri img {
    width: 100%;
    border-radius: 10px;
    transition: transform 0.3s ease;
  }
  
  .galeri img:hover {
    transform: scale(1.25);
  }
  
  /* About Section */
  .hakkinda p {
    font-size: 18px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
  }
  
  /* Reservation Section */
  .restaurant p {
    font-size: 18px;
    color: #666;
    margin-bottom: 20px;
  }
  
  /* Footer */
  .footer {
    background: #2c3e50; /* Koyu gri-mavi */
    color: #ecf0f1; /* Açık gri */
    padding: 40px 0;
  }
  
  .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .footer-section h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1abc9c; /* Turkuaz */
  }
  
  .footer-section ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-section ul li a {
    color: #ecf0f1; /* Açık gri */
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-section ul li a:hover {
    color: #1abc9c; /* Turkuaz */
  }
  
  .footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #bdc3c7; /* Gri */
  }

/*  */
@media (max-width: 768px) {
  .logo-section {
    width: 300px; /* Telefon ve tablet için logo boyutunu küçült */
  }

  .logo-section::before {
    width: 300px;
    height: 225px;
  }

  .logo {
    width: 300px;
  }

  .header-image img {
    height: 400px; /* Telefon ve tablet için header görsel yüksekliğini azalt */
  }

  .nav ul {
    flex-direction: column; /* Menüyü dikey hale getir */
    gap: 10px;
  }

  .nav ul li a {
    padding: 8px 12px; /* Menü linklerinin padding'ini küçült */
  }

  .hero-content h2 {
    font-size: 36px; /* Başlık boyutunu küçült */
  }

  .hero-content p {
    font-size: 18px; /* Metin boyutunu küçült */
  }

  .grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Kartları daha küçük ekranlara uygun hale getir */
  }

  .card {
    padding: 15px; /* Kartların padding'ini küçült */
  }

  .card h3 {
    font-size: 20px; /* Kart başlık boyutunu küçült */
  }

  .card p {
    font-size: 14px; /* Kart metin boyutunu küçült */
  }

  .footer-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Footer grid'ini daha küçük ekranlara uygun hale getir */
  }
}

@media (max-width: 480px) {
  .logo-section {
    width: 200px; /* Daha küçük telefonlar için logo boyutunu daha da küçült */
  }

  .logo-section::before {
    width: 200px;
    height: 150px;
  }

  .logo {
    width: 200px;
  }

  .header-image img {
    height: 300px; /* Daha küçük telefonlar için header görsel yüksekliğini daha da azalt */
  }

  .hero-content h2 {
    font-size: 28px; /* Başlık boyutunu daha da küçült */
  }

  .hero-content p {
    font-size: 16px; /* Metin boyutunu daha da küçült */
  }

  .grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* Kartları daha küçük ekranlara uygun hale getir */
  }

  .card {
    padding: 10px; /* Kartların padding'ini daha da küçült */
  }

  .card h3 {
    font-size: 18px; /* Kart başlık boyutunu daha da küçült */
  }

  .card p {
    font-size: 12px; /* Kart metin boyutunu daha da küçült */
  }

  .footer-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* Footer grid'ini daha küçük ekranlara uygun hale getir */
  }
}