/* ===== UMA Flowers & Decoration - Stylesheet ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600&family=Great+Vibes&display=swap');

:root {
  --clr-dark-green: #0B3B2D;
  --clr-green: #1A5C3A;
  --clr-gold: #C9A84C;
  --clr-gold-light: #E8D48B;
  --clr-cream: #FFF8F0;
  --clr-white: #FFFFFF;
  --clr-text: #2D2D2D;
  --clr-text-light: #6B6B6B;
  --clr-overlay: rgba(11, 59, 45, 0.75);
  --clr-card-bg: rgba(255, 255, 255, 0.95);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.18);
  --shadow-gold: 0 4px 20px rgba(201,168,76,0.3);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--clr-text);
  background: var(--clr-cream);
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }

.script-font { font-family: 'Great Vibes', cursive; }

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

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

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 16px 0;
  background: transparent;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(11, 59, 45, 0.95);
  backdrop-filter: blur(12px);
  padding: 10px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.nav-container {
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { height: 50px; width: 50px; border-radius: 50%; object-fit: cover; border: 2px solid var(--clr-gold); }
.nav-logo span { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 600; color: var(--clr-gold); letter-spacing: 1px; }

.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  color: var(--clr-white); font-weight: 500; font-size: 0.95rem;
  position: relative; padding: 4px 0; letter-spacing: 0.5px;
  transition: var(--transition);
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 2px; background: var(--clr-gold);
  transition: var(--transition);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover { color: var(--clr-gold); }

.nav-cta {
  background: var(--clr-gold); color: var(--clr-dark-green);
  padding: 10px 24px; border-radius: 50px; font-weight: 600;
  font-size: 0.9rem; display: flex; align-items: center; gap: 8px;
  transition: var(--transition); border: none; cursor: pointer;
}
.nav-cta:hover { background: var(--clr-gold-light); transform: translateY(-2px); box-shadow: var(--shadow-gold); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { width: 26px; height: 2.5px; background: var(--clr-white); border-radius: 2px; transition: var(--transition); }

/* ===== HERO SECTION ===== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('hero-bg.png') center/cover no-repeat;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(11,59,45,0.88) 0%,
    rgba(26,92,58,0.72) 50%,
    rgba(11,59,45,0.85) 100%
  );
}
.hero-content {
  position: relative; z-index: 2; text-align: center;
  max-width: 800px; padding: 0 24px;
  animation: fadeInUp 1s ease-out;
}
.hero-badge {
  display: inline-block; padding: 8px 24px; border-radius: 50px;
  border: 1px solid var(--clr-gold); color: var(--clr-gold);
  font-size: 0.85rem; font-weight: 500; letter-spacing: 2px;
  text-transform: uppercase; margin-bottom: 24px;
  animation: fadeInUp 1s ease-out 0.2s both;
}
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem); color: var(--clr-white);
  margin-bottom: 8px; font-weight: 700;
  animation: fadeInUp 1s ease-out 0.4s both;
}
.hero h1 .gold { color: var(--clr-gold); }
.hero .tagline {
  font-family: 'Great Vibes', cursive; font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--clr-gold-light); margin-bottom: 20px;
  animation: fadeInUp 1s ease-out 0.6s both;
}
.hero p {
  font-size: 1.1rem; color: rgba(255,255,255,0.85);
  max-width: 600px; margin: 0 auto 32px;
  animation: fadeInUp 1s ease-out 0.8s both;
}
.hero-buttons {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 1s both;
}
.btn-primary {
  background: var(--clr-gold); color: var(--clr-dark-green);
  padding: 14px 36px; border-radius: 50px; font-weight: 600;
  font-size: 1rem; display: inline-flex; align-items: center; gap: 8px;
  transition: var(--transition); border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--clr-gold-light); transform: translateY(-3px); box-shadow: var(--shadow-gold); }
.btn-secondary {
  background: transparent; color: var(--clr-white);
  padding: 14px 36px; border-radius: 50px; font-weight: 600;
  font-size: 1rem; border: 2px solid rgba(255,255,255,0.4);
  transition: var(--transition); cursor: pointer;
}
.btn-secondary:hover { border-color: var(--clr-gold); color: var(--clr-gold); transform: translateY(-3px); }

.hero-scroll {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  z-index: 2; animation: bounce 2s infinite;
}
.hero-scroll svg { width: 32px; height: 32px; stroke: var(--clr-gold); }

/* ===== SECTION STYLES ===== */
.section { padding: 100px 0; }
.section-dark { background: var(--clr-dark-green); color: var(--clr-white); }
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

