/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:    #f5f0e8;
  --warm:     #e8dcc8;
  --terracotta: #2a7a6b;
  --brown:    #6b3d1e;
  --dark:     #2c1a0e;
  --muted:    #8a7060;
  --white:    #fdfaf5;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  background: var(--cream);
  color: var(--dark);
  line-height: 1.7;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, blockquote {
  font-family: 'Playfair Display', serif;
}

h1 { font-size: clamp(2.4rem, 6vw, 4rem); line-height: 1.15; }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); margin-bottom: 1rem; color: var(--brown); }

p { margin-bottom: 1rem; color: var(--dark); }

a { color: var(--terracotta); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ===== LAYOUT ===== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.center { text-align: center; }

/* ===== NAV ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2.5rem;
  background: rgba(245, 240, 232, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--warm);
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--brown);
  font-weight: 600;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

nav ul a {
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
  transition: color 0.2s;
}

nav ul a:hover {
  color: var(--terracotta);
  text-decoration: none;
}

/* ===== HERO ===== */
header {
  min-height: 100vh;
  background:
    linear-gradient(to bottom, rgba(44,26,14,0.55) 0%, rgba(44,26,14,0.2) 60%, rgba(245,240,232,1) 100%),
    url('https://images.unsplash.com/photo-1553284965-5dd51834dac7?w=1600&q=80') center/cover no-repeat;
  display: flex;
  flex-direction: column;
}

.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 8rem 2.5rem 4rem;
  max-width: 700px;
}

.hero h1 { color: var(--white); margin-bottom: 1rem; }

.hero p {
  color: rgba(253, 250, 245, 0.85);
  font-size: 1.15rem;
  margin-bottom: 2rem;
  max-width: 480px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: var(--terracotta);
  color: var(--white);
  border-radius: 2px;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 400;
  transition: background 0.2s;
}

.btn:hover { background: var(--brown); text-decoration: none; }

.btn-outline {
  background: transparent;
  border: 2px solid var(--terracotta);
  color: var(--terracotta);
}

.btn-outline:hover { background: var(--terracotta); color: var(--white); }

/* ===== OVER ===== */
#over {
  padding: 6rem 0;
  background: var(--white);
}

.accent-block {
  background: var(--warm);
  border-left: 4px solid var(--terracotta);
  padding: 2.5rem 2rem;
  border-radius: 2px;
}

blockquote {
  font-size: 1.3rem;
  font-style: italic;
  color: var(--brown);
  line-height: 1.5;
}

/* ===== GALLERY ===== */
#galerij {
  padding: 6rem 0;
  background: var(--cream);
}

.subtitle {
  color: var(--muted);
  margin-bottom: 3rem;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  aspect-ratio: 4/3;
  border-radius: 2px;
  overflow: hidden;
}

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img { transform: scale(1.04); }

.placeholder {
  background: var(--warm);
  border: 2px dashed #c8b89a;
  display: flex;
  align-items: center;
  justify-content: center;
}

.placeholder-inner {
  text-align: center;
  color: var(--muted);
}

.placeholder-inner span { font-size: 2.5rem; display: block; margin-bottom: 0.5rem; }
.placeholder-inner p { margin: 0; font-size: 0.85rem; }

/* ===== CONTACT ===== */
#contact {
  padding: 6rem 0;
  background: var(--brown);
}

#contact h2 { color: var(--cream); }
#contact p { color: rgba(245, 240, 232, 0.8); }

#contact .btn-outline {
  border-color: var(--cream);
  color: var(--cream);
  margin-top: 1rem;
}

#contact .btn-outline:hover { background: var(--cream); color: var(--brown); }

/* ===== FOOTER ===== */
footer {
  text-align: center;
  padding: 1.5rem;
  background: var(--dark);
  color: var(--muted);
  font-size: 0.85rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .two-col { grid-template-columns: 1fr; gap: 2rem; }
  nav ul { gap: 1rem; }
  .hero { padding: 7rem 1.5rem 3rem; }
}
