/* ================================================
   Fiorille's Flower Galaxy — Main Stylesheet
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Lato:wght@300;400;700&display=swap');

:root {
  --green-dark:  #1A3A2A;
  --green-med:   #2D5E47;
  --green-light: #4A8C63;
  --sage:        #95C4A8;
  --gold:        #C8A96A;
  --gold-light:  #E8D5A3;
  --cream:       #FAF8F3;
  --bg-light:    #F2F5F0;
  --text-dark:   #1C2B23;
  --text-med:    #4A5E52;
  --text-light:  #7A8E82;
  --white:       #FFFFFF;
  --shadow:      0 4px 24px rgba(26,58,42,0.10);
  --shadow-lg:   0 8px 48px rgba(26,58,42,0.15);
  --radius:      8px;
  --transition:  all 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Lato', sans-serif; color: var(--text-dark); background: var(--white); font-size: 16px; line-height: 1.7; }
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.25; color: var(--green-dark); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-green { color: var(--green-dark); }

.section-label { font-family: 'Lato', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; display: block; }
.section-title { font-size: clamp(28px, 4vw, 42px); color: var(--green-dark); margin-bottom: 16px; }
.section-subtitle { font-size: 17px; color: var(--text-med); max-width: 560px; line-height: 1.7; }
.section-subtitle.centered { margin: 0 auto; }
.divider { width: 60px; height: 3px; background: var(--gold); margin: 20px 0 32px; }
.divider.centered { margin: 20px auto 32px; }

.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; border-radius: 4px; font-family: 'Lato', sans-serif; font-weight: 700; font-size: 14px; letter-spacing: 1px; text-transform: uppercase; cursor: pointer; transition: var(--transition); border: 2px solid transparent; }
.btn-primary { background: var(--green-dark); color: var(--white); border-color: var(--green-dark); }
.btn-primary:hover { background: var(--green-med); border-color: var(--green-med); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--green-dark); transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: var(--white); border-color: var(--gold); }
.btn-gold:hover { background: #b5923e; border-color: #b5923e; transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline-green { background: transparent; color: var(--green-dark); border-color: var(--green-dark); }
.btn-outline-green:hover { background: var(--green-dark); color: var(--white); transform: translateY(-2px); }

.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(255,255,255,0.97); backdrop-filter: blur(8px); border-bottom: 1px solid rgba(26,58,42,0.08); transition: var(--transition); }
.nav.scrolled { box-shadow: 0 2px 20px rgba(26,58,42,0.10); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-logo { display: flex; flex-direction: column; line-height: 1; }
.nav-logo-main { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: var(--green-dark); }
.nav-logo-sub { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); font-weight: 700; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 13px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-med); transition: var(--transition); position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 2px; background: var(--gold); transform: scaleX(0); transition: var(--transition); }
.nav-links a:hover, .nav-links a.active { color: var(--green-dark); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links .btn { padding: 10px 22px; font-size: 12px; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--green-dark); transition: var(--transition); display: block; }

.hero { min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; background: linear-gradient(135deg, #1A3A2A 0%, #2D5E47 60%, #1A3A2A 100%); }
.hero-bg { position: absolute; inset: 0; background-image: url('images/hero-bg.jpg'); background-size: cover; background-position: center; opacity: 0.25; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(26,58,42,0.85) 0%, rgba(26,58,42,0.5) 100%); }
.hero-content { position: relative; z-index: 2; max-width: 700px; padding-top: 72px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(200,169,106,0.2); border: 1px solid rgba(200,169,106,0.4); color: var(--gold-light); padding: 8px 16px; border-radius: 100px; font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 28px; }
.hero h1 { font-size: clamp(40px, 6vw, 72px); color: var(--white); margin-bottom: 12px; }
.hero h1 em { color: var(--gold); font-style: italic; }
.hero-tagline { font-size: clamp(16px, 2vw, 20px); color: rgba(255,255,255,0.85); margin-bottom: 40px; font-weight: 300; letter-spacing: 1px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 40px; margin-top: 64px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.15); flex-wrap: wrap; }
.hero-stat-number { font-family: 'Playfair Display', serif; font-size: 36px; color: var(--white); line-height: 1; }
.hero-stat-label { font-size: 12px; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: 1.5px; margin-top: 4px; }

.marquee-banner { background: var(--gold); padding: 12px 0; overflow: hidden; }
.marquee-track { display: flex; gap: 64px; animation: marquee 24s linear infinite; white-space: nowrap; }
.marquee-item { display: flex; align-items: center; gap: 12px; font-size: 13px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--white); flex-shrink: 0; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.services-strip { background: var(--cream); padding: 64px 0; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 32px; }
.service-card { text-align: center; padding: 32px 24px; background: var(--white); border-radius: var(--radius); border: 1px solid rgba(26,58,42,0.08); transition: var(--transition); }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--sage); }
.service-icon { width: 56px; height: 56px; background: var(--bg-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-size: 24px; }
.service-card h3 { font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.service-card p { font-size: 14px; color: var(--text-med); line-height: 1.5; }

.prestige { background: var(--green-dark); padding: 72px 0; position: relative; overflow: hidden; }
.prestige::before { content: '✦'; position: absolute; top: -40px; right: -40px; font-size: 300px; color: rgba(255,255,255,0.02); font-family: serif; }
.prestige-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.prestige-text .section-label { color: var(--gold-light); }
.prestige-text .section-title { color: var(--white); }
.prestige-text .section-subtitle { color: rgba(255,255,255,0.75); max-width: 100%; }
.prestige-text .divider { background: var(--gold); }
.prestige-cards { display: flex; flex-direction: column; gap: 16px; }
.prestige-card { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius); padding: 24px; display: flex; align-items: flex-start; gap: 16px; transition: var(--transition); }
.prestige-card:hover { background: rgba(255,255,255,0.12); transform: translateX(4px); }
.prestige-card-icon { font-size: 28px; flex-shrink: 0; margin-top: 2px; }
.prestige-card h4 { font-size: 16px; color: var(--white); margin-bottom: 4px; }
.prestige-card p { font-size: 14px; color: rgba(255,255,255,0.65); }

.categories-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.category-card { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/5; cursor: pointer; }
.category-card-bg { position: absolute; inset: 0; transition: transform 0.5s ease; }
.category-card:hover .category-card-bg { transform: scale(1.06); }
.category-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,58,42,0.85) 0%, rgba(26,58,42,0.1) 60%); }
.category-card-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px; }
.category-card-content h3 { color: var(--white); font-size: 20px; margin-bottom: 4px; }
.category-card-content p { color: rgba(255,255,255,0.75); font-size: 14px; margin-bottom: 12px; }
.category-card-content a { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold-light); display: flex; align-items: center; gap: 6px; transition: var(--transition); }
.category-card-content a:hover { gap: 10px; }
.cat-roses    { background: linear-gradient(135deg, #8B1A1A, #C0392B); }
.cat-seasonal { background: linear-gradient(135deg, #2D6A4F, #40916C); }
.cat-weddings { background: linear-gradient(135deg, #5A4A3A, #8B7355); }
.cat-sympathy { background: linear-gradient(135deg, #3A4A5A, #5A7080); }
.cat-plants   { background: linear-gradient(135deg, #2A5A2A, #4A8A4A); }
.cat-doorhang { background: linear-gradient(135deg, #5A3A7A, #7B52AB); }

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-item { position: relative; overflow: hidden; border-radius: var(--radius); aspect-ratio: 1; background: var(--bg-light); }
.gallery-item.tall { grid-row: span 2; aspect-ratio: unset; }
.gallery-item.wide { grid-column: span 2; aspect-ratio: unset; min-height: 280px; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item-overlay { position: absolute; inset: 0; background: rgba(26,58,42,0.5); display: flex; align-items: center; justify-content: center; opacity: 0; transition: var(--transition); }
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay span { color: var(--white); font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; }
.gp-1 { background: linear-gradient(135deg, #D4A5A5, #E8C5C5); }
.gp-2 { background: linear-gradient(135deg, #A5C4A5, #C5E8C5); }
.gp-3 { background: linear-gradient(135deg, #A5B4C4, #C5D5E8); }
.gp-4 { background: linear-gradient(135deg, #C4A5C4, #E8C5E8); }
.gp-5 { background: linear-gradient(135deg, #C4C4A5, #E8E8C5); }
.gp-6 { background: linear-gradient(135deg, #C4B4A5, #E8D5C5); }
.gp-7 { background: linear-gradient(135deg, #A5C4C4, #C5E8E8); }
.gp-8 { background: linear-gradient(135deg, #B4A5C4, #D5C5E8); }
.gp-9 { background: linear-gradient(135deg, #C4A5B4, #E8C5D5); }
.gallery-placeholder-label { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; font-size: 13px; color: rgba(0,0,0,0.4); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.gallery-placeholder-label span:first-child { font-size: 32px; margin-bottom: 8px; }

.testimonials { background: var(--bg-light); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { background: var(--white); border-radius: var(--radius); padding: 32px; border: 1px solid rgba(26,58,42,0.06); transition: var(--transition); }
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.stars { color: var(--gold); font-size: 16px; letter-spacing: 2px; margin-bottom: 16px; }
.testimonial-text { font-style: italic; font-size: 15px; color: var(--text-med); line-height: 1.7; margin-bottom: 20px; }
.testimonial-author { font-weight: 700; font-size: 14px; color: var(--green-dark); }
.testimonial-location { font-size: 12px; color: var(--text-light); margin-top: 2px; }

.cta-band { background: var(--cream); padding: 64px 0; text-align: center; }
.cta-band h2 { font-size: clamp(24px, 3vw, 36px); margin-bottom: 12px; }
.cta-band p  { font-size: 17px; color: var(--text-med); margin-bottom: 32px; }
.cta-band .btn-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.about-story { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; padding: 80px 0; }
.about-img-frame { position: relative; }
.about-img-frame::before { content: ''; position: absolute; top: -16px; left: -16px; right: 16px; bottom: 16px; border: 2px solid var(--gold); border-radius: var(--radius); z-index: 0; }
.about-img-main { position: relative; z-index: 1; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/5; background: var(--bg-light); }
.about-badge { position: absolute; bottom: -20px; right: -20px; z-index: 2; background: var(--green-dark); color: var(--white); border-radius: var(--radius); padding: 20px; text-align: center; min-width: 110px; }
.about-badge-number { font-family: 'Playfair Display', serif; font-size: 36px; color: var(--gold); line-height: 1; }
.about-badge-text { font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; opacity: 0.8; margin-top: 4px; }
.milestones { background: var(--cream); padding: 80px 0; }
.milestones-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.milestone-number { font-family: 'Playfair Display', serif; font-size: 48px; color: var(--green-dark); line-height: 1; }
.milestone-label { font-size: 14px; color: var(--text-med); margin-top: 8px; text-transform: uppercase; letter-spacing: 1px; }

.contact-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; padding: 80px 0; }
.contact-info-block { display: flex; flex-direction: column; gap: 32px; }
.contact-item { display: flex; gap: 16px; }
.contact-item-icon { width: 48px; height: 48px; background: var(--bg-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.contact-item h4 { font-size: 14px; text-transform: uppercase; letter-spacing: 1px; color: var(--gold); margin-bottom: 6px; }
.contact-item p, .contact-item a { font-size: 16px; color: var(--text-med); line-height: 1.5; }
.hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 16px; font-size: 15px; color: var(--text-med); }
.hours-day { font-weight: 700; color: var(--green-dark); }
.contact-form-card { background: var(--white); border: 1px solid rgba(26,58,42,0.08); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow); }
.contact-form-card h3 { margin-bottom: 24px; font-size: 22px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-med); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 16px; border: 1px solid rgba(26,58,42,0.15); border-radius: 4px; font-family: 'Lato', sans-serif; font-size: 15px; color: var(--text-dark); background: var(--white); transition: var(--transition); outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--green-light); box-shadow: 0 0 0 3px rgba(74,140,99,0.1); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.map-embed { margin-top: 64px; border-radius: var(--radius); overflow: hidden; height: 400px; border: 1px solid rgba(26,58,42,0.1); }
.map-embed iframe { width: 100%; height: 100%; border: none; }

.page-hero { background: linear-gradient(135deg, #1A3A2A 0%, #2D5E47 100%); padding: 140px 0 80px; text-align: center; }
.page-hero h1 { color: var(--white); }
.page-hero p  { color: rgba(255,255,255,0.8); font-size: 18px; max-width: 560px; margin: 16px auto 0; }

.shop-categories { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.shop-cat-card { border-radius: var(--radius); overflow: hidden; transition: var(--transition); border: 1px solid rgba(26,58,42,0.08); }
.shop-cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.shop-cat-img { height: 200px; display: flex; align-items: center; justify-content: center; font-size: 64px; }
.shop-cat-body { padding: 20px; background: var(--white); }
.shop-cat-body h3 { font-size: 18px; margin-bottom: 6px; }
.shop-cat-body p  { font-size: 14px; color: var(--text-med); margin-bottom: 16px; }

.footer { background: var(--text-dark); color: rgba(255,255,255,0.75); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .nav-logo-main { color: var(--white); font-size: 22px; }
.footer-brand .nav-logo-sub  { color: var(--gold); }
.footer-brand p { font-size: 14px; line-height: 1.7; margin-top: 16px; color: rgba(255,255,255,0.6); max-width: 280px; }
.footer-col h4 { font-family: 'Playfair Display', serif; font-size: 14px; text-transform: uppercase; letter-spacing: 2px; color: var(--gold); margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer-col ul li a:hover { color: var(--white); padding-left: 4px; }
.footer-col address { font-style: normal; font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.8; }
.footer-col address a { color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer-col address a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 28px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.4); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 13px; color: rgba(255,255,255,0.4); transition: var(--transition); }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.8); }

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .shop-categories { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .prestige-inner { grid-template-columns: 1fr; gap: 40px; }
  .milestones-grid { grid-template-columns: repeat(2, 1fr); }
  .about-story { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .nav-links { display: none; flex-direction: column; gap: 0; position: absolute; top: 72px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid rgba(26,58,42,0.1); padding: 16px 0; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 24px; border-radius: 0; }
  .nav-links a::after { display: none; }
  .nav-links .btn { margin: 8px 24px; }
  .nav-toggle { display: flex; }
  .hero-stats { gap: 24px; }
  .categories-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.wide { grid-column: span 1; }
  .gallery-item.tall { grid-row: span 1; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .shop-categories { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
}