/* 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 */
padding-top: 60px; /* Menü yüksekliği kadar */
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* Header */
  .header {
    position: relative;
    text-align: center;
  }
  
  /* Logo Section */
  .logo-section {
    
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top:50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1001; /* Görselin üstünde olacak */
    width: 400px;  /* Boyutu biraz büyütelim */
  height: auto;
  margin: 10px auto; /* Ortalamak için */
  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: 400px;  /* Dairenin boyutu (logoya göre ayarlanabilir) */
    height: 300px;
    background-color: white;  /* Beyaz arka plan */
    border-radius: 50%;  /* Daire şekli */
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);  /* Hafif gölge efekti */
    z-index: -1; /* Logonun arkasında kalmasını sağla */
    opacity: 0.5;
  }



  .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;   /* Sayfaya sabitle */
    top: 0;            /* En üstte */
    left: 0;
    width: 100%;
    z-index: 9999;     /* Diğer elemanların üstünde */
    background: #2c3e50;
    padding: 10px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  
  .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;
  }
  
  .nav ul li a:hover {
    background: #1abc9c; /* Turkuaz */
    color: #fff;
    font-size: 16px; /* Yazı boyutu büyüsün */
  }
  
  /* Hero Section */
  .hero {
    background: url('https://via.placeholder.com/1200x800') no-repeat center center/cover;
    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.20);
   
  }
  
  .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 */
  }