/* ==========================================================================
   Party Pixel — static styles
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --bg: #ffffff;
  --fg: #111111;
  --muted: #717182;
  --muted-bg: #F7F7F7;
  --border: #EAEAEA;
  --accent: #C9A96E;
  --radius-sm: 16px;
  --radius-md: 20px;
  --radius-lg: 24px;
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

* { box-sizing: border-box; }

html { font-size: 16px; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  margin: 0;
  line-height: 1.2;
}

p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

button {
  font: inherit;
  cursor: pointer;
  background: none;
  border: none;
  color: inherit;
}

input, textarea, select {
  font: inherit;
  color: inherit;
}

/* Layout ----------------------------------------------------------------- */
.container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 1024px) {
  .container { padding: 0 3rem; }
}

.section { padding: 5rem 0; }
.section-lg { padding: 5rem 0; }
@media (min-width: 1024px) {
  .section-lg { padding: 8rem 0; }
}

.bg-muted { background: var(--muted-bg); }

.text-muted { color: var(--muted); }
.text-accent { color: var(--accent); }
.text-center { text-align: center; }

/* Header ----------------------------------------------------------------- */
.header {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
}
.header .container { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img {
  height: 120px;
  width: 300px;
  object-fit: contain;
}
.nav-links {
  display: none;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  color: var(--muted);
  transition: color 0.3s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--fg);
}
.nav-toggle {
  display: flex;
  padding: 0.5rem;
}
.nav-toggle svg { width: 24px; height: 24px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle.open .icon-menu { display: none; }
.nav-toggle.open .icon-close { display: block; }
.nav-mobile {
  display: none;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  flex-direction: column;
  gap: 1rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  color: var(--muted);
}
.nav-mobile a.active { color: var(--fg); }

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .nav-toggle { display: none; }
  .nav-mobile { display: none !important; }
}

@media (max-width: 767px) {
  .nav-logo img { height: 70px; width: 180px; }
}

/* Footer ----------------------------------------------------------------- */
.footer {
  background: var(--muted-bg);
  border-top: 1px solid var(--border);
  margin-top: 6rem;
}
.footer .container { padding-top: 4rem; padding-bottom: 4rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(4, 1fr); }
}
.footer img {
  height: 120px;
  width: 300px;
  object-fit: contain;
  margin-bottom: 1rem;
}
.footer h4 { margin-bottom: 1rem; }
.footer ul li { margin-bottom: 0.5rem; font-size: 0.875rem; }
.footer ul li a { color: var(--muted); transition: color 0.3s; }
.footer ul li a:hover { color: var(--fg); }
.footer ul li.icon { display: flex; align-items: center; gap: 0.5rem; color: var(--muted); }
.footer .brand-copy { color: var(--muted); font-size: 0.875rem; line-height: 1.6; }
.footer .social { display: flex; gap: 1rem; margin-top: 1.5rem; }
.footer .social a { color: var(--muted); transition: color 0.3s; }
.footer .social a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border);
  margin-top: 3rem;
  padding-top: 2rem;
  text-align: center;
  font-size: 0.875rem;
  color: var(--muted);
}

/* Buttons ---------------------------------------------------------------- */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 12px;
  border: 2px solid var(--fg);
  background: var(--fg);
  color: #fff;
  transition: all 0.3s;
  cursor: pointer;
  font-weight: 500;
  text-align: center;
}
.btn:hover {
  background: var(--accent);
  border-color: var(--accent);
}
.btn-outline {
  background: transparent;
  color: var(--fg);
}
.btn-outline:hover {
  background: var(--fg);
  color: #fff;
  border-color: var(--fg);
}
.btn-block { width: 100%; display: block; }

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.btn-group.center { justify-content: center; }

