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

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

:root {
  --rose-light: #fce4ec;
  --rose: #f8bbd0;
  --rose-dark: #e91e63;
  --rose-deep: #c2185b;
  --blush: #fff0f5;
  --cream: #fdf6f0;
  --text: #4a2040;
  --text-light: #7c4a6a;
  --white: #ffffff;
  --shadow: rgba(194, 24, 91, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  background: var(--blush);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(160deg, #fce4ec 0%, #f8bbd0 40%, #f48fb1 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.5) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.35) 0%, transparent 70%);
  bottom: -50px;
  left: -50px;
  border-radius: 50%;
  animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 600;
  color: var(--rose-deep);
  text-shadow: 0 2px 20px rgba(255,255,255,0.6);
  margin-bottom: 0.5rem;
  animation: fadeUp 1s ease-out;
}

.hero .subtitle {
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 300;
  color: var(--text-light);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 2rem;
  animation: fadeUp 1s ease-out 0.2s both;
}

.hero .scroll-hint {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--rose-deep);
  font-size: 0.85rem;
  text-decoration: none;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeUp 1s ease-out 0.5s both;
  transition: opacity 0.3s;
}
.hero .scroll-hint:hover { opacity: 0.6; }
.hero .scroll-hint span { font-size: 1.4rem; animation: bounce 2s infinite; }
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── Floating petals ── */
.petal {
  position: absolute;
  width: 18px;
  height: 26px;
  background: radial-gradient(ellipse at 30% 30%, #fff5f7, #f8bbd0);
  border-radius: 50% 50% 50% 0;
  opacity: 0.45;
  z-index: 1;
  animation: fall linear infinite;
  pointer-events: none;
}
@keyframes fall {
  0%   { transform: translateY(-40px) rotate(0deg);   opacity: 0; }
  10%  { opacity: 0.5; }
  90%  { opacity: 0.4; }
  100% { transform: translateY(105vh) rotate(360deg); opacity: 0; }
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1rem 2rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
  z-index: 100;
  background: rgba(252, 228, 236, 0.85);
  backdrop-filter: blur(12px);
  transform: translateY(-100%);
  transition: transform 0.4s ease;
}
.nav.visible { transform: translateY(0); }
.nav a {
  text-decoration: none;
  color: var(--rose-deep);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.3s;
}
.nav a:hover { color: var(--rose-dark); }

/* ── Section base ── */
section {
  padding: 5rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--rose-deep);
  text-align: center;
  margin-bottom: 1rem;
}
.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-weight: 300;
  font-size: 1.05rem;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Intro ── */
.intro-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}
.intro-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  box-shadow: 0 8px 30px var(--shadow);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.intro-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 40px rgba(194,24,91,0.18);
}
.intro-card .icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}
.intro-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--rose-deep);
  margin-bottom: 0.75rem;
}
.intro-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* ── Habitat (where they grow) ── */
.habitat {
  background: var(--white);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 8px 30px var(--shadow);
}
.habitat-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.habitat-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--rose-light);
  border-radius: 14px;
  padding: 1.3rem;
  transition: transform 0.3s;
}
.habitat-list li:hover { transform: scale(1.03); }
.habitat-list li .region-icon { font-size: 1.8rem; flex-shrink: 0; }
.habitat-list li strong { display: block; color: var(--rose-deep); margin-bottom: 0.3rem; }
.habitat-list li span { font-size: 0.9rem; color: var(--text-light); }

/* ── Care section ── */
.care-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}
.care-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 6px 24px var(--shadow);
  border-left: 4px solid var(--rose);
  transition: transform 0.3s;
}
.care-card:hover { transform: translateY(-4px); }
.care-card .step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: var(--white);
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.care-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--rose-deep);
  margin-bottom: 0.6rem;
}
.care-card p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* ── Gallery / varieties ── */
.varieties {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}
.variety-card {
  background: linear-gradient(145deg, var(--rose-light), var(--white));
  border-radius: 20px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 6px 20px var(--shadow);
  transition: transform 0.3s;
}
.variety-card:hover { transform: translateY(-5px); }
.variety-card .emoji { font-size: 3.5rem; margin-bottom: 0.8rem; display: block; }
.variety-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--rose-deep);
  margin-bottom: 0.5rem;
}
.variety-card p { font-size: 0.88rem; color: var(--text-light); }

/* ── Tips banner ── */
.tips-banner {
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dark) 100%);
  border-radius: 24px;
  padding: 3rem;
  color: var(--white);
  text-align: center;
  margin-top: 2rem;
}
.tips-banner h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  margin-bottom: 1rem;
}
.tips-banner ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
  margin-top: 1rem;
}
.tips-banner li {
  font-size: 0.95rem;
  opacity: 0.95;
}

/* ── Footer ── */
footer {
  text-align: center;
  padding: 3rem 2rem;
  color: var(--text-light);
  font-size: 0.85rem;
  background: linear-gradient(to top, var(--rose-light), var(--blush));
}
footer .flower-big { font-size: 2.5rem; display: block; margin-bottom: 0.5rem; }

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 600px) {
  section { padding: 3.5rem 1.2rem; }
  .habitat { padding: 2rem 1.5rem; }
  .tips-banner { padding: 2rem 1.5rem; }
  .nav { gap: 1rem; }
  .nav a { font-size: 0.7rem; letter-spacing: 1px; }
}
