* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
	background-image: url("img/background.jpg");
  line-height: 1.6;
  color: #333;
}
.header-content {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: flex-start;
	 flex-direction: column;
  align-items: flex-start;
}
.header-wrap {
  display: flex;
  align-items: flex-end; /* ALT hizalama */
  gap: 1rem;
  padding: 1rem 2rem;
}


.header-links a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
}

.header-links a:hover {
  text-decoration: underline;
}

nav a {
  text-decoration: none;
  padding: 1rem;
  display: block;
  font-weight: bold;
  transition: background 0.3s;
}

nav a:link,
nav a:visited,
nav a:active {
  color: white;
}

nav a:hover {
  background: rgba(255, 255, 255, 0.1);
}

.logo {
  height: 15%; /* ihtiyaca göre ayarla */
}
p
{
	color: #f9f9f9;
}
header {
  background-image: url("img/background.jpg");
  color: white;
  padding: 2rem;
  text-align: center;

  position: relative;
}

nav {
  background: #111;
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 1rem 0;
}



section {
  padding: 4rem 2rem;
  max-width: 1000px;
  margin: auto;
}

h2 {
  margin-bottom: 1rem;
  color:#f9f9f9;
}
h3,a {
	text-align: center;
  margin-top: 1rem;
  color:black;
}
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(225px, 1fr));
  gap: 2rem;
}

.feature {
  background: #f9f9f9;
	margin: 1px,1px,0,8px;
  padding: 0.78rem;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.feature-logo {
 

}
.reserved{
	color:#f9f9f9;
	text-align: center;
  	
	font-weight: bold;
}
footer {
  
  color: white;
  text-align: center;
  padding: 2rem;
}
footer a {
  color: white;
}

footer a:visited {
  color: white;
}


