/* ============================================================
   Jacksonville Party Rentals — Demo Site
   AI Cyber Consulting, LLC | aicyberconsulting.io
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&family=Nunito:wght@400;600;700;800&display=swap');

/* === VARIABLES === */
:root {
  --blue:       #0b3a7a;
  --blue-light: #1352a8;
  --gold:       #fbbf24;
  --gold-dark:  #d97706;
  --white:      #ffffff;
  --off-white:  #f8f9ff;
  --dark:       #0d1b2e;
  --gray:       #64748b;
  --shadow:     0 4px 24px rgba(11,58,122,0.15);
  --radius:     16px;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', sans-serif;
  background: var(--off-white);
  color: var(--dark);
  overflow-x: hidden;
}

/* === DEMO BANNER === */
#demo-banner {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--gold);
  color: var(--blue);
  text-align: center;
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}
#demo-banner a {
  color: var(--blue);
  text-decoration: underline;
  font-weight: 800;
}

/* === NAVBAR === */
#navbar {
  position: sticky;
  top: 37px;
  z-index: 999;
  background: var(--blue);
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo img {
  height: 60px;
  width: auto;
  animation: logoSway 3s ease-in-out infinite;
  transform-origin: bottom center;
}
@keyframes logoSway {
  0%   { transform: rotate(0deg); }
  20%  { transform: rotate(-4deg); }
  50%  { transform: rotate(5deg); }
  75%  { transform: rotate(-3deg); }
  100% { transform: rotate(0deg); }
}
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.25s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

/* hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* === HERO === */
#home {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 60%, #1a6fd4 100%);
  color: var(--white);
  text-align: center;
  padding: 100px 24px 80px;
  position: relative;
  overflow: hidden;
}
#home::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(251,191,36,0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.07) 0%, transparent 40%);
  pointer-events: none;
}

/* confetti dots */
.balloon {
  position: absolute;
  border-radius: 50%;
  opacity: 0.7;
  animation: floatDot linear infinite;
  pointer-events: none;
}
@keyframes floatDot {
  0%   { transform: translateY(0) rotate(0deg); opacity: 0.7; }
  100% { transform: translateY(-120vh) rotate(720deg); opacity: 0; }
}

.hero-eyebrow {
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  animation: fadeUp 0.6s ease both;
}
.hero-title {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 1.05;
  margin-bottom: 20px;
  animation: fadeUp 0.7s ease both;
}
.hero-title span { color: var(--gold); }
.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  font-weight: 600;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 40px;
  animation: fadeUp 0.8s ease both;
}
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--blue);
  font-family: 'Fredoka One', cursive;
  font-size: 1.2rem;
  padding: 16px 42px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(251,191,36,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
  animation: fadeUp 0.9s ease both, pulse 2.5s ease-in-out 1.5s infinite;
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 10px 32px rgba(251,191,36,0.55);
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(251,191,36,0.45); }
  50%       { box-shadow: 0 6px 40px rgba(251,191,36,0.75); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 64px;
  flex-wrap: wrap;
  animation: fadeUp 1s ease both;
}
.hero-stat strong {
  display: block;
  font-family: 'Fredoka One', cursive;
  font-size: 2.2rem;
  color: var(--gold);
}
.hero-stat span {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.85;
}

/* === SECTION SHARED === */
section { padding: 80px 24px; }
.section-label {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 8px;
}
.section-title {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(2rem, 5vw, 3rem);
  text-align: center;
  color: var(--blue);
  margin-bottom: 12px;
}
.section-sub {
  text-align: center;
  color: var(--gray);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto 52px;
  font-weight: 600;
}
.container { max-width: 1100px; margin: 0 auto; }

/* === INVENTORY === */
#inventory { background: var(--white); }

.inv-category { margin-bottom: 64px; }
.inv-category-title {
  font-family: 'Fredoka One', cursive;
  font-size: 1.7rem;
  color: var(--blue);
  margin-bottom: 24px;
  padding-left: 16px;
  border-left: 5px solid var(--gold);
}

.inv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}

.inv-card {
  background: var(--off-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
  opacity: 0;
  transform: translateY(24px);
}
.inv-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.25s;
}
.inv-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 12px 36px rgba(11,58,122,0.2);
}

.inv-photo {
  width: 100%;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  position: relative;
}
.inv-photo::after {
  content: '📸 Photo Here';
  position: absolute;
  bottom: 8px;
  right: 10px;
  font-size: 0.65rem;
  background: rgba(0,0,0,0.35);
  color: #fff;
  padding: 2px 7px;
  border-radius: 20px;
  letter-spacing: 0.05em;
}

/* tent colors */
.ph-tent   { background: linear-gradient(135deg, #0b3a7a, #1352a8); }
/* table colors */
.ph-table  { background: linear-gradient(135deg, #1a5276, #2980b9); }
/* bounce colors */
.ph-bounce { background: linear-gradient(135deg, #7b2d8b, #e74c3c); }

.inv-card-body { padding: 16px; }
.inv-card-name {
  font-family: 'Fredoka One', cursive;
  font-size: 1.1rem;
  color: var(--blue);
  margin-bottom: 4px;
}
.inv-card-desc {
  font-size: 0.85rem;
  color: var(--gray);
  font-weight: 600;
}
.inv-card-tag {
  display: inline-block;
  margin-top: 10px;
  background: var(--gold);
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
}

/* === ABOUT === */
#about {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  color: var(--white);
}
#about .section-title { color: var(--white); }
#about .section-sub { color: rgba(255,255,255,0.75); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}
.about-photo-block {
  background: rgba(255,255,255,0.1);
  border: 2px dashed rgba(251,191,36,0.5);
  border-radius: var(--radius);
  height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(255,255,255,0.6);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.about-photo-block .big-icon { font-size: 3rem; }
.about-text h3 {
  font-family: 'Fredoka One', cursive;
  font-size: 1.9rem;
  margin-bottom: 16px;
  color: var(--gold);
}
.about-text p {
  font-size: 1rem;
  line-height: 1.75;
  opacity: 0.9;
  margin-bottom: 16px;
}
.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.badge {
  background: rgba(251,191,36,0.2);
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 20px;
  letter-spacing: 0.06em;
}

/* === CONTACT === */
#contact { background: var(--off-white); }
.contact-wrap {
  max-width: 700px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 48px 40px;
}
.contact-info {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  justify-content: center;
}
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--blue);
  font-size: 0.95rem;
}
.contact-info-item .icon {
  font-size: 1.3rem;
}

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--blue);
  margin-bottom: 6px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  transition: border-color 0.2s;
  background: var(--off-white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue-light);
  background: var(--white);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group textarea { resize: vertical; min-height: 120px; }
.btn-submit {
  width: 100%;
  background: var(--blue);
  color: var(--white);
  font-family: 'Fredoka One', cursive;
  font-size: 1.2rem;
  padding: 16px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  letter-spacing: 0.05em;
}
.btn-submit:hover {
  background: var(--blue-light);
  transform: translateY(-2px);
}
.service-area-note {
  text-align: center;
  margin-top: 20px;
  font-size: 0.85rem;
  color: var(--gray);
  font-weight: 600;
}

/* === FOOTER === */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.5);
  text-align: center;
  padding: 24px 16px;
  font-size: 0.82rem;
  font-weight: 600;
}
footer a {
  color: var(--gold);
  text-decoration: none;
}
footer a:hover { text-decoration: underline; }

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--blue);
    flex-direction: column;
    padding: 16px 24px 24px;
    gap: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo-block { height: 200px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-wrap { padding: 32px 20px; }
  .hero-stats { gap: 28px; }
  #navbar { top: 34px; }
}
