:root {
  --bg: #f8f4e9; /* Logonun rengiyle eşleşen arka plan */
  --gold: #d6a45f;
  --gold-light: #e2b87b;
  --text: #4b3f2f;
  --muted: #8c806e;
  --shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  --radius: 14px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ================= NAVBAR ================= */
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  background: rgba(248, 244, 233, 0.98); /* --bg renginin %98 opak hali */
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 60px;
  z-index: 100;
  border-bottom: 1px solid rgba(214, 164, 95, 0.25);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}

/* === DÜZELTME: Logo boyutu 45px'ten 55px'e çıkarıldı === */
.logo img {
  height: 55px; /* Logoyu 55px yüksekliğe ayarla */
  width: auto;  /* Oranını koru */
}
/* === /LOGO DÜZELTMESİ === */

/* Navbar links */
.navbar nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.navbar nav a {
  text-decoration: none;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 400;
  transition: all 0.3s ease;
}

.navbar nav a:hover,
.navbar nav a.active {
  color: var(--gold);
  font-weight: 500;
}

/* Social icons */
.navbar .social-icons {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: 40px;
}

.navbar .social-icons a {
  font-size: 1.25rem;
  color: var(--text);
  transition: color 0.3s ease;
}

.navbar .social-icons a:hover {
  color: var(--gold);
}

/* (Kodun geri kalanı aynı) */

/* ================= HERO ================= */
.hero {
  height: 90vh;
  background: url("../images/hero.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  color: var(--text);
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.45);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 650px;
  backdrop-filter: blur(3px);
  padding: 20px;
  border-radius: var(--radius);
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: 2.8rem;
  margin-bottom: 12px;
}

.hero p {
  color: var(--muted);
  font-size: 1.1rem;
  margin-bottom: 28px;
}

.btn {
  display: inline-block;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

.btn:hover {
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: translateY(-2px);
}

/* ================= SERVICES ================= */
.services {
  padding: 80px 20px;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}

.services h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.4rem;
  margin-bottom: 10px;
}

.services > p {
  color: var(--muted);
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  text-align: left;
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  padding: 16px 20px 0 20px;
}

.card p {
  padding: 8px 20px 20px 20px;
  color: var(--muted);
}

/* ================= ABOUT ================= */
.about-section {
  padding: 140px 20px 100px 20px;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-text h1 {
  font-family: "Playfair Display", serif;
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.about-text p {
  font-size: 1rem;
  margin-bottom: 16px;
  color: var(--muted);
  line-height: 1.7;
}

.about-text .signature {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  color: var(--gold);
  margin-top: 20px;
}

/* ================= CONTACT ================= */
.contact-page {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 140px 20px 100px 20px;
  background: var(--bg);
}

.contact-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-width: 750px;
  width: 100%;
  padding: 50px 60px;
  text-align: center;
}

.contact-card h1 {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  margin-bottom: 10px;
  color: var(--text);
}

.contact-card p {
  color: var(--muted);
  margin-bottom: 30px;
  font-size: 1rem;
}

form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 20px;
  text-align: left;
}

form .full {
  grid-column: 1 / -1;
}

form label {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 6px;
  display: block;
}

form input,
form select,
form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #e0ddd6;
  border-radius: 10px;
  font-size: 1rem;
  font-family: "Poppins", sans-serif;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}

form input:focus,
form select:focus,
form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 6px rgba(214, 164, 95, 0.4);
}

form textarea {
  resize: vertical;
  min-height: 110px;
}

form button {
  grid-column: 1 / -1;
  background: var(--gold);
  color: #fff;
  border: none;
  padding: 14px;
  font-size: 1rem;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

form button:hover {
  background: #c4934f;
  transform: translateY(-1px);
}

.contact-links {
  margin-top: 20px;
  text-align: center;
  font-size: 0.95rem;
}

.contact-links a {
  color: var(--gold);
  margin: 0 10px;
  text-decoration: none;
}

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

/* ================= GALLERY ================= */
.gallery-section {
  padding: 140px 20px 100px 20px;
  background-color: var(--bg);
  text-align: center;
}

.gallery-section h1 {
  font-family: "Playfair Display", serif;
  font-size: 2.4rem;
  margin-bottom: 10px;
}

.gallery-section p {
  color: var(--muted);
  margin-bottom: 40px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}

.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

/* ================= FOOTER ================= */
footer {
  background: var(--text);
  color: var(--bg);
  text-align: center;
  padding: 40px 10px;
  font-size: 0.95rem;
}

footer .social {
  margin-top: 10px;
}

footer .social a {
  color: var(--bg);
  margin: 0 10px;
  font-size: 1.3rem;
  transition: color 0.3s;
}

footer .social a:hover {
  color: var(--gold);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .navbar {
    flex-direction: column;
    padding: 10px 20px;
  }
  .navbar nav {
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .navbar .social-icons {
    display: none;
  }
  
  .hero h1 {
    font-size: 2.2rem;
  }

  .about-container {
    grid-template-columns: 1fr;
  }
  
  .contact-card {
    padding: 30px 25px;
  }
  
  form {
    grid-template-columns: 1fr;
  }
}
