/* Genel Ayarlar */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 300px;
  background-color: rgba(0, 0, 0, 0.7);
  position: fixed;
  width: 100%;
  z-index: 1000;
  border-radius: 30px;
}
.content{
    text-align: center;
}
.btn{
    text-align: center;
}
h2{
    font-size: 35px;
    padding: 15px;
}
.logoo{
 width: 150px;
}

.nav-links {
  list-style: none;
  display: flex;
}

.nav-links li {
  margin-left: 20px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #e67e22;
}

/* Hero Section */
.hero-section {
  background-image: url('resim1.jpg');
  height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 30px;
}

.btn {
  padding: 12px 24px;
  background-color: #e67e22;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: #cf711f;
}

/* Features Section */
.features {
  display: flex;
  justify-content: space-around;
  padding: 60px 20px;
  background-color: #fff;
}

.feature {
  text-align: center;
  max-width: 300px;
}

.feature img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 20px;
}

.feature h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

/* Room List */
.room-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 60px 20px;
  background-color: #f1f1f1;
}

.room-card {
  background-color: #fff;
  margin: 20px;
  border-radius: 10px;
  overflow: hidden;
  max-width: 300px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.room-card img {
  width: 100%;
  height: auto;
}

.room-card h3 {
  font-size: 22px;
  margin: 15px 0 10px;
}

.room-card p {
  font-size: 16px;
  padding: 0 10px;
  margin-bottom: 10px;
}

.room-card span {
  display: block;
  font-weight: bold;
  margin-bottom: 15px;
}

.room-card .btn {
  margin-bottom: 20px;
}

/* Footer */
footer {
  background-color: #222;
  color: #fff;
  text-align: center;
  padding: 20px 0;
}
 .menu {
      display: flex;
      list-style: none;
      background-color: #333;
      padding: 10px;
      margin: 0;
    }

    .menu li {
      margin-right: 20px;
    }

    .menu li a {
      color: white;
      text-decoration: none;
    }

    /* Hamburger butonu */
    .menu-toggle {
      display: none;
      font-size: 30px;
      background: none;
      border: none;
      color: #333;
      padding: 10px;
    }

    /* Mobil görünüm için */
    @media (max-width: 768px) {
      .menu {
        display: none;
        flex-direction: column;
        background-color: #333;
      }

      .menu.show {
        display: flex;
      }

      .menu-toggle {
        display: block;
      }
    }

 @media (max-width: 768px) {
    
.navbar{
    padding: 0px 20px;
    border-radius: 0px;
}    
    

}