/* Headings --------------------------------------------------------------- */
.hero-title {
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
@media (min-width: 1024px) {
  .hero-title { font-size: 3.75rem; }
}
.section-title {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .section-title { font-size: 3rem; }
}
.lead {
  font-size: 1.25rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 2rem;
}
.prose p {
  font-size: 1.125rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.section-head {
  text-align: center;
  margin-bottom: 4rem;
}
.section-head p {
  font-size: 1.125rem;
  color: var(--muted);
  margin-top: 0.5rem;
}

/* Grids ------------------------------------------------------------------ */
.grid-2, .grid-3, .grid-4 {
  display: grid;
  gap: 2rem;
}
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }

@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid-2 { gap: 3rem; grid-template-columns: repeat(2, 1fr); }
  .grid-2.wide-gap { gap: 5rem; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.grid-2.center { align-items: center; }

/* Framed image (luxury double-border look) ------------------------------- */
.frame {
  border: 8px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.frame-sm {
  border-width: 6px;
  border-radius: var(--radius-md);
}
.frame img, .frame-sm img {
  width: 100%;
  display: block;
}

/* Cards ------------------------------------------------------------------ */
.card {
  background: #fff;
  border: 6px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: border-color 0.3s, box-shadow 0.3s;
  box-shadow: var(--shadow-lg);
}
.card:hover { border-color: var(--accent); }
.card-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 9999px;
  background: var(--muted-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.card-icon.center { margin-left: auto; margin-right: auto; }
.card-icon svg { width: 28px; height: 28px; color: var(--accent); }
.card-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}
.card-text { color: var(--muted); line-height: 1.6; }

/* Tile (image + title below) -------------------------------------------- */
.tile { cursor: pointer; }
.tile .frame-sm { transition: border-color 0.3s; }
.tile:hover .frame-sm { border-color: var(--accent); }
.tile img {
  height: 280px;
  width: 100%;
  object-fit: cover;
}
.tile h3 {
  font-size: 1.5rem;
  text-align: center;
  margin-top: 1rem;
}

/* Testimonial ------------------------------------------------------------ */
.testimonial-stars {
  color: var(--accent);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.testimonial-text {
  color: var(--muted);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.testimonial-name { font-weight: 500; color: var(--fg); }
.testimonial-event { font-size: 0.875rem; color: var(--muted); }

/* CTA panel -------------------------------------------------------------- */
.cta-dark {
  background: #111;
  border: 8px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  text-align: center;
  color: #fff;
}
@media (min-width: 1024px) {
  .cta-dark { padding: 5rem; }
}
.cta-dark h2 { color: #fff; margin-bottom: 1.5rem; font-size: 2.25rem; }
@media (min-width: 1024px) {
  .cta-dark h2 { font-size: 3rem; }
}
.cta-dark p { color: rgba(255, 255, 255, 0.8); font-size: 1.25rem; margin-bottom: 2rem; }
.cta-dark .btn {
  background: #fff;
  color: #111;
  border-color: #fff;
}
.cta-dark .btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* Packages --------------------------------------------------------------- */
.pkg-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 5rem;
}
@media (min-width: 768px) {
  .pkg-grid { grid-template-columns: repeat(3, 1fr); }
}
.pkg {
  position: relative;
  background: #fff;
  border: 8px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: border-color 0.3s;
  box-shadow: var(--shadow-lg);
}
.pkg:hover { border-color: var(--accent); }
.pkg.highlighted { border-color: var(--accent); }
@media (min-width: 768px) {
  .pkg.highlighted { transform: scale(1.05); }
}
.pkg-badge {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
}
.pkg-head { text-align: center; margin-bottom: 2rem; }
.pkg-name {
    font-size: 1.6rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
    margin-bottom: 1rem;
}.pkg-price {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: var(--accent);
}
.pkg ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
.pkg ul li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  color: var(--muted);
}
.pkg ul li svg {
  width: 20px; height: 20px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Add-ons list ----------------------------------------------------------- */
.addon-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .addon-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .addon-grid { grid-template-columns: repeat(3, 1fr); } }
.addon {
  background: #fff;
  border: 6px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: border-color 0.3s;
  box-shadow: var(--shadow-lg);
}
.addon:hover { border-color: var(--accent); }
.addon-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--accent);
}

.included-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) { .included-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .included-grid { grid-template-columns: repeat(4, 1fr); } }
.included {
  background: #fff;
  border: 6px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: border-color 0.3s;
  box-shadow: var(--shadow-lg);
}
.included:hover { border-color: var(--accent); }
.included svg {
  width: 24px; height: 24px;
  color: var(--accent);
  flex-shrink: 0;
}

/* Gallery ---------------------------------------------------------------- */
.filter-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
}
.filter {
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  border: 2px solid var(--border);
  background: transparent;
  color: var(--fg);
  transition: all 0.3s;
}
.filter:hover { border-color: var(--fg); }
.filter.active {
  background: var(--fg);
  color: #fff;
  border-color: var(--fg);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
.gallery-item { cursor: pointer; }
.gallery-item .frame-sm { transition: border-color 0.3s; }
.gallery-item:hover .frame-sm { border-color: var(--accent); }
.gallery-item img {
  height: 350px;
  width: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item h3 { font-size: 1.25rem; margin-top: 1rem; }
.gallery-item .cat { font-size: 0.875rem; color: var(--accent); }

.gallery-preview {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .gallery-preview { grid-template-columns: repeat(3, 1fr); } }
.gallery-preview .frame-sm { transition: border-color 0.3s; }
.gallery-preview .frame-sm:hover { border-color: var(--accent); }
.gallery-preview img {
  height: 300px;
  width: 100%;
  object-fit: cover;
}

/* FAQ -------------------------------------------------------------------- */
.faq-list {
  max-width: 56rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.faq {
  background: #fff;
  border: 6px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.3s;
  box-shadow: var(--shadow-lg);
}
.faq:hover { border-color: var(--accent); }
.faq-q {
  width: 100%;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  gap: 2rem;
}
.faq-q h3 {
  font-size: 1.25rem;
  flex: 1;
}
.faq-q svg {
  width: 24px; height: 24px;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq.open .faq-q svg { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq.open .faq-a { max-height: 600px; }
.faq-a-inner { padding: 0 2rem 1.5rem; }
.faq-a-inner p { color: var(--muted); line-height: 1.7; }

/* Contact ---------------------------------------------------------------- */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--muted-bg);
  border: 2px solid var(--border);
  border-radius: 9999px;
  margin-top: 1.5rem;
}
.pill svg { width: 20px; height: 20px; color: var(--accent); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: 2fr 1fr; }
}

.form-wrap {
  background: #fff;
  border: 8px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}
@media (min-width: 1024px) {
  .form-wrap { padding: 3rem; }
}
.form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .form-row { grid-template-columns: repeat(2, 1fr); }
}
.form label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--fg);
  font-weight: 500;
}
.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 3px solid var(--border);
  border-radius: 12px;
  background: #fff;
  outline: none;
  transition: border-color 0.3s;
}
.form textarea { resize: none; }
.form input:focus,
.form select:focus,
.form textarea:focus {
  border-color: var(--accent);
}
.form .btn { padding: 1rem 2rem; }
.form-note {
  font-size: 0.875rem;
  color: var(--muted);
  text-align: center;
}
.form-error {
  background: #fef2f2;
  border: 2px solid #fecaca;
  color: #991b1b;
  padding: 0.75rem 1rem;
  border-radius: 12px;
}

