/* ============================================
   BLOSSOM GARDEN — Romantic Pastel Florist CSS
   Theme: Blush Pink / Rose Gold / Cream / White
============================================ */

:root {
  --rose: #d46888;
  --rose-dark: #b04868;
  --rose-light: #f0a0b8;
  --blush: #f8dce8;
  --blush-light: #fdf0f5;
  --cream: #fffaf5;
  --rose-gold: #c8907a;
  --rose-gold-light: #e8b8a0;
  --white: #ffffff;
  --dark: #3a2030;
  --text: #5a3a48;
  --text-light: #8a6070;
  --border: #f0d0dc;
  --font-serif: 'Italiana', Georgia, serif;
  --font-sans: 'Lato', Arial, sans-serif;
  --transition: 0.35s ease;
  --radius: 12px;
  --radius-round: 50px;
  --shadow: 0 4px 20px rgba(196,104,136,0.1);
  --shadow-lg: 0 12px 50px rgba(196,104,136,0.15);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); color: var(--text); background: var(--cream); line-height: 1.7; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 7rem 0; }
.center { text-align: center; }

/* Typography */
.section-tag { font-size: 0.75rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--rose-light); font-weight: 700; display: block; margin-bottom: 0.75rem; }
.section-title { font-family: var(--font-serif); font-size: clamp(2rem, 4vw, 3.5rem); color: var(--dark); font-weight: 400; line-height: 1.2; margin-bottom: 1.5rem; }
.section-title em { color: var(--rose); font-style: italic; }
.section-sub { color: var(--text-light); font-size: 1rem; max-width: 500px; margin: 0 auto 1rem; }
.section-head { margin-bottom: 4rem; }

/* Buttons */
.btn { display: inline-block; padding: 0.9rem 2.5rem; font-family: var(--font-sans); font-size: 0.9rem; font-weight: 700; border: 2px solid; cursor: pointer; transition: var(--transition); border-radius: var(--radius-round); letter-spacing: 0.05em; }
.btn-rose { background: var(--rose); border-color: var(--rose); color: white; }
.btn-rose:hover { background: var(--rose-dark); border-color: var(--rose-dark); box-shadow: 0 5px 20px rgba(196,104,136,0.3); }
.btn-outline-rose { background: transparent; border-color: white; color: white; }
.btn-outline-rose:hover { background: white; color: var(--rose); }
.btn-ghost-rose { background: transparent; border-color: var(--rose); color: var(--rose); }
.btn-ghost-rose:hover { background: var(--rose); color: white; }
.btn-sm { padding: 0.6rem 1.5rem; font-size: 0.8rem; }

/* ============ ANNOUNCE BAR ============ */
.announce-bar { background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dark) 100%); text-align: center; padding: 0.65rem 2rem; font-size: 0.82rem; color: rgba(255,255,255,0.95); font-weight: 400; }
.announce-bar a { color: white; text-decoration: underline; font-weight: 700; }
.announce-bar a:hover { opacity: 0.8; }

/* ============ HEADER ============ */
.site-header { background: rgba(255,255,255,0.95); backdrop-filter: blur(10px); position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 20px rgba(196,104,136,0.1); transition: all 0.3s; }
.navbar { max-width: 1200px; margin: 0 auto; padding: 1rem 2rem; display: flex; align-items: center; justify-content: space-between; }
.logo-img { height: 58px; width: auto; }
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a { font-size: 0.88rem; font-weight: 400; color: var(--text); position: relative; padding-bottom: 3px; }
.nav-links a::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 0; height: 2px; background: var(--rose); border-radius: 2px; transition: width 0.3s; }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover, .nav-links a.active { color: var(--rose); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--rose); border-radius: 2px; transition: var(--transition); }

