/* Template 11 - Warm Coffee House / Cozy Editorial */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Nunito:wght@300;400;500;600;700&display=swap');

:root {
  --latte-cream: #faf7f2;
  --warm-beige: #e8ddd4;
  --caramel: #c4a77d;
  --espresso: #4a3728;
  --dark-roast: #2c1f17;
  --cinnamon: #a0522d;
  --mocha: #6b4423;
  --milk-foam: #fff9f0;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: 'Nunito', sans-serif;
  line-height: 1.8;
  color: var(--espresso);
  background: var(--latte-cream);
  font-weight: 400;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem;
}

/* Header - Cozy editorial style */
.site-header {
  background: var(--milk-foam);
  padding: 2rem 0 1.5rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 3px double var(--warm-beige);
}

.header-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.site-logo a {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-roast);
  text-decoration: none;
  letter-spacing: 0.02em;
  position: relative;
  transition: color 0.3s ease;
}

.site-logo a::before {
  content: '☕';
  position: absolute;
  left: -45px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  opacity: 0.6;
}

.site-logo a:hover {
  color: var(--cinnamon);
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  background: var(--latte-cream);
  padding: 0.5rem;
  border-radius: 50px;
}

.site-nav a {
  color: var(--espresso);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.site-nav a:hover {
  background: var(--caramel);
  color: var(--milk-foam);
}

/* Hero Section - Warm and inviting */
.section.head {
  padding: 6rem 0 5rem;
  text-align: center;
  background: var(--milk-foam);
  position: relative;
}

.section.head::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(196, 167, 125, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(160, 82, 45, 0.1) 0%, transparent 40%);
  pointer-events: none;
}

.section.head::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10%;
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--caramel), transparent);
}

.section.head h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--dark-roast);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  font-style: italic;
}

.section.head p {
  font-size: 1.15rem;
  color: var(--mocha);
  max-width: 600px;
  margin: 0 auto;
}

/* Section Styling */
.section {
  padding: 5rem 0;
}

.section header {
  text-align: center;
  margin-bottom: 4rem;
}

.section header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--dark-roast);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section header h2::before,
.section header h2::after {
  content: '~';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--caramel);
  font-size: 2rem;
}

.section header h2::before {
  left: -35px;
}

.section header h2::after {
  right: -35px;
}

.section header p {
  font-size: 1.05rem;
  color: var(--mocha);
  max-width: 500px;
  margin: 0 auto;
}

/* Footer - Warm and editorial */
.footer {
  background: var(--dark-roast);
  padding: 4rem 0 2rem;
  margin-top: 4rem;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: repeating-linear-gradient(
    90deg,
    var(--caramel) 0px,
    var(--caramel) 30px,
    var(--cinnamon) 30px,
    var(--cinnamon) 60px
  );
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 3rem;
  gap: 4rem;
}

.footer-about {
  flex: 1;
  max-width: 400px;
}

.footer-tagline {
  color: var(--warm-beige);
  line-height: 1.9;
  font-size: 0.95rem;
}

.footer-links ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem 2rem;
}

.footer-links a {
  color: var(--caramel);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 15px;
}

.footer-links a::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--cinnamon);
}

.footer-links a:hover {
  color: var(--milk-foam);
  padding-left: 20px;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(196, 167, 125, 0.2);
}

.copyright a {
  color: var(--warm-beige);
  font-size: 0.85rem;
  font-style: italic;
}

/* Animations */
@keyframes warmFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  animation: warmFadeIn 0.7s ease forwards;
}

.fade-in:nth-child(1) { animation-delay: 0.15s; }
.fade-in:nth-child(2) { animation-delay: 0.3s; }
.fade-in:nth-child(3) { animation-delay: 0.45s; }

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

body:not(.faq) h3,
:not(section.faq) h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--dark-roast);
  margin-top: 15px;
  margin-bottom: 10px;
  text-align: left;
  font-weight: 600;
}
