@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600&family=Dancing+Script:wght@400;500;600;700&display=swap');
:root { --rose: #e8a0b4; --rose-dark: #c76b8a; --lavender: #b39ddb; --sage: #a5c4a5; --gold: #f0c040; --cream: #fdf6f0; --bg: #faf7f4; --card-bg: #ffffff; --text: #3a2e2e; --text-muted: #7a6e6e; --shadow: rgba(180,140,160,0.15); }
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--text); overflow-x: hidden; line-height: 1.6; }

nav { position: fixed; top: 0; width: 100%; background: rgba(250,247,244,0.95); backdrop-filter: blur(20px); padding: 0.8rem 2rem; display: flex; justify-content: center; gap: 1.5rem; z-index: 100; border-bottom: 1px solid rgba(232,160,180,0.15); flex-wrap: wrap; align-items: center; }
nav a { color: var(--text-muted); text-decoration: none; font-size: 0.82rem; font-weight: 500; transition: all 0.3s; padding: 0.3rem 0.6rem; border-radius: 8px; }
nav a:hover, nav a.active { color: var(--rose-dark); background: rgba(232,160,180,0.1); }
.nav-brand { font-family: 'Dancing Script', cursive; font-size: 1.1rem; color: var(--rose-dark); font-weight: 600; margin-right: 0.5rem; }

.page-content { max-width: 1200px; margin: 0 auto; padding: 5rem 2rem 3rem; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 4vw, 2.5rem); text-align: center; margin-bottom: 0.5rem; color: var(--rose-dark); }
.section-subtitle { text-align: center; color: var(--text-muted); margin-bottom: 3rem; font-size: 1rem; }
.section-banner { width: 100%; height: 300px; object-fit: cover; border-radius: 16px; margin-bottom: 3rem; display: block; }

/* Flower Cards */
.flower-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 2rem; }
.flower-card { background: var(--card-bg); border-radius: 20px; overflow: hidden; box-shadow: 0 4px 20px var(--shadow); transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
.flower-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(180,140,160,0.25); }
.flower-card:nth-child(even) { margin-top: 2rem; }
.flower-img { width: 100%; height: 260px; object-fit: cover; display: block; transition: transform 0.5s; }
.flower-card:hover .flower-img { transform: scale(1.05); }
.flower-img-wrap { overflow: hidden; position: relative; }
.flower-season { position: absolute; bottom: 12px; left: 12px; background: rgba(255,255,255,0.9); backdrop-filter: blur(10px); padding: 0.3rem 0.8rem; border-radius: 20px; font-size: 0.8rem; font-weight: 500; color: var(--rose-dark); }
.flower-content { padding: 1.5rem; }
.flower-content h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; margin-bottom: 0.2rem; }
.flower-latin { font-style: italic; color: var(--text-muted); font-size: 0.9rem; margin-bottom: 0.8rem; }
.flower-content > p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1rem; }
.flower-desc2 { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1rem; padding: 0.8rem; background: var(--bg); border-radius: 10px; border-left: 3px solid var(--rose); }
.care-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; }
.care-item { background: var(--bg); border-radius: 10px; padding: 0.6rem 0.8rem; font-size: 0.82rem; }
.care-label { font-weight: 600; color: var(--rose-dark); display: block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.5px; }
.care-value { color: var(--text); }
.symbolism-tag { display: inline-block; background: linear-gradient(135deg, rgba(232,160,180,0.2), rgba(179,157,219,0.2)); padding: 0.3rem 0.8rem; border-radius: 20px; font-size: 0.82rem; color: var(--rose-dark); margin-top: 0.5rem; }

/* Language */
.lang-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
.lang-card { background: var(--card-bg); border-radius: 16px; padding: 1.5rem; box-shadow: 0 2px 12px var(--shadow); display: flex; align-items: center; gap: 1rem; transition: all 0.3s; }
.lang-card:hover { transform: translateX(4px); box-shadow: 0 6px 20px rgba(180,140,160,0.2); }
.lang-emoji { font-size: 2.5rem; flex-shrink: 0; }
.lang-flower { font-family: 'Playfair Display', serif; font-size: 1.1rem; }
.lang-meaning { font-size: 0.88rem; color: var(--text-muted); margin-top: 0.2rem; line-height: 1.5; font-style: italic; }

/* Info */
.info-columns { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.info-box { background: var(--card-bg); border-radius: 16px; padding: 2rem; box-shadow: 0 4px 20px var(--shadow); }
.info-box h4 { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--rose-dark); margin-bottom: 1rem; }
.info-box ul { list-style: none; padding: 0; }
.info-box li { padding: 0.4rem 0; font-size: 0.9rem; color: var(--text-muted); border-bottom: 1px solid rgba(232,160,180,0.1); }
.info-box li:last-child { border: none; }
.info-box li::before { content: '🌸 '; }

/* Recipes */
.recipe-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
.recipe-card { background: var(--card-bg); border-radius: 16px; padding: 1.5rem; box-shadow: 0 2px 12px var(--shadow); transition: all 0.3s; }
.recipe-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(180,140,160,0.2); }
.recipe-card h4 { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--rose-dark); margin-bottom: 0.3rem; }
.recipe-card .recipe-flower { font-size: 0.85rem; color: var(--lavender); margin-bottom: 0.5rem; }
.recipe-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