.thank-you {
  text-align: center;
  padding: 3rem 0;
}
.thank-you .check-circle {
  width: 5rem;
  height: 5rem;
  border-radius: 9999px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.thank-you .check-circle svg {
  width: 2.5rem; height: 2.5rem; color: #fff;
}
.thank-you h3 { font-size: 1.875rem; margin-bottom: 1rem; }

.info-stack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.info-card {
  background: #fff;
  border: 6px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}
.info-card .card-icon { margin-bottom: 1rem; }
.info-card h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.info-card p { color: var(--muted); margin-bottom: 0.25rem; }
.info-card.dark {
  background: #111;
  color: #fff;
}
.info-card.dark h3 { color: #fff; }
.info-card.dark p { color: rgba(255,255,255,0.8); font-size: 0.875rem; line-height: 1.6; }

.areas-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 56rem;
  margin: 0 auto;
}
@media (min-width: 768px) { .areas-grid { grid-template-columns: repeat(3, 1fr); } }
.area {
  background: #fff;
  border: 4px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem 1.5rem;
  color: var(--fg);
  text-align: center;
}

/* Mission quote ---------------------------------------------------------- */
.mission {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}
.mission h2 { margin-bottom: 2rem; }
.mission-quote {
  font-size: 1.5rem;
  font-style: italic;
  color: var(--muted);
  line-height: 1.7;
}

/* Utilities -------------------------------------------------------------- */
.max-w-2xl { max-width: 42rem; margin-left: auto; margin-right: auto; }
.max-w-4xl { max-width: 56rem; margin-left: auto; margin-right: auto; }
.mt-12 { margin-top: 3rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }

.story-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
  margin-top: 1.5rem;
}