/* ============ HERO ============ */
.hero { position: relative; min-height: calc(100vh - 96px); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: url('../images/hero.jpg') center/cover no-repeat; }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: rgba(255,220,235,0.35); }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 70% 30%, rgba(255,255,255,0.4) 0%, transparent 60%); }
.hero-petals { position: absolute; inset: 0; pointer-events: none; }
.petal { position: absolute; font-size: 2rem; opacity: 0.35; animation: floatPetal 8s ease-in-out infinite; }
.p1 { top: 15%; left: 10%; animation-delay: 0s; }
.p2 { top: 30%; right: 12%; animation-delay: 1.5s; }
.p3 { top: 70%; left: 8%; animation-delay: 3s; }
.p4 { top: 60%; right: 8%; animation-delay: 4.5s; }
.p5 { top: 20%; right: 30%; animation-delay: 2s; }
@keyframes floatPetal { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-20px) rotate(10deg); } }
.hero-content { position: relative; z-index: 2; text-align: center; padding: 3rem 2rem; max-width: 750px; }
.hero-pre { font-size: 0.78rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--rose-dark); margin-bottom: 1.5rem; display: block; font-weight: 700; }
.hero-content h1 { font-family: var(--font-serif); font-size: clamp(3rem, 7vw, 5.5rem); color: var(--dark); font-weight: 400; line-height: 1.15; margin-bottom: 1.25rem; }
.hero-content h1 em { color: var(--rose); font-style: italic; }
.hero-sub { color: rgba(58,32,48,0.75); font-size: 1rem; font-weight: 300; margin-bottom: 2.5rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-trust { display: flex; gap: 1rem; justify-content: center; align-items: center; font-size: 0.82rem; color: var(--rose-dark); font-weight: 400; flex-wrap: wrap; }

/* ============ WHY SECTION ============ */
.why-section { background: white; padding: 4rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.why-emoji { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
.why-item h3 { font-family: var(--font-serif); font-size: 1.3rem; color: var(--dark); margin-bottom: 0.5rem; font-weight: 400; }
.why-item p { font-size: 0.88rem; color: var(--text-light); }

/* ============ ABOUT ============ */
.about-section { background: var(--blush-light); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-text p { color: var(--text-light); margin-bottom: 1.25rem; font-weight: 300; }
.about-hearts { display: flex; gap: 3rem; margin: 2rem 0; }
.heart-stat { text-align: center; }
.hs-num { display: block; font-family: var(--font-serif); font-size: 2.5rem; color: var(--rose); font-weight: 400; line-height: 1; }
.hs-label { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-light); }
.about-image-wrap { position: relative; height: 500px; }
.ai-circle { position: absolute; border-radius: 50%; }
.ai-c1 { width: 70%; height: 70%; top: 0; right: 0; background: url('../images/about.jpg') center/cover no-repeat; }
.ai-c2 { width: 55%; height: 55%; bottom: 0; left: 0; background: url('../images/gallery1.jpg') center/cover no-repeat; border: 6px solid white; }
.ai-c3 { width: 30%; height: 30%; top: 55%; right: 5%; background: url('../images/gallery2.jpg') center/cover no-repeat; border: 4px solid white; }

/* ============ SERVICES (ROSE CARDS) ============ */
.services-section { background: var(--cream); }
.rose-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.rose-card { background: white; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); }
.rose-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.rc-img { height: 220px; }
.rc-img-1 { background: url('../images/hero.jpg') center/cover no-repeat; }
.rc-img-2 { background: url('../images/gallery1.jpg') center/cover no-repeat; }
.rc-img-3 { background: url('../images/gallery3.jpg') center/cover no-repeat; }
.rc-img-4 { background: url('../images/about.jpg') center/cover no-repeat; }
.rc-body { padding: 1.5rem; }
.rc-body h3 { font-family: var(--font-serif); font-size: 1.3rem; color: var(--dark); margin-bottom: 0.5rem; font-weight: 400; }
.rc-body p { font-size: 0.85rem; color: var(--text-light); font-weight: 300; margin-bottom: 1rem; }
.rc-link { font-size: 0.82rem; color: var(--rose); font-weight: 700; }
.rc-link:hover { color: var(--rose-dark); }

/* ============ GALLERY PINK ============ */
.gallery-pink { background: var(--blush-light); }
.pink-gallery { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: 250px 250px; gap: 1rem; }
.pg-item { position: relative; overflow: hidden; border-radius: var(--radius); cursor: pointer; }
.pg-item:hover { transform: scale(1.02); transition: transform 0.3s; }
.pg-item.pg-tall { grid-row: span 2; }
.pg-c1 { background: linear-gradient(135deg, #f8d0e0, #e890b0, #c05080); }
.pg-c2 { background: linear-gradient(135deg, #f8e0d0, #e8b090, #c07050); }
.pg-c3 { background: linear-gradient(135deg, #e8d0f8, #b890e0, #7050a0); }
.pg-c4 { background: linear-gradient(135deg, #d0e8f0, #88b8d0, #406888); }
.pg-c5 { background: linear-gradient(135deg, #d8f0d0, #88c090, #408048); }
.pg-c6 { background: linear-gradient(135deg, #f8f0d0, #e0c880, #a08030); }
.pg-cap { position: absolute; bottom: 1rem; left: 1rem; right: 1rem; color: white; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.05em; opacity: 0; transition: 0.3s; text-shadow: 0 2px 8px rgba(0,0,0,0.3); }
.pg-item::after { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.3); opacity: 0; transition: 0.3s; border-radius: var(--radius); }
.pg-item:hover::after, .pg-item:hover .pg-cap { opacity: 1; }

/* ============ TESTIMONIALS (PINK) ============ */
.testimonials { background: var(--cream); }
.pink-testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.pt-card { background: white; border-radius: var(--radius); padding: 2.5rem; border: 2px solid var(--border); box-shadow: var(--shadow); position: relative; }
.pt-card::before { content: '🌸'; position: absolute; top: 1rem; right: 1.25rem; font-size: 1.5rem; }
.pt-stars { font-size: 1rem; margin-bottom: 1rem; }
.pt-card p { color: var(--text-light); font-style: italic; font-size: 0.95rem; margin-bottom: 1.5rem; font-weight: 300; }
.pt-client { display: flex; align-items: center; gap: 1rem; }
.pt-avatar { width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0; }
.pa1 { background: linear-gradient(135deg, #f8d0e0, #e890b0); }
.pa2 { background: linear-gradient(135deg, #d0e8f8, #88b0e0); }
.pa3 { background: linear-gradient(135deg, #d8f0d8, #88b880); }
.pt-client strong { display: block; font-size: 0.9rem; color: var(--dark); font-weight: 700; }
.pt-client span { font-size: 0.75rem; color: var(--rose-light); font-weight: 400; }

/* ============ FOOTER ============ */
.site-footer { background: var(--dark); color: rgba(248,220,232,0.8); padding-top: 5rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 2fr; gap: 3rem; padding-bottom: 4rem; border-bottom: 1px solid rgba(248,220,232,0.1); }
.footer-logo { height: 70px; margin-bottom: 1rem; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 0.85rem; color: rgba(248,220,232,0.6); margin-bottom: 1.5rem; font-weight: 300; }
.social-links { display: flex; gap: 0.65rem; flex-wrap: wrap; }
.social-links a { width: 36px; height: 36px; border: 1px solid rgba(248,220,232,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.82rem; color: rgba(248,220,232,0.6); }
.social-links a:hover { border-color: var(--rose-light); color: var(--rose-light); }
.footer-col h4 { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--rose-light); margin-bottom: 1.5rem; font-weight: 700; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col a, .footer-col p { font-size: 0.85rem; color: rgba(248,220,232,0.6); font-weight: 300; }
.footer-col p { margin-bottom: 0.75rem; display: flex; align-items: flex-start; gap: 0.75rem; }
.footer-col i { color: var(--rose-light); margin-top: 3px; min-width: 14px; }
.footer-col a:hover { color: var(--rose-light); }
.footer-bottom { text-align: center; padding: 1.5rem 0; font-size: 0.78rem; color: rgba(248,220,232,0.4); }

/* ============ LEGAL PAGES ============ */
.page-hero { padding: 10rem 2rem 5rem; background: linear-gradient(135deg, #f0c0d0 0%, #e898b0 40%, #d87090 80%, #c04870 100%); text-align: center; }
.page-hero h1 { font-family: var(--font-serif); font-size: clamp(2rem, 4vw, 3.5rem); color: var(--dark); font-weight: 400; margin-bottom: 1rem; }
.page-hero h1 em { color: white; font-style: italic; }
.page-hero p { color: rgba(58,32,48,0.7); }
.breadcrumb { font-size: 0.75rem; color: rgba(58,32,48,0.6); margin-bottom: 1rem; }
.breadcrumb a { color: var(--rose-dark); }
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content h2 { font-family: var(--font-serif); font-size: 1.5rem; color: var(--rose); margin: 2.5rem 0 1rem; font-weight: 400; }
.legal-content p, .legal-content li { color: var(--text-light); font-size: 0.93rem; margin-bottom: 1rem; font-weight: 300; }
.legal-content ul { padding-left: 1.5rem; list-style: disc; }
.legal-date { color: var(--rose-light); font-size: 0.78rem; letter-spacing: 0.1em; margin-bottom: 3rem; display: block; }

/* ============ FORMS ============ */
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 700; color: var(--rose-dark); margin-bottom: 0.5rem; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 0.9rem 1.25rem; border: 2px solid var(--border); font-family: var(--font-sans); font-size: 0.9rem; color: var(--dark); background: white; border-radius: 8px; outline: none; transition: border-color 0.3s; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--rose); }
.form-group textarea { height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ============ COOKIE ============ */
.cookie-banner { position: fixed; bottom: 2rem; left: 50%; transform: translateX(-50%); background: white; border: 2px solid var(--border); color: var(--text); padding: 1.25rem 2rem; max-width: 600px; width: calc(100% - 4rem); box-shadow: var(--shadow-lg); z-index: 9999; border-radius: var(--radius); display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; font-size: 0.85rem; opacity: 0; pointer-events: none; transition: opacity 0.4s; }
.cookie-banner.visible { opacity: 1; pointer-events: all; }
.cookie-banner p { flex: 1; margin: 0; }
.cookie-banner a { color: var(--rose); text-decoration: underline; font-weight: 700; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .rose-cards { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .announce-bar { font-size: 0.75rem; padding: 0.5rem 1rem; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-image-wrap { height: 300px; }
  .rose-cards { grid-template-columns: 1fr; }
  .pink-gallery { grid-template-columns: 1fr 1fr; }
  .pg-item.pg-tall { grid-row: span 1; }
  .pink-testimonials { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .nav-links { display: none; position: fixed; inset: 0; background: var(--blush-light); flex-direction: column; align-items: center; justify-content: center; gap: 2rem; z-index: 999; }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.3rem; color: var(--dark); }
  .nav-toggle { display: flex; z-index: 1001; }
  .form-row { grid-template-columns: 1fr; }
}