/* Calendar */
.cal-section { background: linear-gradient(180deg, transparent, rgba(232,160,180,0.06), transparent); padding: 2rem; border-radius: 16px; }
.calendar-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.cal-month { background: var(--card-bg); border-radius: 14px; padding: 1.2rem; box-shadow: 0 2px 12px var(--shadow); }
.cal-month h4 { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--rose-dark); margin-bottom: 0.5rem; text-align: center; }
.cal-flower { display: flex; align-items: center; gap: 0.4rem; font-size: 0.82rem; color: var(--text-muted); padding: 0.2rem 0; }
.cal-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }

/* Bouquets */
.bouquet-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
.bouquet-card { background: var(--card-bg); border-radius: 16px; overflow: hidden; box-shadow: 0 4px 20px var(--shadow); transition: all 0.3s; }
.bouquet-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(180,140,160,0.25); }
.bouquet-card img { width: 100%; height: 220px; object-fit: cover; }
.bouquet-card .bouquet-info { padding: 1.2rem; }
.bouquet-card h4 { font-family: 'Playfair Display', serif; margin-bottom: 0.3rem; color: var(--rose-dark); }
.bouquet-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }
.bouquet-card .bouquet-flowers { margin-top: 0.5rem; font-size: 0.8rem; color: var(--text-muted); }

/* Facts */
.facts-list { max-width: 800px; margin: 0 auto; }
.fact-item { background: var(--card-bg); border-radius: 14px; padding: 1.5rem; margin-bottom: 1rem; box-shadow: 0 2px 12px var(--shadow); display: flex; gap: 1rem; align-items: flex-start; transition: all 0.3s; }
.fact-item:hover { transform: translateX(4px); }
.fact-num { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--rose); flex-shrink: 0; line-height: 1; }
.fact-item p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.7; }

/* Quote */
.quote-section { text-align: center; padding: 4rem 2rem; max-width: 800px; margin: 0 auto; }
.quote-section blockquote { font-family: 'Playfair Display', serif; font-size: clamp(1.3rem, 3vw, 1.8rem); font-style: italic; color: var(--rose-dark); line-height: 1.8; margin-bottom: 1.5rem; }
.quote-section cite { font-family: 'Dancing Script', cursive; font-size: 1.2rem; color: var(--text-muted); }

/* Tips */
.tips-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; }
.tip-card { background: var(--card-bg); border-radius: 16px; padding: 2rem; text-align: center; box-shadow: 0 4px 20px var(--shadow); transition: all 0.3s; }
.tip-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(180,140,160,0.2); }
.tip-icon { font-size: 2.5rem; margin-bottom: 0.8rem; }
.tip-card h4 { font-size: 1.1rem; margin-bottom: 0.5rem; color: var(--rose-dark); }
.tip-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

/* Hero */
.hero { min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; position: relative; padding: 2rem; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: url('img/hero.png') center/cover no-repeat; opacity: 0.3; filter: blur(1px); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(250,247,244,0.5) 0%, rgba(250,247,244,0.3) 40%, rgba(250,247,244,0.85) 100%); }
.hero-content { position: relative; z-index: 1; }
.dedication { font-family: 'Dancing Script', cursive; font-size: clamp(1.2rem, 3vw, 1.8rem); color: var(--rose-dark); margin-bottom: 0.5rem; }
.hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.5rem, 7vw, 5rem); font-weight: 700; margin-bottom: 1rem; line-height: 1.2; }
.hero h1 span { background: linear-gradient(135deg, var(--rose), var(--lavender), var(--rose-dark)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero p { font-size: 1.2rem; color: var(--text-muted); max-width: 600px; margin: 0 auto 1.5rem; }
.hero-bouquet { width: 200px; height: 200px; border-radius: 50%; object-fit: cover; border: 4px solid rgba(232,160,180,0.3); box-shadow: 0 10px 40px var(--shadow); margin-bottom: 1.5rem; animation: float 6s ease-in-out infinite; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.hero-nav { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; position: relative; z-index: 1; }
.hero-nav a { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.8rem 1.5rem; background: var(--card-bg); border-radius: 30px; text-decoration: none; color: var(--rose-dark); font-weight: 500; box-shadow: 0 4px 15px var(--shadow); transition: all 0.3s; font-size: 0.95rem; }
.hero-nav a:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(180,140,160,0.25); background: var(--rose); color: #fff; }

footer { text-align: center; padding: 3rem 2rem; border-top: 1px solid rgba(232,160,180,0.15); color: var(--text-muted); font-size: 0.9rem; max-width: 1200px; margin: 0 auto; }
footer .bouquet { font-size: 2rem; margin-bottom: 0.5rem; }

.fade-in { opacity: 0; transform: translateY(25px); transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1); }
.fade-in.visible { opacity: 1; transform: translateY(0); }

.petal { position: fixed; pointer-events: none; z-index: 0; opacity: 0.15; animation: fall linear infinite; font-size: 1.2rem; }
@keyframes fall { 0% { transform: translateY(-20px) rotate(0deg); opacity: 0; } 10% { opacity: 0.15; } 90% { opacity: 0.15; } 100% { transform: translateY(100vh) rotate(360deg); opacity: 0; } }

.page-header { text-align: center; padding: 2rem 0 1rem; }

@media (max-width: 768px) {
    nav { gap: 0.5rem; padding: 0.6rem 1rem; }
    nav a { font-size: 0.75rem; padding: 0.2rem 0.4rem; }
    .flower-card:nth-child(even) { margin-top: 0; }
    .calendar-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-bouquet { width: 150px; height: 150px; }
    .hero-nav a { padding: 0.6rem 1rem; font-size: 0.85rem; }
}
