/* Limelight Event Co. — Soft, modern, playful design system */
:root {
  --primary: #7B916D;
  --primary-dark: #5F7354;
  --primary-light: #CADBBE;
  --bg: #F7F9F5;
  --bg-soft: #EEF3EA;
  --white: #FFFFFF;
  --text: #2A3328;
  --text-soft: #5A6656;
  --accent: #A8C09A;
  --shadow: 0 8px 30px rgba(123, 145, 109, 0.12);
  --shadow-hover: 0 12px 40px rgba(123, 145, 109, 0.18);
  --radius: 16px;
  --radius-sm: 10px;
  --font-heading: "Playfair Display", Georgia, serif;
  --font-body: "Nunito", system-ui, -apple-system, sans-serif;
  --transition: 0.25s ease;
}

*,
*::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(--bg);
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

/* ========== Typography ========== */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.25;
  color: var(--text);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.6rem); }

p {
  color: var(--text-soft);
  margin-bottom: 1rem;
}

/* ========== Layout ========== */
.container {
  width: min(1120px, 92%);
  margin-inline: auto;
}

.section {
  padding: 4.5rem 0;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.section-header p {
  font-size: 1.1rem;
  margin-top: 0.75rem;
}

/* ========== Header / Nav ========== */
.site-header {
  background: var(--white);
  border-bottom: 1px solid rgba(123, 145, 109, 0.12);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.92);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
  gap: 1.5rem;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-img {
  height: 52px;
  width: auto;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width var(--transition);
  border-radius: 2px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  background: var(--primary);
  color: white !important;
  padding: 0.55rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: background var(--transition), transform var(--transition);
}

.nav-cta:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.nav-cta::after {
  display: none !important;
}

/* Mobile menu */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  color: var(--primary);
}

.menu-toggle svg {
  width: 28px;
  height: 28px;
}

/* ========== Hero ========== */
.hero {
  background: linear-gradient(160deg, var(--bg-soft) 0%, var(--white) 50%, var(--bg) 100%);
  padding: 5rem 0 4.5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -60px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(202, 219, 190, 0.45) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-content h1 {
  margin-bottom: 1.1rem;
  color: var(--text);
}

.hero-content .tagline {
  font-size: 1.2rem;
  color: var(--text-soft);
  margin-bottom: 1.75rem;
  max-width: 440px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 18px rgba(123, 145, 109, 0.35);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(123, 145, 109, 0.4);
  color: white;
}

.btn-secondary {
  background: white;
  color: var(--primary);
  border: 2px solid var(--primary-light);
}

.btn-secondary:hover {
  border-color: var(--primary);
  background: var(--bg-soft);
  color: var(--primary-dark);
}

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

.hero-logo-wrap {
  background: white;
  border-radius: 28px;
  padding: 2.5rem;
  box-shadow: var(--shadow);
  max-width: 340px;
  width: 100%;
  position: relative;
}

.hero-logo-wrap::after {
  content: "✦";
  position: absolute;
  top: 18px;
  right: 22px;
  color: var(--primary-light);
  font-size: 1.4rem;
  opacity: 0.8;
}

.hero-logo-wrap img {
  width: 100%;
  height: auto;
}

/* ========== Feature cards ========== */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.feature-card {
  background: white;
  border-radius: var(--radius);
  padding: 1.9rem 1.6rem;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(123, 145, 109, 0.08);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--bg-soft);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.1rem;
  color: var(--primary);
}

.feature-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.feature-card p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* ========== Services page ========== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.75rem;
}

.service-card {
  background: white;
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.service-card .icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.service-card h3 {
  margin-bottom: 0.6rem;
}

.service-card p {
  flex-grow: 1;
  font-size: 0.98rem;
}

/* ========== Contact / Form ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

.contact-info {
  background: white;
  border-radius: var(--radius);
  padding: 2.25rem;
  box-shadow: var(--shadow);
}

.contact-info h2 {
  margin-bottom: 1rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  margin-bottom: 1.4rem;
}

.contact-item .icon {
  width: 40px;
  height: 40px;
  background: var(--bg-soft);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
  font-size: 1.1rem;
}

.contact-item strong {
  display: block;
  font-size: 0.85rem;
  color: var(--text-soft);
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.contact-item a,
.contact-item span {
  color: var(--text);
  font-weight: 600;
}

.form-card {
  background: white;
  border-radius: var(--radius);
  padding: 2.25rem;
  box-shadow: var(--shadow);
}

.form-card h2 {
  margin-bottom: 0.4rem;
}

.form-card > p {
  margin-bottom: 1.75rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid rgba(123, 145, 109, 0.25);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--bg);
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(123, 145, 109, 0.15);
  background: white;
}

.form-group textarea {
  min-height: 130px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-note {
  font-size: 0.85rem;
  color: var(--text-soft);
  margin-top: 1rem;
  text-align: center;
}

/* ========== Footer ========== */
.site-footer {
  background: var(--text);
  color: rgba(255, 255, 255, 0.85);
  padding: 3.5rem 0 2rem;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand .logo-text {
  color: var(--primary-light);
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  display: block;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  max-width: 280px;
}

.footer-col h4 {
  color: white;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.55rem;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
}

.footer-col a:hover {
  color: var(--primary-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
}

/* ========== Utility ========== */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }

.badge {
  display: inline-block;
  background: var(--bg-soft);
  color: var(--primary-dark);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  letter-spacing: 0.03em;
  margin-bottom: 1rem;
}

/* ========== Responsive ========== */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content .tagline {
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
  }

  .hero-logo-wrap {
    max-width: 260px;
    margin-inline: auto;
  }

  .features {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 720px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    align-items: stretch;
    padding: 1.25rem 1.25rem 1.75rem;
    gap: 0.9rem;
    border-bottom: 1px solid rgba(123, 145, 109, 0.12);
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 1.15rem 1.2rem;
    width: 100%;
    font-size: 1.1rem;
    border-radius: 12px;
    text-align: left;
  }

  .nav-links a:hover,
  .nav-links a.active {
    background: var(--bg-soft);
  }

  .nav-links a::after {
    display: none; /* cleaner look on mobile */
  }

  .nav-cta {
    margin-top: 0.6rem;
    text-align: center;
    padding: 1.15rem 1.25rem !important;
    font-size: 1.08rem !important;
    border-radius: 12px !important;
  }

  .menu-toggle {
    display: block;
  }

  .logo-text {
    display: none;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 3.25rem 0;
  }
}

/* Subtle sparkle animation for playful feel */
@keyframes soft-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.hero-logo-wrap {
  animation: soft-float 5s ease-in-out infinite;
}
