/*
Theme Name:  Sunshine Balloons
Theme URI:   https://sunshineballoons.com
Author:      Sunshine Balloons
Author URI:  https://sunshineballoons.com
Description: Professional balloon decoration business theme for Sarasota & Bradenton, FL. Features a colorful single-page layout with hero, services, gallery, about, testimonials, and contact sections.
Version:     1.0.0
License:     GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: sunshine-balloons
Tags:        one-page, custom-logo, custom-menu, custom-colors, responsive-layout
*/

/* ============================================================
   SUNSHINE BALLOONS — Main Stylesheet
   Color palette matched to logo:
     Teal:    #3ECFB5
     Yellow:  #F5C227
     Lavender:#C9A3E8
     Pink bg: #FCEAEA
     White:   #FFFFFF
     Text:    #333333
   ============================================================ */

/* ---- CSS VARIABLES ---- */
:root {
  --teal:        #3ECFB5;
  --teal-dark:   #2db8a0;
  --yellow:      #F5C227;
  --yellow-dark: #d9a90e;
  --lavender:    #C9A3E8;
  --pink:        #FCEAEA;
  --pink-dark:   #f5d5d5;
  --white:       #ffffff;
  --text:        #333333;
  --text-light:  #666666;
  --text-muted:  #999999;
  --shadow:      0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg:   0 8px 40px rgba(0,0,0,0.12);
  --radius:      16px;
  --radius-sm:   10px;
  --transition:  0.3s ease;
  --font-heading:'Baloo 2', sans-serif;
  --font-body:   'Nunito', sans-serif;
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }

.highlight-teal    { color: var(--teal); }
.highlight-yellow  { color: var(--yellow-dark); }
.highlight-lavender{ color: var(--lavender); }

/* ---- LAYOUT ---- */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 80px 0; }
.section-white { background: var(--white); }
.section-pink  { background: var(--pink); }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.btn-teal   { background: var(--teal);   color: var(--white); }
.btn-teal:hover { background: var(--teal-dark); }

.btn-yellow { background: var(--yellow); color: #333; }
.btn-yellow:hover { background: var(--yellow-dark); color: var(--white); }

.btn-white-outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-white-outline:hover { background: var(--white); color: var(--teal); }

.btn-whatsapp { background: #25D366; color: var(--white); }
.btn-whatsapp:hover { background: #1ebe5a; }

/* ---- SECTION HEADERS ---- */
.section-header { text-align: center; margin-bottom: 52px; }

.section-tag {
  display: inline-block;
  background: var(--pink);
  color: var(--teal-dark);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.section-pink .section-tag { background: var(--white); }

.section-sub {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 12px auto 0;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 14px 0;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  transition: padding var(--transition), box-shadow var(--transition);
}
.navbar.scrolled { padding: 8px 0; box-shadow: 0 4px 24px rgba(0,0,0,0.1); }

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo img { height: 56px; width: auto; object-fit: contain; }

/* Custom logo from WordPress */
.nav-logo .custom-logo-link img { height: 56px; width: auto; }

.nav-links { display: flex; align-items: center; gap: 28px; margin-left: auto; }

.nav-links a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  position: relative;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transition: transform var(--transition);
  border-radius: 2px;
}
.nav-links a:hover { color: var(--teal); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta { margin-left: 8px; padding: 10px 22px; font-size: 0.9rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span { display: block; width: 26px; height: 3px; background: var(--text); border-radius: 2px; transition: all var(--transition); }
.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.mobile-nav.open { transform: translateX(0); }

.mobile-nav-close { position: absolute; top: 20px; right: 24px; font-size: 2rem; background: none; border: none; cursor: pointer; color: var(--text); line-height: 1; }

.mobile-nav nav { display: flex; flex-direction: column; align-items: center; gap: 20px; }

.mobile-nav-link { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 700; color: var(--text); transition: color var(--transition); }
.mobile-nav-link:hover { color: var(--teal); }
.mobile-nav-cta { margin-top: 12px; font-size: 1rem; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, var(--pink) 0%, #fff8f8 45%, #f0fffe 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 24px 80px;
  text-align: center;
}

.balloon { position: absolute; font-size: 2.4rem; animation: float 6s ease-in-out infinite; opacity: 0.6; pointer-events: none; user-select: none; }
.balloon-1 { top: 12%; left:  8%;  animation-delay: 0s;   font-size: 2rem; }
.balloon-2 { top: 20%; right: 10%; animation-delay: 1.2s; font-size: 3rem; }
.balloon-3 { bottom: 22%; left:  6%;  animation-delay: 2.4s; font-size: 1.8rem; }
.balloon-4 { bottom: 30%; right:  8%; animation-delay: 0.6s; font-size: 2.2rem; }
.balloon-5 { top: 50%; left:  3%;  animation-delay: 3s;   font-size: 1.4rem; }

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(-5deg); }
  50%       { transform: translateY(-20px) rotate(5deg); }
}

.hero-content  { position: relative; z-index: 1; max-width: 760px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--teal-dark);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(62,207,181,0.12);
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.hero h1       { margin-bottom: 20px; color: var(--text); }
.hero-sub      { color: var(--text-light); font-size: 1.15rem; max-width: 540px; margin: 0 auto 36px; }
.hero-cta-group{ display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px; }
.hero-tagline  { color: var(--text-muted); font-style: italic; font-size: 0.95rem; }

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}
.scroll-arrow { font-size: 1.1rem; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.cards-grid   { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 28px; }
.cards-grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); }

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.card-event .card-icon { font-size: 2.8rem; margin-bottom: 16px; }
.card-event h3 { color: var(--teal-dark); margin-bottom: 10px; }
.card-event p  { color: var(--text-light); font-size: 0.95rem; line-height: 1.6; }

.card-specialty  { background: var(--white); border-top: 4px solid var(--teal); text-align: center; }
.card-accent-teal    { border-top-color: var(--teal); }
.card-accent-lavender{ border-top-color: var(--lavender); }
.card-accent-yellow  { border-top-color: var(--yellow); }

.specialty-icon       { font-size: 2.4rem; margin-bottom: 14px; }
.card-specialty h3    { margin-bottom: 10px; color: var(--text); }
.card-specialty p     { color: var(--text-light); font-size: 0.9rem; line-height: 1.6; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}
.gallery-item { aspect-ratio: 4/3; border-radius: var(--radius-sm); overflow: hidden; position: relative; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.05); }