.section-header { text-align: center; margin-bottom: 60px; }
.section-header .overline {
  font-size: 0.85rem; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--clr-gold); margin-bottom: 12px;
  display: block;
}
.section-header h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; }
.section-header p { font-size: 1.1rem; color: var(--clr-text-light); max-width: 600px; margin: 0 auto; }
.section-dark .section-header p { color: rgba(255,255,255,0.7); }

.gold-line {
  width: 60px; height: 3px; background: var(--clr-gold);
  margin: 16px auto 0; border-radius: 2px;
}

/* ===== ABOUT SECTION ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-image { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.about-image img { width: 100%; height: 500px; object-fit: cover; border-radius: var(--radius-lg); }
.about-image::before {
  content: ''; position: absolute; inset: -4px;
  border: 2px solid var(--clr-gold); border-radius: var(--radius-lg);
  z-index: 1; pointer-events: none;
}
.about-badge {
  position: absolute; bottom: 24px; right: 24px; z-index: 2;
  background: var(--clr-gold); color: var(--clr-dark-green);
  padding: 16px 24px; border-radius: var(--radius-md);
  text-align: center;
}
.about-badge .number { font-size: 2rem; font-weight: 700; font-family: 'Playfair Display', serif; }
.about-badge .label { font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.about-text h2 { font-size: 2.5rem; margin-bottom: 20px; color: var(--clr-dark-green); }
.about-text .highlight { color: var(--clr-gold); font-family: 'Great Vibes', cursive; font-size: 1.3em; }
.about-text p { margin-bottom: 16px; color: var(--clr-text-light); line-height: 1.8; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
.about-feature { display: flex; align-items: center; gap: 12px; }
.about-feature .icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-green), var(--clr-dark-green));
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.about-feature .icon svg { width: 20px; height: 20px; stroke: var(--clr-gold); fill: none; }
.about-feature span { font-weight: 500; font-size: 0.95rem; }

/* ===== SERVICES SECTION ===== */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.service-card {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-md); padding: 40px 28px; text-align: center;
  transition: var(--transition); position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--clr-gold), var(--clr-gold-light));
  transform: scaleX(0); transition: var(--transition);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { background: rgba(255,255,255,0.12); transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold-light));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.service-icon svg { width: 32px; height: 32px; stroke: var(--clr-dark-green); fill: none; }
.service-card h3 { font-size: 1.3rem; margin-bottom: 12px; color: var(--clr-white); }
.service-card p { font-size: 0.95rem; color: rgba(255,255,255,0.7); line-height: 1.7; }

/* ===== GALLERY SECTION ===== */
.gallery-tabs {
  display: flex; justify-content: center; gap: 8px; margin-bottom: 40px; flex-wrap: wrap;
}
.gallery-tab {
  padding: 10px 28px; border-radius: 50px; border: 2px solid var(--clr-gold);
  background: transparent; color: var(--clr-gold); font-weight: 600;
  font-size: 0.9rem; cursor: pointer; transition: var(--transition);
  font-family: 'Inter', sans-serif;
}
.gallery-tab.active, .gallery-tab:hover {
  background: var(--clr-gold); color: var(--clr-dark-green);
}

.gallery-subcategories {
  display: flex; justify-content: center; gap: 8px; margin-bottom: 32px; flex-wrap: wrap;
}
.gallery-subtab {
  padding: 8px 20px; border-radius: 50px; border: 1px solid rgba(201,168,76,0.4);
  background: transparent; color: var(--clr-text-light); font-weight: 500;
  font-size: 0.85rem; cursor: pointer; transition: var(--transition);
  font-family: 'Inter', sans-serif;
}
.gallery-subtab.active, .gallery-subtab:hover {
  background: var(--clr-dark-green); color: var(--clr-gold); border-color: var(--clr-dark-green);
}

.gallery-grid {
  columns: 4 280px; column-gap: 16px;
}
.gallery-item {
  break-inside: avoid; margin-bottom: 16px;
  border-radius: var(--radius-sm); overflow: hidden;
  position: relative; cursor: pointer;
  transition: var(--transition);
}
.gallery-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.gallery-item img {
  width: 100%; display: block; border-radius: var(--radius-sm);
  transition: var(--transition);
}
.gallery-item:hover img { transform: scale(1.03); }
.gallery-item .overlay {
  position: absolute; inset: 0; background: var(--clr-overlay);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--transition); border-radius: var(--radius-sm);
}
.gallery-item:hover .overlay { opacity: 1; }
.gallery-item .overlay svg { width: 36px; height: 36px; stroke: var(--clr-gold); fill: none; }

