/* TEMEL STİLLER */
:root {
  --primary-color: #001F3F; /* Lacivert ana renk */
  --secondary-color: #FF851B; /* Aksan rengi */
  --light-color: #f8f9fa;
  --dark-color: #343a40;
  --text-color: #333;
  --text-light: #fff;
}
header h1, header .btn {
  color: white !important;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

header .btn {
  border: 1px solid white;
  background-color: transparent;
}

header .btn:hover {
  background-color: rgba(255,255,255,0.2) !important;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #f5f5f5;
  color: var(--text-color);
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* HEADER */
header {
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 20px 0;
  text-align: center;
  margin-bottom: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

h1, h2, h3 {
  color: var(--primary-color);
}

h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

/* BUTONLAR */
.btn {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background-color: #003366;
  transform: translateY(-2px);
}

.secondary-btn {
  background-color: var(--secondary-color);
}

.secondary-btn:hover {
  background-color: #e67300;
}

/* KARTLAR */
.card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.card-img {
  height: 300px;
  overflow: hidden;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.card:hover .card-img img {
  transform: scale(1.05);
}

.card-body {
  padding: 20px;
}

/* MENÜ */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.menu-item {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-align: center;
}

.menu-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.menu-icon {
  height: 120px;
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2.5rem;
}

.menu-content {
  padding: 20px;
}

/* İÇERİK SAYFALARI */
.content-section {
  background: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 15px;
  margin: 30px 0;
}

.gallery img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s;
}

.gallery img:hover {
  transform: scale(1.03);
}

/* FOOTER */
footer {
  text-align: center;
  margin-top: 50px;
  padding: 20px;
  color: #666;
  font-size: 0.9rem;
  background-color: var(--primary-color);
  color: white;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  h1 {
    font-size: 1.8rem;
  }
  
  .menu-grid {
    grid-template-columns: 1fr;
  }
  
  .content-section {
    padding: 20px;
  }
}