@charset "UTF-8";
/* =============================
   GLOBAL STYLES (MOBILE FIRST)
============================= */

:root {
  --bg-main: #FFF5F7;
  --pink-primary: #E6A4B4;
  --pink-accent: #C97C8A;
  --text-main: #2B1E23;
  --text-muted: #6B5A5F;
  --border-soft: #EAD7DC;
  --white: #ffffff;
}

/* =============================
   RESET
============================= */

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.7;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* =============================
   LAYOUT WRAPPER
============================= */

.site-header,
section {
  width: 100%;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

section {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}

/* =============================
   HEADER / NAV
============================= */

.site-header {
  background-color: var(--white);
  border-bottom: 1px solid var(--border-soft);
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.header-inner {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.brand h1 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 600;
}

.tagline {
  font-size: 0.8rem;
  color: var(--text-muted);
}

nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  font-size: 0.85rem;
}

nav a {
  letter-spacing: 0.04em;
}

nav a:hover {
  color: var(--pink-accent);
}

/* =============================
   HERO / ABOUT
============================= */

.hero {
  text-align: center;
}

.hero h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  margin-bottom: 1.8rem;
}

.hero-content {
  max-width: 640px;
  margin: 0 auto;
}

.hero-content p {
  margin-bottom: 1.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* =============================
   BUTTONS
============================= */

.btn {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.7rem 2rem;
  background-color: var(--pink-primary);
  color: var(--white);
  border-radius: 999px;
  font-size: 0.85rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn:hover {
  background-color: var(--pink-accent);
  transform: translateY(-2px);
}

/* =============================
   SECTION HEADINGS
============================= */

h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  margin-bottom: 2.8rem;
  text-align: center;
}

/* =============================
   GRID / CARDS
============================= */

.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.card {
  background-color: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  padding: 2.2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card h4 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 0.6rem;
}

.card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.card span {
  display: inline-block;
  margin-top: 1.2rem;
  font-size: 0.85rem;
  color: var(--pink-accent);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.08);
}

/* =============================
   CONTACT
============================= */

.contact {
  text-align: center;
}

.contact p {
  margin-bottom: 0.6rem;
  font-size: 0.9rem;
}

.contact-links {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-links a {
  color: var(--pink-accent);
  font-size: 0.9rem;
}

/* =============================
   TABLET (≥768px)
============================= */

@media (min-width: 768px) {
  .site-header,
  section {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }

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

  nav ul {
    gap: 1.8rem;
  }

  .hero h2 {
    font-size: 2.3rem;
  }

  .grid {
    grid-template-columns: repeat(2, 1fr);
  }

  section {
    padding-top: 6.5rem;
    padding-bottom: 6.5rem;
  }

  .contact-links {
    flex-direction: row;
    justify-content: center;
  }
}

/* =============================
   DESKTOP (≥1024px)
============================= */

@media (min-width: 1024px) {
  .hero h2 {
    font-size: 2.6rem;
  }

  .card {
    padding: 2.6rem;
  }
}