.gallery-placeholder {
  width: 100%; height: 100%;
  background: var(--pink);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-family: var(--font-heading);
  font-weight: 600;
  border: 2px dashed var(--pink-dark);
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.gallery-placeholder:hover { background: var(--pink-dark); }
.gallery-icon { font-size: 2.2rem; }

.gallery-cta { text-align: center; }
.gallery-cta p { color: var(--text-light); margin-bottom: 20px; font-size: 1rem; }

.social-links { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.social-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.social-btn.instagram { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color: var(--white); }
.social-btn.facebook  { background: #1877F2; color: var(--white); }
.social-btn.tiktok    { background: #000;    color: var(--white); }

/* ============================================================
   ABOUT
   ============================================================ */
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-text .section-tag { margin-bottom: 16px; }
.about-text h2 { margin-bottom: 20px; }
.about-text p  { color: var(--text-light); margin-bottom: 14px; font-size: 1rem; }

.about-highlights { margin: 24px 0 32px; display: flex; flex-direction: column; gap: 14px; }
.about-highlights li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.95rem; }

.highlight-dot         { display: inline-block; width: 12px; height: 12px; border-radius: 50%; margin-top: 5px; flex-shrink: 0; }
.highlight-dot.teal    { background: var(--teal); }
.highlight-dot.yellow  { background: var(--yellow); }
.highlight-dot.lavender{ background: var(--lavender); }

.about-visual { display: flex; align-items: center; justify-content: center; }

.about-logo-wrap {
  position: relative;
  display: inline-block;
  background: var(--white);
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow-lg);
}
.about-logo { max-width: 320px; }

.about-badge {
  position: absolute;
  bottom: -18px; right: -18px;
  background: var(--teal);
  color: var(--white);
  border-radius: 50px;
  padding: 10px 20px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 16px rgba(62,207,181,0.4);
}
.badge-icon { font-size: 1rem; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 28px; }

.testimonial-card {
  background: var(--pink);
  border-radius: var(--radius);
  padding: 32px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.testimonial-featured { background: var(--teal); color: var(--white); }
.testimonial-featured blockquote { color: rgba(255,255,255,0.92); }
.testimonial-featured .testimonial-author { color: rgba(255,255,255,0.75); }

.stars { color: var(--yellow-dark); font-size: 1.1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-featured .stars { color: var(--yellow); }

blockquote {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
}
blockquote::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--teal);
  opacity: 0.3;
  line-height: 0;
  vertical-align: -0.6em;
  margin-right: 4px;
}
.testimonial-featured blockquote::before { color: var(--white); opacity: 0.5; }
.testimonial-author { font-family: var(--font-heading); font-weight: 700; font-size: 0.85rem; color: var(--text-muted); letter-spacing: 0.05em; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before { content: '🎈'; position: absolute; font-size: 8rem; top: -20px; left: -20px; opacity: 0.1; pointer-events: none; }
.cta-banner::after  { content: '🎈'; position: absolute; font-size: 6rem; bottom: -20px; right: 40px; opacity: 0.1; pointer-events: none; }

.cta-content { text-align: center; color: var(--white); }
.cta-content h2 { font-size: clamp(1.8rem,4vw,3rem); margin-bottom: 14px; color: var(--white); }
.cta-content p  { font-size: 1.1rem; opacity: 0.9; margin-bottom: 40px; max-width: 520px; margin-left: auto; margin-right: auto; }

.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-buttons .btn small { display: block; font-size: 0.75rem; font-weight: 500; opacity: 0.85; margin-top: 1px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #1a1a2e; color: rgba(255,255,255,0.75); padding: 60px 0 0; }

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo { height: 60px; width: auto; margin-bottom: 16px; filter: brightness(0) invert(1) opacity(0.85); }
.footer-brand p { font-size: 0.9rem; line-height: 1.6; margin-bottom: 6px; font-style: italic; opacity: 0.7; }
.footer-area    { font-size: 0.85rem; opacity: 0.7; font-style: normal !important; }

.footer h4 { font-family: var(--font-heading); color: var(--white); font-size: 0.95rem; margin-bottom: 18px; letter-spacing: 0.05em; text-transform: uppercase; }

.footer-links nav { display: flex; flex-direction: column; gap: 10px; }
.footer-links a   { color: rgba(255,255,255,0.65); font-size: 0.9rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--teal); }

.footer-contact { display: flex; flex-direction: column; gap: 2px; }

.footer-contact-item { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.65); font-size: 0.9rem; padding: 8px 0; transition: color var(--transition); }
.footer-contact-item:hover { color: var(--teal); }

.footer-social-links { display: flex; gap: 14px; }
.footer-social-links a {
  display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  color: rgba(255,255,255,0.7);
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.footer-social-links a:hover { background: var(--teal); color: var(--white); transform: translateY(-3px); }

.footer-bottom { padding: 20px 0; text-align: center; font-size: 0.82rem; color: rgba(255,255,255,0.4); }

/* ============================================================
   FLOATING WHATSAPP BUTTON
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 998;
  background: #25D366;
  color: var(--white);
  width: 60px; height: 60px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.55); }

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: #333; color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  padding: 6px 14px;
  border-radius: 20px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity var(--transition), transform var(--transition);
  pointer-events: none;
}
.whatsapp-tooltip::after { content: ''; position: absolute; left: 100%; top: 50%; transform: translateY(-50%); border: 6px solid transparent; border-left-color: #333; }
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; transform: translateX(0); }

/* ============================================================
   FADE-IN ANIMATION
   ============================================================ */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .about-layout { gap: 40px; }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 100px 20px 60px; }
  .balloon-3, .balloon-4, .balloon-5 { display: none; }
  .cards-grid, .cards-grid-4 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .about-layout { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { order: -1; }
  .about-logo   { max-width: 240px; margin: 0 auto; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .cta-buttons  { flex-direction: column; align-items: center; }
  .footer-top   { grid-template-columns: 1fr; gap: 32px; }
  .whatsapp-float { bottom: 20px; right: 20px; width: 52px; height: 52px; }
}

@media (max-width: 480px) {
  .hero-cta-group { flex-direction: column; align-items: center; }
  .gallery-grid   { grid-template-columns: 1fr; }
  .social-links   { flex-direction: column; align-items: center; }
}
