@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300&family=Dancing+Script:wght@600;700&display=swap');

:root {
  --blush: #E4C5C2;
  --chocolate: #41261D;
  --blush-light: #f0dbd9;
  --blush-dark: #cfa09b;
  --chocolate-light: #6b3f33;
  --cream: #fdf6f0;
  --white: #ffffff;
  --shadow: rgba(65, 38, 29, 0.15);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Cormorant Garamond', serif;
  background-color: var(--cream);
  color: var(--chocolate);
  min-height: 100vh;
}

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--chocolate);
  box-shadow: 0 2px 20px var(--shadow);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo img {
  height: 52px;
  width: auto;
  border-radius: 50%;
  border: 2px solid var(--blush);
  object-fit: cover;
  transition: transform 0.3s ease;
}

.nav-logo img:hover {
  transform: scale(1.05);
}

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

.nav-links a {
  text-decoration: none;
  color: var(--blush-light);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--blush);
  transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--blush);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--blush);
  transition: all 0.3s ease;
  transform-origin: center;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== PAGE HEADER ===== */
.page-header {
  background: linear-gradient(135deg, var(--chocolate) 0%, var(--chocolate-light) 100%);
  color: var(--blush-light);
  text-align: center;
  padding: 4rem 2rem 3rem;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23E4C5C2' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.page-header h1 {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--blush);
  margin-bottom: 0.5rem;
}

.page-header p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--blush-light);
  opacity: 0.85;
}

/* ===== SECTIONS ===== */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.section-title {
  font-family: 'Dancing Script', cursive;
  font-size: 2.2rem;
  color: var(--chocolate);
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--chocolate-light);
  margin-bottom: 2rem;
}

.divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(to right, var(--blush-dark), var(--blush-light));
  margin: 0.75rem 0 2rem;
  border-radius: 2px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  border-radius: 40px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary {
  background: var(--chocolate);
  color: var(--blush-light);
}

.btn-primary:hover {
  background: var(--chocolate-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--shadow);
}

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

.btn-outline:hover {
  background: var(--chocolate);
  color: var(--blush-light);
  transform: translateY(-2px);
}

/* ===== CARDS ===== */
.card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px var(--shadow);
}

.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card-body {
  padding: 1.5rem;
}

.card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--chocolate);
  margin-bottom: 0.4rem;
}

.card-text {
  font-size: 1rem;
  color: var(--chocolate-light);
  line-height: 1.6;
}

/* ===== FOOTER ===== */
footer {
  background: var(--chocolate);
  color: var(--blush-light);
  text-align: center;
  padding: 2.5rem 2rem;
  margin-top: 4rem;
}

footer .footer-logo img {
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--blush-dark);
  margin-bottom: 1rem;
}

footer p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  opacity: 0.75;
  margin-top: 0.5rem;
}

footer a {
  color: var(--blush);
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--chocolate);
    padding: 1rem 0;
    box-shadow: 0 8px 20px var(--shadow);
  }

  .nav-links.open { display: flex; }

  .nav-links li { width: 100%; }

  .nav-links a {
    display: block;
    padding: 0.85rem 2rem;
    border-bottom: 1px solid rgba(228,197,194,0.1);
  }

  .nav-links a::after { display: none; }

  .navbar { position: sticky; }
  .nav-container { position: relative; }
}