.gallery-count {
  text-align: center; margin-top: 24px; font-size: 0.9rem; color: var(--clr-text-light);
}

.gallery-loading {
  text-align: center; padding: 60px 20px; color: var(--clr-text-light);
}
.gallery-loading .spinner {
  width: 40px; height: 40px; border: 3px solid rgba(201,168,76,0.2);
  border-top-color: var(--clr-gold); border-radius: 50%;
  animation: spin 0.8s linear infinite; margin: 0 auto 16px;
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.92); backdrop-filter: blur(8px);
  display: none; align-items: center; justify-content: center;
  padding: 20px;
}
.lightbox.active { display: flex; }
.lightbox img {
  max-width: 90vw; max-height: 85vh; object-fit: contain;
  border-radius: var(--radius-sm); animation: zoomIn 0.3s ease-out;
}
.lightbox-close {
  position: absolute; top: 20px; right: 20px;
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: none;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }
.lightbox-close svg { width: 24px; height: 24px; stroke: white; }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: none;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.lightbox-nav:hover { background: rgba(255,255,255,0.25); }
.lightbox-nav svg { width: 24px; height: 24px; stroke: white; }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }
.testimonial-card {
  background: var(--clr-card-bg); border-radius: var(--radius-md);
  padding: 32px; box-shadow: var(--shadow-sm); transition: var(--transition);
  border: 1px solid rgba(201,168,76,0.15);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial-stars { color: var(--clr-gold); font-size: 1.1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-text { font-style: italic; color: var(--clr-text-light); line-height: 1.8; margin-bottom: 20px; }
.testimonial-author { font-weight: 600; color: var(--clr-dark-green); }
.testimonial-role { font-size: 0.85rem; color: var(--clr-text-light); }

/* ===== CONTACT SECTION ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon {
  width: 52px; height: 52px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--clr-green), var(--clr-dark-green));
  display: flex; align-items: center; justify-content: center;
}
.contact-icon svg { width: 22px; height: 22px; stroke: var(--clr-gold); fill: none; }
.contact-item h4 { font-size: 1rem; margin-bottom: 4px; color: var(--clr-dark-green); }
.contact-item p { color: var(--clr-text-light); font-size: 0.95rem; }
.contact-item a { color: var(--clr-green); font-weight: 500; transition: var(--transition); }
.contact-item a:hover { color: var(--clr-gold); }

.contact-map {
  border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-md);
  border: 2px solid rgba(201,168,76,0.2); height: 100%; min-height: 400px;
}
.contact-map iframe { width: 100%; height: 100%; min-height: 400px; border: none; }

/* ===== WHATSAPP FAB ===== */
.whatsapp-fab {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; color: white; border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition); animation: pulse-green 2s infinite;
}
.whatsapp-fab:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }
.whatsapp-fab svg { width: 32px; height: 32px; fill: white; }
.whatsapp-tooltip {
  position: absolute; right: 72px; top: 50%; transform: translateY(-50%);
  background: var(--clr-dark-green); color: var(--clr-white); padding: 8px 16px;
  border-radius: 8px; font-size: 0.85rem; font-weight: 500; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: var(--transition);
}
.whatsapp-fab:hover .whatsapp-tooltip { opacity: 1; }

/* ===== FOOTER ===== */
.footer {
  background: var(--clr-dark-green); color: var(--clr-white);
  padding: 60px 0 24px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  margin-bottom: 40px;
}
.footer-brand p { color: rgba(255,255,255,0.6); margin-top: 16px; line-height: 1.7; font-size: 0.95rem; }
.footer h4 { font-size: 1.1rem; margin-bottom: 20px; color: var(--clr-gold); }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 0.95rem; transition: var(--transition); }
.footer-links a:hover { color: var(--clr-gold); padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.85rem; color: rgba(255,255,255,0.5);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-12px); }
  60% { transform: translateX(-50%) translateY(-6px); }
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes zoomIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes pulse-green {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  70% { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
.animate-on-scroll {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(11,59,45,0.98); flex-direction: column; padding: 20px 24px; gap: 16px;
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .nav-cta { display: none; }
  .gallery-grid { columns: 2 200px; }
  .section { padding: 60px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .services-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .gallery-grid { columns: 1; }
  .hero-buttons { flex-direction: column; align-items: center; }
}
