/* -------------------------
   Genel Ayarlar
------------------------- */
body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fb;
}

h1, h2, h3 {
  color: #003366; /* koyu mavi */
  margin-bottom: 0.5em;
}

p {
  margin-bottom: 1em;
}

section {
  padding: 50px 20px;
  max-width: 1100px;
  margin: auto;
}

a {
  color: #0055a5;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* -------------------------
   Hero Bölümü
------------------------- */
.hero {
  background: linear-gradient(to bottom right, #e8f2fc, #f8f9fb);
  padding: 70px 20px 0 20px; /* removed bottom padding */
}

.hero-container {
  display: flex;
  align-items: stretch;   /* makes image fill full section height */
  justify-content: center;
  gap: 40px;
  max-width: 1100px;
  margin: auto;
  flex-wrap: wrap;
}

.hero-image img {
  height: 400px;     /* fixed height */
  width: auto;       /* keep aspect ratio */
  border-radius: 0;  /* no circle mask */
  border: none;      /* no border */
  object-fit: cover; /* nicely fills the space */
  flex-shrink: 0;
}

.hero-text {
  max-width: 600px;
}

.hero-text h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.hero-text h2 {
  font-size: 1.3rem;
  color: #555;
  margin-bottom: 15px;
}

.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.hero-buttons .btn {
  display: inline-block;
  margin: 10px 15px 0 0;
  padding: 12px 20px;
  background-color: #0055a5;
  color: white;
  border-radius: 8px;
  transition: background 0.3s;
}

.hero-buttons .btn:hover {
  background-color: #003366;
}

/* -------------------------
   Hakkında
------------------------- */
.about {
  background: #fff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

/* -------------------------
   Hizmetler
------------------------- */
.services ul {
  list-style: none;
  padding: 0;
}

.services li {
  margin: 12px 0;
  font-size: 1rem;
}

.services i {
  color: #0055a5;
  margin-right: 10px;
}

/* -------------------------
   Hasta Yorumları
------------------------- */
.testimonials blockquote {
  background: #fff;
  border-left: 5px solid #0055a5;
  padding: 15px 20px;
  margin: 20px 0;
  border-radius: 6px;
  font-style: italic;
  color: #444;
}

/* -------------------------
   Blog
------------------------- */
.blog article {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  flex-wrap: wrap; /* mobil uyum */
}

.blog article img {
  width: 160px;
  height: 110px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}

.blog-content {
  flex: 1;
}

.blog-content h3 {
  margin-top: 0;
  margin-bottom: 10px;
  color: #003366;
}

.blog-content a {
  display: inline-block;
  margin-top: 10px;
  font-weight: bold;
  color: #0055a5;
}

.blog-content a:hover {
  text-decoration: underline;
}

/* -------------------------
   Galeri
------------------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
}

.gallery-grid img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.gallery-grid img:hover {
  transform: scale(1.03);
}

/* -------------------------
   İletişim
------------------------- */
.contact p {
  margin: 8px 0;
  font-size: 1rem;
}

.contact i {
  color: #0055a5;
  margin-right: 8px;
}

form {
  margin-top: 20px;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

form label {
  display: block;
  margin-bottom: 6px;
  font-weight: bold;
  color: #003366;
}

form input, form button {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

form input:focus {
  outline: none;
  border-color: #0055a5;
  box-shadow: 0 0 4px rgba(0,85,165,0.4);
}

form button {
  background: #0055a5;
  color: white;
  font-weight: bold;
  cursor: pointer;
  border: none;
  transition: background 0.3s;
}

form button:hover {
  background: #003366;
}

/* -------------------------
   Footer
------------------------- */
footer {
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  background: #003366;
  color: #fff;
}

footer small {
  display: block;
  margin-top: 8px;
  font-size: 0.8rem;
  color: #cdd6e2;
}
