/*
Theme Name: Bows & Bouquets
Theme URI: https://bowsandbouquets.co.za/
Author: Antigravity
Author URI: https://github.com/antigravity
Description: A premium boutique gift shop theme for Bows & Bouquets.
Version: 1.0.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bows-bouquets
*/

/* ===================================
   DESIGN 1: ROMANTIC FLORAL ELEGANCE
   Color: Blush Pink + Ivory + Gold
=================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --pink: #c9647a;
  --pink-light: #f5dde3;
  --pink-pale: #fdf7f8;
  --gold: #b8963e;
  --gold-light: #e8d5a3;
  --dark: #1a0d10;
  --text: #3d2229;
  --text-muted: #7a5a62;
  --white: #ffffff;
  --cream: #faf6f2;
  --shadow: rgba(201, 100, 122, 0.15);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* === BUTTONS === */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--pink), #a84f63);
  color: white;
  padding: 14px 36px;
  border-radius: 50px;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(201, 100, 122, 0.4); }

.btn-outline {
  display: inline-block;
  border: 2px solid rgba(255,255,255,0.7);
  color: white;
  padding: 12px 34px;
  border-radius: 50px;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.btn-outline:hover { background: rgba(255,255,255,0.15); }

.btn-nav {
  display: inline-block;
  background: var(--pink);
  color: white;
  padding: 9px 22px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  transition: all 0.3s;
}
.btn-nav:hover { background: #a84f63; }

/* === COMMON SECTIONS === */
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.section-tag {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--pink);
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  margin-bottom: 15px;
  text-transform: uppercase;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 24px;
  font-weight: 400;
}
.section-title em { font-style: italic; color: var(--pink); font-weight: 400; }
.section-subtitle { color: var(--text-muted); font-size: 1.1rem; line-height: 1.8; max-width: 650px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 80px; }

/* === NAVBAR === */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: all 0.4s ease;
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 2px 30px rgba(0,0,0,0.08);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
}

/* Floral Flourishes on Scroll Removed */
.nav-logo img { 
  height: 60px; 
  width: 60px; 
  object-fit: cover; 
  border-radius: 50%;
  border: 2px solid var(--pink-light);
  box-shadow: 0 4px 15px rgba(201, 100, 122, 0.2);
}
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--pink);
}
.nav-links { display: flex; gap: 32px; }
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--pink);
  transition: width 0.3s;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav.scrolled .nav-links a { color: var(--text); }
.nav.scrolled .nav-links a:hover, .nav.scrolled .nav-links a.active { color: var(--pink); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  width: 24px; height: 2px;
  background: white;
  transition: all 0.3s;
  display: block;
}
.nav.scrolled .hamburger span { background: var(--text); }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: white;
  padding: 20px 24px;
  gap: 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.mobile-menu a {
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 1px solid var(--pink-light);
}
.mobile-menu.open { display: flex; }

/* === HERO === */
.hero {
  position: relative;
  height: 100vh;
  min-height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-internal {
    height: 45vh;
    min-height: 350px;
}
.hero-images { position: absolute; inset: 0; }
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-img.active { opacity: 1; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(20,5,10,0.55) 0%, rgba(20,5,10,0.35) 50%, rgba(20,5,10,0.65) 100%);
  z-index: 1;
}

/* === CALL BUTTON === */
.btn-call {
  background: var(--pink);
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(201, 100, 122, 0.3);
}
.btn-call:hover { background: #a84f63; transform: translateY(-2px); }

/* === NEW HERO ELEMENTS === */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 0 24px;
  max-width: 1000px;
}
.hero-pre {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  opacity: 0.85;
  margin-bottom: 12px;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 16px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.hero-title span { color: var(--gold-light); font-style: italic; }
.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  font-weight: 300;
  opacity: 0.9;
  letter-spacing: 0.05em;
  margin-bottom: 40px;
}
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    margin-top: 40px;
}
.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding: 0 20px;
}
.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.3);
}
.stat-item strong {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--gold-light);
    margin-bottom: 4px;
}
.stat-item span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.8;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* === SCROLL INDICATOR === */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
}
.scroll-text {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: white;
    margin-bottom: 10px;
    display: block;
}
.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, white, transparent);
    margin: 0 auto;
    position: relative;
}
.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -1px;
    width: 3px;
    height: 15px;
    background: var(--gold-light);
    border-radius: 2px;
    animation: scrollMove 2s infinite ease-in-out;
}
@keyframes scrollMove {
    0% { transform: translateY(0); opacity: 0; }
    30% { opacity: 1; }
    100% { transform: translateY(45px); opacity: 0; }
}


