/* Template 36 - Rose Gold Blush */
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;600;700&family=Josefin+Sans:wght@300;400;500;600&display=swap");

:root {
  --rose-gold: #b76e79;
  --blush-pink: #ffc0cb;
  --dusty-rose: #dcb4bc;
  --champagne: #f7e7ce;
  --soft-peach: #ffd7ba;

  --bg-primary: #fff5f7;
  --bg-secondary: #ffe4e9;
  --glass-bg: rgba(183, 110, 121, 0.08);
  --glass-border: rgba(183, 110, 121, 0.15);

  --text-primary: #4a2c2a;
  --text-secondary: #8b6f6f;
  --text-muted: #b39b9b;
}

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

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

body {
  font-family: "Josefin Sans", 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: radial-gradient(circle at 30% 40%, rgba(255, 192, 203, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(247, 231, 206, 0.2) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

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

/* Header */
.site-header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--dusty-rose);
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(183, 110, 121, 0.1);
}

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

.site-logo a {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--rose-gold);
  text-decoration: none;
  transition: all 0.3s ease;
  letter-spacing: 2px;
}

.site-logo a:hover {
  color: var(--blush-pink);
  transform: scale(1.03);
}

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

.site-nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  letter-spacing: 1px;
}

.site-nav a:hover {
  color: var(--rose-gold);
  background: var(--glass-bg);
}

.site-nav a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--rose-gold);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.site-nav a:hover::before {
  width: 70%;
}

/* Hero Section */
.section.head {
  padding: 8rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--champagne) 0%, var(--bg-primary) 100%);
}

.section.head h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: 4.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--rose-gold);
  letter-spacing: 3px;
  animation: elegantFloat 3s ease-in-out infinite;
}

@keyframes elegantFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.section.head p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 1000px;
  margin: 0 auto;
  letter-spacing: 0.5px;
}

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

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

.section header h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--rose-gold);
  letter-spacing: 2px;
}

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

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--dusty-rose) 0%, var(--blush-pink) 100%);
  padding: 3rem 0 1rem;
  margin-top: 5rem;
  color: var(--text-primary);
}

.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: rgba(74, 44, 42, 0.9);
  line-height: 1.8;
}

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

.footer-links a {
  color: rgba(74, 44, 42, 0.85);
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-weight: 500;
}

.footer-links a:hover {
  color: var(--text-primary);
  transform: translateY(-2px);
}

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

.copyright a {
  color: rgba(74, 44, 42, 0.7);
  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: var(--rose-gold);
  margin-top: 15px;
  margin-bottom: 10px;
  text-align: left;
}
