/* Template 47 - Warm Coffee Shop / Cozy Brown */
@import url("https://fonts.googleapis.com/css2?family=Lora:wght@400;500;600;700&family=Nunito:wght@300;400;500;600;700&display=swap");

:root {
  --gradient-1: linear-gradient(135deg, #8B4513 0%, #D2691E 100%);
  --gradient-2: linear-gradient(135deg, #CD853F 0%, #DEB887 100%);
  --gradient-3: linear-gradient(135deg, #A0522D 0%, #D2691E 100%);
  --gradient-4: linear-gradient(135deg, #8B7355 0%, #C19A6B 100%);
  --gradient-5: linear-gradient(135deg, #6F4E37 0%, #A0826D 100%);

  --bg-primary: #FFF8DC;
  --bg-secondary: #F5E6D3;
  --glass-bg: rgba(139, 69, 19, 0.05);
  --glass-border: rgba(139, 69, 19, 0.15);

  --text-primary: #3E2723;
  --text-secondary: #5D4037;
  --text-muted: #8D6E63;
}

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

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

body {
  font-family: "Nunito", sans-serif;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--bg-primary);
  font-weight: 400;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(139, 69, 19, 0.02) 10px,
    rgba(139, 69, 19, 0.02) 20px
  );
  pointer-events: none;
  z-index: -1;
}

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

/* Header with warm coffee aesthetic */
.site-header {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 3px solid var(--glass-border);
  padding: 1.75rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(139, 69, 19, 0.1);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-logo a {
  font-family: "Lora", serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: #8B4513;
  text-decoration: none;
  transition: all 0.4s ease;
  text-shadow: 2px 2px 4px rgba(139, 69, 19, 0.1);
}

.site-logo a:hover {
  color: #D2691E;
  transform: scale(1.03);
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.site-nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-1);
  transition: width 0.3s ease;
}

.site-nav a:hover {
  color: #8B4513;
}

.site-nav a:hover::after {
  width: 100%;
}

/* Hero Section */
.section.head {
  padding: 9rem 0;
  text-align: left;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(139, 69, 19, 0.03) 0%, rgba(210, 105, 30, 0.05) 100%);
}

.section.head h1 {
  font-family: "Lora", serif;
  font-size: 4.2rem;
  font-weight: 700;
  margin-bottom: 1.75rem;
  color: #6F4E37;
  line-height: 1.2;
  animation: warmFadeIn 1s ease;
}

@keyframes warmFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section.head p {
  font-size: 1.3rem;
  color: var(--text-secondary);
  max-width: 1000px;
  line-height: 1.8;
}

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

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

.section header h2 {
  font-family: "Lora", serif;
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: #8B4513;
  position: relative;
  display: inline-block;
}

.section header h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient-3);
  border-radius: 2px;
}

.section header p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 1.5rem auto 0;
}

/* Footer */
.footer {
  background: var(--bg-secondary);
  backdrop-filter: blur(10px);
  padding: 3.5rem 0 1.5rem;
  border-top: 3px solid var(--glass-border);
  margin-top: 5rem;
}

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

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

.footer-tagline {
  color: var(--text-secondary);
  line-height: 1.9;
  font-size: 1.05rem;
}

.footer-links ul {
  list-style: none;
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  position: relative;
}

.footer-links a:hover {
  color: #8B4513;
  transform: translateY(-2px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2.5rem;
  border-top: 2px solid var(--glass-border);
}

.copyright a {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Animations */
@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.fade-in {
  opacity: 0;
  animation: floatIn 0.8s ease forwards;
}

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

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-size: 1.7rem;
  color: #6F4E37;
  margin-top: 15px;
  margin-bottom: 10px;
  text-align: left;
  font-family: "Lora", serif;
}
