/* Template 16 - Sunset / Warm Theme */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Lato:wght@300;400;700&display=swap");

:root {
  --sunset-deep: #1a0e2e;
  --sunset-purple: #3d2463;
  --sunset-pink: #ff6b9d;
  --sunset-orange: #ff8c42;
  --sunset-yellow: #ffd23f;
  --warm-cream: #fff5e6;

  --text-primary: #fff5e6;
  --text-secondary: #ffc4a3;
  --text-muted: #d4a574;

  --border-color: rgba(255, 107, 157, 0.3);
}

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

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

body {
  font-family: "Lato", sans-serif;
  line-height: 1.7;
  color: var(--text-primary);
  background: linear-gradient(180deg, var(--sunset-deep) 0%, var(--sunset-purple) 40%, #5a3a7a 100%);
  background-attachment: fixed;
  font-weight: 400;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 50% 0%, rgba(255, 107, 157, 0.3) 0%, transparent 50%),
    radial-gradient(ellipse at 0% 100%, rgba(255, 140, 66, 0.25) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 100%, rgba(255, 210, 63, 0.2) 0%, transparent 50%);
  animation: sunsetGlow 20s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
}

@keyframes sunsetGlow {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}

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

/* Header - Sunset Horizon */
.site-header {
  background: linear-gradient(90deg, rgba(26, 14, 46, 0.9), rgba(61, 36, 99, 0.9));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--border-color);
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 8px 32px rgba(255, 107, 157, 0.2);
}

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

.site-logo a {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--sunset-pink), var(--sunset-orange), var(--sunset-yellow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  transition: all 0.4s ease;
  font-style: italic;
}

.site-logo a:hover {
  filter: brightness(1.3);
  transform: scale(1.05);
}

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

.site-nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 400;
  transition: all 0.3s ease;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  background: transparent;
  border: 1px solid transparent;
}

.site-nav a:hover {
  color: var(--text-primary);
  background: linear-gradient(135deg, rgba(255, 107, 157, 0.2), rgba(255, 140, 66, 0.2));
  border-color: var(--sunset-pink);
  box-shadow: 0 4px 20px rgba(255, 107, 157, 0.3);
}

/* Hero Section - Golden Hour */
.section.head {
  padding: 8rem 0;
  text-align: center;
  position: relative;
}

.section.head h1 {
  font-family: "Playfair Display", serif;
  font-size: 4.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--sunset-pink), var(--sunset-orange), var(--sunset-yellow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: warmGlow 3s ease-in-out infinite alternate;
  font-style: italic;
}

@keyframes warmGlow {
  0% {
    filter: brightness(1);
  }
  100% {
    filter: brightness(1.4);
  }
}

.section.head p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.9;
}

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

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

.section header h2 {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--sunset-orange), var(--sunset-yellow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
}

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

/* Footer - Twilight */
.footer {
  background: linear-gradient(180deg, rgba(26, 14, 46, 0.8), rgba(26, 14, 46, 0.95));
  backdrop-filter: blur(10px);
  border-top: 2px solid var(--border-color);
  padding: 3rem 0 1rem;
  margin-top: 5rem;
}

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

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

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

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

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 20px;
}

.footer-links a:hover {
  color: var(--text-primary);
  background: linear-gradient(135deg, rgba(255, 107, 157, 0.2), rgba(255, 140, 66, 0.2));
  box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

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

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

/* Animations */
@keyframes fadeGlow {
  from {
    opacity: 0;
    transform: translateY(30px);
    filter: brightness(0.8);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: brightness(1);
  }
}

.fade-in {
  opacity: 0;
  animation: fadeGlow 0.9s 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: #ffc4a3;
  margin-top: 15px;
  margin-bottom: 10px;
  text-align: left;
}
