/*
 Theme Name: GeneratePress Child
 Theme URI: https://cevan.com.tr
 Description: GeneratePress Child Theme - Hafif, Hızlı ve Mobil Uyumlu
 Author: Cevan
 Author URI: https://cevan.com.tr
 Template: generatepress
 Version: 1.2
 Text Domain: generatepress-child
*/

@import url("../generatepress/style.css");

body {
  margin: 0;
  padding: 0;
  background: #ffffff;
  color: #222;
  font-family: "Inter", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

h1, h2, h3, h4, h5 {
  color: #111;
  font-weight: 600;
  margin-top: 1em;
}

a {
  color: #0073aa;
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  color: #005177;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.cevan-card {
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  padding: 20px;
  margin-bottom: 20px;
  transition: all 0.2s ease;
}
.cevan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 768px) {
  body {
    font-size: 15px;
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .cevan-card {
    padding: 16px;
  }
}
