@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500&display=swap');

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

:root {
  --cream: #fdf6ee;
  --warm-white: #fffbf5;
  --bark: #5c3d2e;
  --bark-light: #7a5544;
  --sage: #7a9e7e;
  --sage-light: #a8c5ab;
  --sage-dark: #4e7152;
  --peach: #e8a87c;
  --peach-light: #f5cba7;
  --charcoal: #2c2c2c;
  --muted: #7a7060;
  --border: #e2d5c3;
  --shadow: 0 4px 24px rgba(92,61,46,0.08);
  --radius: 20px;
  --radius-sm: 10px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--warm-white);
  color: var(--charcoal);
  font-size: 16px;
  line-height: 1.7;
}

h1, h2, h3 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  line-height: 1.2;
}

a { text-decoration: none; color: inherit; }

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

#navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--warm-white);
  border-bottom: 1px solid var(--border);
}

#navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.title_text h1 {
  font-size: 1.4rem;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  color: var(--bark);
  letter-spacing: -0.02em;
}

.title_text h1 a { color: inherit; }

.title_text h1::before {
  content: 'kassid.jpg';
  display: block;
  color: var(--muted);
  font-size: 1rem;
}

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

#navbar ul li a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

#navbar ul li a:hover { color: var(--bark); }

.py-30 { padding: 5rem 0; }
.bg-light { background: var(--cream); }
.bg-dark { background: var(--bark); color: var(--cream); }
.bg-primary { background: var(--sage); color: white; }
.text-primary { color: var(--sage-dark); }
.clear { clear: both; }

.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: var(--bark);
  color: white;
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.btn:hover { background: var(--bark-light); transform: translateY(-1px); }

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

.btn-light:hover { background: rgba(255,255,255,0.1); }

#showcase {
  background: linear-gradient(180deg, rgba(20,20,20,0.45) 0%, rgba(20,20,20,0.15) 50%, rgba(20,20,20,0.55) 100%), url('kassid.jpg') center/cover no-repeat;
  padding: 7rem 0 6rem;
  position: relative;
  overflow: hidden;
}

#showcase::before {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--sage-light) 0%, transparent 70%);
  opacity: 0.35;
}

#showcase::after {
  content: '';
}

.showcase-content {
  max-width: 560px;
  position: relative;
  z-index: 1;
}

.showcase-content h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 300;
  margin-bottom: 1.2rem;
  color: white;
  text-shadow: 0 14px 30px rgba(0,0,0,0.35);
}

.showcase-content h1 span {
  font-style: italic;
  color: #f7f2e8;
}

.showcase-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.94);
  margin-bottom: 2rem;
  font-weight: 300;
  text-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* ── INFO SECTION (main) ── */
#info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
}

.info-img {
  background: url('info-bg.jpg') center/cover;
  background-color: var(--sage-light);
  position: relative;
}

.info-img::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 160px;
  height: 160px;
  border-radius: 70%;
  background: url('koer.webp') center/cover no-repeat;
  opacity: 0.9;
}

.info-content {
  padding: 4rem 3rem;
  background: var(--bark);
  color: var(--cream);
}

.info-content h2 { font-size: 2.2rem; margin-bottom: 1rem; }
.info-content p { font-weight: 300; opacity: 0.9; margin-bottom: 2rem; line-height: 1.8; }

#features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.box {
  padding: 3.5rem 2.5rem;
  text-align: center;
}

.box i {
  font-size: 2.8rem;
  display: block;
  margin-bottom: 1rem;
}

.box h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--bark);
}

.bg-primary .box h3, .bg-dark .box h3 { color: white; }
.bg-primary .box { color: white; }

/* ── ABOUT INFO ── */
#about-info .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.info-left h1 {
  font-size: 2.6rem;
  margin-bottom: 1.2rem;
  color: var(--bark);
  font-weight: 300;
}

.info-left p { color: var(--muted); line-height: 1.8; }

.info-right img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow);
  background: var(--sage-light);
}

/* ── TESTIMONIALS ── */
#testimonials { background: var(--cream); }

#testimonials .container > h2 {
  font-size: 2rem;
  text-align: center;
  color: var(--bark);
  margin-bottom: 3rem;
  font-weight: 300;
}

#testimonials .container {
  display: block;
}

.testimonial {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: white;
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.testimonial img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--sage-light);
  flex-shrink: 0;
}

.testimonial p {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--charcoal);
  line-height: 1.7;
  padding-top: 0.4rem;
}

.testimonial p::before { content: '" '; color: var(--sage); font-size: 1.4rem; }
.testimonial p::after  { content: ' "'; color: var(--sage); font-size: 1.4rem; }

/* ── CONTACT FORM ── */
#contact-form .container > h1 {
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--bark);
  margin-bottom: 0.4rem;
}

#contact-form .container > p { color: var(--muted); margin-bottom: 2rem; }

.form-group {
  margin-bottom: 1.4rem;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--bark);
  margin-bottom: 0.4rem;
  letter-spacing: 0.03em;
}

.form-group input,
.form-group textarea {
  width: 100%;
  max-width: 540px;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  background: var(--cream);
  color: var(--charcoal);
  transition: border-color 0.2s;
  outline: none;
}

.form-group textarea { min-height: 130px; resize: vertical; }
.form-group input:focus,
.form-group textarea:focus { border-color: var(--sage); }

/* ── CONTACT INFO BOXES ── */
#contact-info { padding: 4rem 0; }

#contact-info .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

#contact-info .box {
  border-radius: var(--radius);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
}

#contact-info .box i { font-size: 2rem; }
#contact-info .box h3 { color: var(--peach-light) !important; font-size: 1rem; margin-bottom: 0.5rem; }
#contact-info .box p { font-size: 0.9rem; opacity: 0.85; }

/* ── FOOTER ── */
footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.5);
  text-align: center;
  padding: 1.5rem;
  font-size: 0.85rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  #info { grid-template-columns: 1fr; }
  #features { grid-template-columns: 1fr; }
  #about-info .container { grid-template-columns: 1fr; gap: 2rem; }
  #contact-info .container { grid-template-columns: 1fr; }
  #showcase::after { display: none; }
}