@media (max-width: 768px) {
    .stat-item:not(:last-child)::after { display: none; }
    .hero-stats { gap: 20px; flex-wrap: wrap; }
    .hero-actions { flex-direction: column; width: 100%; max-width: 250px; margin: 0 auto; }
}


/* === MARQUEE === */
.marquee-wrap {
  background: var(--pink);
  padding: 14px 0;
  overflow: hidden;
}
.marquee {
  display: flex;
  gap: 24px;
  white-space: nowrap;
  animation: marqueeScroll 30s linear infinite;
}
.marquee span {
  font-family: 'Cormorant Garamond', serif;
  color: white;
  font-size: 1rem;
  letter-spacing: 0.08em;
}
.marquee .sep { color: rgba(255,255,255,0.5); }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* === LOVE SECTION === */
.love-section {
  padding: 100px 0;
  background: var(--white);
}
.love-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.love-image-grid { position: relative; }
.love-img-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px var(--shadow);
}
.love-img-wrap img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.love-img-wrap img.full-height { height: 500px; }
.love-img-wrap:hover img { transform: scale(1.04); }
.love-img-wrap.offset {
  margin-top: -80px;
  margin-left: 40px;
}
.section-text {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 0.97rem;
  margin-bottom: 16px;
}
.love-badges {
  display: flex;
  gap: 20px;
  margin: 32px 0;
  flex-wrap: wrap;
}
.badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--pink-pale);
  border: 1px solid var(--pink-light);
  padding: 14px 20px;
  border-radius: 12px;
  flex: 1;
  min-width: 130px;
}
.badge-icon { font-size: 1.5rem; }
.badge strong { display: block; font-size: 0.85rem; color: var(--dark); }
.badge div { font-size: 0.78rem; color: var(--text-muted); }

/* === SIGNATURE BLOOMS (NEW) === */
.signature-blooms {
  padding: 100px 0;
  background: var(--white);
}
.flower-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.flower-card {
  position: relative;
  transition: transform 0.4s ease;
}
.flower-img {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 4px; /* Minimalist rounding */
  overflow: hidden;
  margin-bottom: 20px;
  background: var(--cream);
}
.flower-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.flower-card:hover .flower-img img {
  transform: scale(1.05);
}
.flower-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--pink);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}
.flower-info {
  text-align: center;
}
.flower-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--dark);
  margin-bottom: 8px;
}
.flower-info p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.5;
  margin-bottom: 12px;
  max-width: 250px;
  margin-left: auto;
  margin-right: auto;
}
.link-minimal {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--pink);
  border-bottom: 1px solid var(--pink-light);
  padding-bottom: 2px;
  transition: all 0.3s;
}
.link-minimal:hover {
  color: var(--dark);
  border-bottom-color: var(--dark);
}

/* === SPECIALTIES (REFINED) === */
.specialties {
  padding: 100px 0;
  background: var(--cream);
}
.specialty-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.specialty-card {
  background: white;
  border-radius: 4px; /* More modern, less rounded like Blooms */
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.specialty-card:hover { 
  transform: translateY(-5px); 
  box-shadow: 0 15px 40px rgba(0,0,0,0.08); 
}
.specialty-img { position: relative; overflow: hidden; aspect-ratio: 16/10; }
.specialty-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.specialty-card:hover .specialty-img img { transform: scale(1.05); }
.specialty-overlay {
  position: absolute;
  inset: 0;
  background: rgba(201, 100, 122, 0.4);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s;
}
.specialty-card:hover .specialty-overlay { opacity: 1; }
.specialty-link {
  color: white;
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.8);
  padding: 10px 24px;
  border-radius: 0; /* Square buttons for more premium feel */
  transition: all 0.3s;
}
.specialty-link:hover { background: white; color: var(--pink); }
.specialty-body { padding: 30px; text-align: center; }
.specialty-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--dark);
  margin-bottom: 12px;
}
.specialty-body p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }

