/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
  /* Renk Paleti - Saygın ve Davetkar */
  --color-bg-primary: #F9F8F6; /* Sıcak Taş / Bej */
  --color-bg-secondary: #EBE7E0;
  --color-text-main: #2C221B; /* Koyu Ahşap / Kahve */
  --color-text-muted: #5C4F45;
  --color-accent: #8A2D3C; /* Bordo / Altın yerine asil bordo */
  --color-accent-hover: #6C212E;
  --color-gold: #C5A059;
  
  /* Tipografi */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg-primary);
  color: var(--color-text-main);
  line-height: 1.6;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  margin-top: 0;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--color-accent-hover);
}

/* Custom Utilities for aesthetics */
.glass-panel {
  background: rgba(249, 248, 246, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 32px rgba(44, 34, 27, 0.05);
}

.heading-underline {
  position: relative;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.heading-underline::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.5rem;
  width: 60px;
  height: 3px;
  background-color: var(--color-gold);
}

/* Micro-animations */
.fade-in-up {
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
  transform: translateY(20px);
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(44, 34, 27, 0.1);
}
