@import url('/base.css');

.page-container {
  flex: 1;
  background: linear-gradient(135deg, #f8f4ff 0%, #e8f4fd 50%, #fff 100%);
  padding: 80px 60px;
  min-height: 80vh;
}

.page-header {
  text-align: center;
  margin-bottom: 60px;
}

.page-eyebrow {
  color: #ff9500;
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 15px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  text-align: center;
}

.page-header h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 4rem;
  font-weight: 900;
  color: #1a1a1a;
  margin-bottom: 20px;
  letter-spacing: -2px;
  background: linear-gradient(135deg, #1a1a1a 0%, #4a4a4a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-header p {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  color: #5a5a5a;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

.cards-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #ff8c00, #ff6b00);
  color: white;
  border: none;
  padding: 14px 30px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  margin: 0 auto 20px;
  box-shadow: 0 8px 25px rgba(255, 107, 0, 0.3);
  transition: all 0.3s ease;
}

.cards-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255, 107, 0, 0.4);
}

.toggle-arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}

.toggle-arrow.open {
  transform: rotate(180deg);
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  max-height: 2000px;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.4s ease, margin 0.4s ease;
  opacity: 1;
}

.grid-container.collapsed {
  max-height: 0;
  opacity: 0;
  margin: 0;
}

.card {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
}

.card h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ff8c00;
  margin-bottom: 15px;
}

.card p {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #5a5a5a;
}

.event-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin: 50px auto 0;
  max-width: 700px;
  background: #f0f0f0;
  border-radius: 14px;
  padding: 6px;
}

.event-tab-btn {
  flex: 1;
  background: none;
  border: none;
  padding: 14px 10px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  color: #888;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.event-tab-btn.active {
  background: linear-gradient(135deg, #ff8c00, #ff6b00);
  color: white;
  box-shadow: 0 4px 16px rgba(255, 107, 0, 0.35);
}

.event-tab-btn:hover:not(.active) {
  color: #ff8c00;
  background: rgba(255, 140, 0, 0.08);
}

.event-panels {
  margin-top: 40px;
}

.event-panel {
  display: none;
  animation: fadeSlideIn 0.35s ease forwards;
}

.event-panel.active {
  display: block;
}

.panel-hero {
  border-radius: 22px;
  padding: 60px 50px;
  color: white;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.panel-hero.wedding {
  background: linear-gradient(135deg, #001a33 0%, #003366 50%, #004080 100%);
}

.panel-hero.corp {
  background: linear-gradient(135deg, #052e2e 0%, #2e7088 50%, #5a9ab5 100%);
}

.panel-hero.party {
  background: linear-gradient(135deg, #3d1a5e 0%, #5b2d8e 60%, #7b3fc0 100%);
}

.panel-hero::before {
  position: absolute;
  right: 50px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 11rem;
  opacity: 0.9;
  pointer-events: none;
}

.panel-hero.wedding::before {
  content: '💍';
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.4)) contrast(3);
}

.panel-hero.corp::before {
  content: '🏢';
}

.panel-hero.party::before {
  content: '🎉';
}

.panel-hero .eyebrow {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 14px;
  opacity: 0.8;
}

.panel-hero h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.6rem;
  font-weight: 900;
  letter-spacing: -1.5px;
  margin-bottom: 18px;
  line-height: 1.15;
}

.panel-hero p {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  line-height: 1.75;
  opacity: 0.88;
  max-width: 520px;
  margin-bottom: 28px;
}

.panel-hero.wedding .eyebrow {
  color: #66aaff;
  opacity: 1;
}

.panel-hero.corp .eyebrow {
  color: #c8dfe0;
  opacity: 1;
}

.btn-hero {
  display: inline-block;
  text-decoration: none !important;
  background: linear-gradient(135deg, #ff8c00, #ff6b00);
  color: white !important;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 36px;
  border-radius: 50px;
  box-shadow: 0 8px 25px rgba(255, 107, 0, 0.4);
  transition: all 0.3s ease;
}

.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 35px rgba(255, 107, 0, 0.5);
}

.hero-btn-group {
  display: flex;
  flex-wrap: wrap;
  margin-top: 50px;
  gap: 14px;
  align-items: center;
}

.btn-hero-outline {
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.55);
  box-shadow: none;
  backdrop-filter: blur(6px);
}

.btn-hero-outline:hover {
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.15);
}