@media (max-width: 992px) {
  .flower-grid, .specialty-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .flower-grid, .specialty-grid { grid-template-columns: 1fr; }
}

/* === GALLERY === */
.gallery-section {
  padding: 100px 0;
  background: var(--white);
}
.masonry-gallery {
  columns: 4;
  gap: 16px;
  column-gap: 16px;
}
.masonry-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s, opacity 0.3s;
}
.masonry-item:hover { transform: scale(1.02); }
.masonry-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s;
}
.masonry-item:hover img { transform: scale(1.05); }

.gallery-tabs {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.tab-btn {
  padding: 10px 26px;
  border-radius: 30px;
  border: 1.5px solid var(--pink-light);
  background: transparent;
  color: var(--text-muted);
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  letter-spacing: 0.05em;
}
.tab-btn:hover, .tab-btn.active {
  background: var(--pink);
  color: white;
  border-color: var(--pink);
}

/* === COLLECTIONS GRID === */
.collections-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
}
.collection-card {
  position: relative;
  height: 350px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.collection-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px var(--shadow);
}
.collection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.collection-card:hover img {
  transform: scale(1.1);
}
.collection-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 13, 16, 0.8) 0%, rgba(26, 13, 16, 0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  transition: background 0.3s ease;
}
.collection-card:hover .collection-card-overlay {
  background: linear-gradient(to top, rgba(201, 100, 122, 0.85) 0%, rgba(201, 100, 122, 0.3) 60%, transparent 100%);
}
.collection-card h3 {
  color: white;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: 8px;
  transform: translateY(0);
  transition: transform 0.3s ease;
}
.collection-card p {
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}
.collection-card:hover p {
  opacity: 1;
  transform: translateY(0);
}

/* === CONTACT === */
.contact-section {
  padding: 100px 0;
  background: var(--cream);
}
.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-desc { color: var(--text-muted); line-height: 1.7; margin-bottom: 36px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon { font-size: 1.3rem; }
.contact-item strong { display: block; font-weight: 600; color: var(--dark); margin-bottom: 4px; }
.contact-item p, .contact-item a { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }
.contact-item a:hover { color: var(--pink); }

.social-links { display: flex; gap: 12px; flex-wrap: wrap; }
.social-btn {
  border: 1.5px solid var(--pink-light);
  color: var(--pink);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 500;
  transition: all 0.3s;
}
.social-btn:hover { background: var(--pink); color: white; }

.contact-form-wrap {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.07);
}
.contact-form h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 28px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1.5px solid var(--pink-light);
  border-radius: 10px;
  padding: 12px 16px;
  font-family: 'Jost', sans-serif;
  font-size: 0.92rem;
  color: var(--text);
  background: var(--pink-pale);
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(201, 100, 122, 0.12);
}

/* === FOOTER === */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px 40px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand img { 
  height: 80px; 
  width: 80px; 
  object-fit: cover; 
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.1);
  margin-bottom: 20px; 
}
.footer h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: white;
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 10px;
}
.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 30px; height: 1px;
  background: var(--pink);
}
.footer-links, .footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.87rem; color: rgba(255,255,255,0.6); transition: color 0.3s; }
.footer-links a:hover { color: var(--pink); }
.footer-contact p { font-size: 0.87rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 24px;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* === PREMIUM LIGHTBOX REDESIGN === */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 5, 8, 0.98);
  backdrop-filter: blur(10px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.lightbox.open { opacity: 1; pointer-events: all; }

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 85vh;
    box-shadow: 0 50px 100px rgba(0,0,0,0.5);
    border-radius: 12px;
    overflow: hidden;
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.lightbox.open .lightbox-content {
    transform: scale(1);
}

.lightbox-content img { 
    display: block;
    max-width: 100%; 
    max-height: 85vh; 
    object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  z-index: 10001;
}

.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.8rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10000;
  user-select: none;
}