.btn-hero-outline::before {
  content: '';
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-right: 8px;
  vertical-align: middle;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4'/%3E%3Cpolyline points='7 10 12 15 17 10'/%3E%3Cline x1='12' y1='15' x2='12' y2='3'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  margin-bottom: 40px;
}

.detail-card {
  background: white;
  border-radius: 16px;
  padding: 30px 26px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.07);
  border-top: 4px solid #ff8c00;
  transition: all 0.28s ease;
}

.detail-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.detail-card .card-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}

.detail-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.detail-card p {
  font-family: 'Inter', sans-serif;
  font-size: 0.93rem;
  line-height: 1.7;
  color: #5a5a5a;
  margin: 0;
}

#panel-weddings .detail-card {
  border-top-color: #003366;
}

#panel-corporate .detail-card {
  border-top-color: #2e7088;
}

#panel-parties .detail-card {
  border-top-color: #7b3fc0;
}

.cta-strip {
  border-radius: 16px;
  padding: 40px 50px;
  text-align: center;
  color: white;
}

.cta-strip.orange {
  background: linear-gradient(135deg, #001a33 0%, #003366 50%, #004080 100%);
}

.cta-strip.dark {
  background: linear-gradient(135deg, #052e2e 0%, #2e7088 50%, #5a9ab5 100%);
}

.cta-strip.purple {
  background: linear-gradient(135deg, #3d1a5e 0%, #5b2d8e 60%, #7b3fc0 100%);
}

.cta-strip .eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  opacity: 0.85;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.cta-strip.dark .eyebrow {
  color: #c8dfe0;
  opacity: 1;
}

.cta-strip h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 14px;
}

.cta-strip p {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  opacity: 0.92;
  max-width: 520px;
  margin: 0 auto 22px;
  line-height: 1.7;
}

.cta-strip a {
  display: inline-block;
  text-decoration: none !important;
  background: white;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px 34px;
  border-radius: 50px;
  transition: all 0.25s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
}

.cta-strip.orange a {
  color: #003366 !important;
}

.cta-strip.dark a {
  color: #052e2e !important;
}

.cta-strip.purple a {
  color: #3d1a5e !important;
}

.cta-strip a:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.content-section {
  max-width: 1200px;
  margin: 60px auto;
  background: white;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.content-section h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 25px;
  letter-spacing: -1px;
}

.content-section h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #2d3436;
  margin-bottom: 20px;
  margin-top: 30px;
}

.content-section p {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4a4a4a;
  margin-bottom: 20px;
}

.content-section ul {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4a4a4a;
  margin-bottom: 20px;
  padding-left: 30px;
}

.content-section li {
  margin-bottom: 10px;
}

@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 968px) {
  .page-container {
    padding: 60px 30px;
  }
}

@media (max-width: 768px) {
  .page-container {
    padding: 40px 20px;
  }

  .page-header h1 {
    font-size: 2.5rem;
  }

  .event-tabs {
    max-width: 100%;
  }

  .event-tab-btn {
    font-size: 0.75rem;
    padding: 11px 4px;
  }

  .panel-hero {
    padding: 36px 24px;
  }

  .panel-hero::before {
    display: block;
    font-size: 5rem;
    right: 16px;
    top: 50px;
    transform: none;
    opacity: 0.85;
  }

  .panel-hero h2 {
    font-size: 1.5rem;
    letter-spacing: 0.5px;
    max-width: 65%;
  }

  .panel-hero p {
    font-size: 0.9rem;
  }

  .panel-hero .eyebrow {
    font-size: 0.75rem;
  }

  .cta-strip {
    padding: 32px 24px;
  }

  .cta-strip h3 {
    font-size: 1.7rem;
  }

  .content-section {
    padding: 25px;
  }
}

@media (max-width: 480px) {
  .page-header h1 {
    font-size: 2rem;
  }

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