.lightbox-prev { left: 40px; }
.lightbox-next { right: 40px; }

.lightbox-prev:hover, .lightbox-next:hover, .lightbox-close:hover {
  background: var(--pink);
  border-color: var(--pink);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 0 30px rgba(201, 100, 122, 0.4);
}

.lightbox-close:hover {
    transform: rotate(90deg) scale(1.1);
}

/* Custom Arrows using SVG or Unicode for better look */
.lightbox-prev::before { content: '←'; font-family: 'Jost', sans-serif; }
.lightbox-next::before { content: '→'; font-family: 'Jost', sans-serif; }
.lightbox-close::before { content: '×'; }

@media (max-width: 768px) {
    .lightbox-prev, .lightbox-next {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    .lightbox-prev { left: 15px; }
    .lightbox-next { right: 15px; }
    .lightbox-close { top: 20px; right: 20px; }
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .masonry-gallery { columns: 3; }
  .specialty-grid { grid-template-columns: repeat(2, 1fr); }
  .love-container { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .masonry-gallery { columns: 2; }
  .specialty-grid { grid-template-columns: 1fr; }
  .contact-container { grid-template-columns: 1fr; }
  .love-img-wrap.offset { margin: 0; }
}
@media (max-width: 480px) {
  .masonry-gallery { columns: 1; }
  .footer-inner { grid-template-columns: 1fr; }
}
/* === PREMIUM CONTACT REDESIGN FIXED === */
.contact-hero-wrap {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
    background: radial-gradient(circle at top right, var(--pink-light), transparent),
                radial-gradient(circle at bottom left, var(--gold-light), transparent),
                var(--cream);
    position: relative;
    overflow: hidden;
}

.contact-glass-card {
    display: flex;
    flex-direction: row;
    max-width: 1100px;
    width: 100%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(61, 34, 41, 0.15);
    z-index: 5;
}

.contact-visual {
    flex: 1;
    position: relative;
    background: url('https://bowsandbouquets.co.za/wp-content/uploads/2023/12/Luxury1.png') center/cover no-repeat;
    padding: 50px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 500px;
}

.contact-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(26, 13, 16, 0.5), rgba(26, 13, 16, 0.85));
    z-index: 1;
}

.contact-visual-content {
    position: relative;
    z-index: 2;
}

.contact-visual h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    margin-bottom: 20px;
    line-height: 1.2;
}

.contact-visual p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-style: italic;
    opacity: 0.9;
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-visual-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.v-item {
    display: flex;
    gap: 15px;
    align-items: center;
}

.v-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.v-text strong {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 3px;
    color: var(--gold-light);
}

.v-text span {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.9);
}

.contact-main {
    flex: 1.2;
    padding: 50px;
    background: white;
}

.contact-main h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.contact-main-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 35px;
}

.contact-form-premium .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 0px;
}

.contact-form-premium .form-row .form-group {
    flex: 1;
}

.contact-form-premium .form-group {
    margin-bottom: 20px;
}

.contact-form-premium label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 8px;
    display: block;
}

.contact-form-premium input,
.contact-form-premium select,
.contact-form-premium textarea {
    width: 100%;
    background: #fcf9f7;
    border: 1.5px solid #f0e6e2;
    border-radius: 12px;
    padding: 12px 18px;
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    color: var(--text);
    transition: all 0.3s ease;
}

.contact-form-premium input:focus,
.contact-form-premium select:focus,
.contact-form-premium textarea:focus {
    background: white;
    border-color: var(--pink);
    box-shadow: 0 8px 25px rgba(201, 100, 122, 0.1);
    outline: none;
}

@media (max-width: 992px) {
    .contact-glass-card {
        flex-direction: column;
        margin: 0 20px;
    }
    .contact-visual {
        min-height: auto;
        padding: 40px;
    }
    .contact-main {
        padding: 40px;
    }
}

@media (max-width: 600px) {
    .contact-form-premium .form-row {
        flex-direction: column;
        gap: 0;
    }
}
