/* ============================================
   MIKE'S MINI DONUTS - ADDITIONAL PAGES CSS
   ============================================ */

/* ---------- Header Light (for inner pages) ---------- */
.header-light {
  background: rgba(253, 248, 243, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-soft);
}

.nav-link.active {
  color: var(--color-primary);
}

.nav-link.active::after {
  width: 100%;
}

/* ---------- Page Hero ---------- */
.page-hero {
  padding: 180px 0 100px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-cream-dark) 100%);
}

.page-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.page-hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.5;
}

.page-hero-shape-1 {
  max-width: 500px;
  width: 100%;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 213, 71, 0.3) 0%, transparent 70%);
  top: -200px;
  /* right: -100px; */
  left: 0;
}

.page-hero-shape-2 {
  max-width: 300px;
  width: 100%;
  height: 300px;
  background: radial-gradient(circle, rgba(59, 138, 140, 0.2) 0%, transparent 70%);
  bottom: -100px;
  /* left: -50px; */
  right: 0;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.page-hero-label {
  font-family: var(--font-accent);
  font-size: 1.5rem;
  color: var(--color-accent);
  display: block;
  margin-bottom: var(--space-sm);
  animation: slideUp 0.6s ease forwards;
}

.page-hero-title {
  margin-bottom: var(--space-md);
  animation: slideUp 0.6s ease 0.1s forwards;
  opacity: 0;
}

.page-hero-desc {
  font-size: 1.2rem;
  color: var(--color-text-light);
  animation: slideUp 0.6s ease 0.2s forwards;
  opacity: 0;
}

/* ---------- FAQ Section ---------- */
.faq-section {
  background: white;
}

.faq-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

/* FAQ Sidebar */
.faq-sidebar {
  position: sticky;
  top: 120px;
}

.faq-categories {
  background: var(--color-cream);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.faq-categories-title {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}

.faq-category-btn {
  display: block;
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-smooth);
  margin-bottom: var(--space-xs);
}

.faq-category-btn:hover {
  background: white;
  color: var(--color-primary);
}

.faq-category-btn.active {
  background: var(--color-primary);
  color: white;
}

/* FAQ Contact Card */
.faq-contact-card {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  color: white;
  text-align: center;
}

.faq-contact-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
}

.faq-contact-icon svg {
  width: 28px;
  height: 28px;
  stroke: white;
}

.faq-contact-card h4 {
  color: white;
  margin-bottom: var(--space-sm);
}

.faq-contact-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  margin-bottom: var(--space-md);
}

.faq-contact-card .btn {
  background: white;
  color: var(--color-primary);
}

.faq-contact-card .btn:hover {
  background: var(--color-secondary);
  color: var(--color-text);
}

/* FAQ Content */
.faq-group {
  margin-bottom: var(--space-2xl);
}

.faq-group-title {
  font-size: 1.5rem;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--color-cream);
}

.faq-item {
  background: var(--color-cream);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-sm);
  overflow: hidden;
  transition: all var(--duration-normal) var(--ease-smooth);
}

.faq-item:hover {
  box-shadow: var(--shadow-soft);
}

.faq-item.active {
  box-shadow: var(--shadow-medium);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--space-lg);
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  transition: color var(--duration-fast);
}

.faq-question:hover {
  color: var(--color-primary);
}

.faq-icon {
  width: 24px;
  height: 24px;
  stroke: var(--color-primary);
  stroke-width: 2;
  flex-shrink: 0;
  transition: transform var(--duration-normal) var(--ease-smooth);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration-normal) var(--ease-smooth),
              padding var(--duration-normal) var(--ease-smooth);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-content {
  padding: 0 var(--space-lg) var(--space-lg);
  color: var(--color-text-light);
  line-height: 1.7;
}

.faq-answer-content p {
  padding: 0;
  margin-bottom: var(--space-md);
}

.faq-answer-content p:last-child {
  margin-bottom: 0;
}

/* FAQ Responsive */
@media (max-width: 968px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .faq-sidebar {
    position: static;
  }

  .faq-categories {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
    padding: var(--space-md);
  }

  .faq-categories-title {
    width: 100%;
    margin-bottom: var(--space-sm);
  }

  .faq-category-btn {
    /* width: auto; */
    padding: var(--space-xs) var(--space-md);
    font-size: 0.85rem;
  }

  .faq-contact-card {
    display: none;
  }
}

/* ---------- About Page ---------- */
.about-page-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.about-page-image {
  position: relative;
}

.about-page-image img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-strong);
}

.about-page-image::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 4px dashed var(--color-secondary);
  border-radius: var(--radius-xl);
  z-index: -1;
}

/* Story Section */
.story-section {
  background: var(--color-cream);
}

.story-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.story-content p {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.story-quote {
  font-family: var(--font-accent);
  font-size: 2rem;
  color: var(--color-primary);
  padding: var(--space-xl) 0;
  border-top: 2px solid var(--color-secondary);
  border-bottom: 2px solid var(--color-secondary);
  margin: var(--space-xl) 0;
}

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin: 2.5rem auto;
}

.value-card {
  text-align: center;
  padding: var(--space-xl);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  transition: all var(--duration-normal) var(--ease-smooth);
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-medium);
}

.value-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-md);
  background: var(--color-cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--color-primary);
  stroke-width: 2;
}

.value-card h4 {
  margin-bottom: var(--space-sm);
}

.value-card p {
  color: var(--color-text-muted);
}

@media (max-width: 768px) {
  .values-grid {
    grid-template-columns: 1fr;
  }

  .about-page-hero {
    grid-template-columns: 1fr;
  }
}

/* ---------- Contact Page ---------- */
.contact-section {
  background: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-3xl);
}

.contact-info {
  padding: var(--space-xl);
  background: var(--color-cream);
  border-radius: var(--radius-xl);
}

.contact-info-item {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  background: var(--color-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 24px;
  height: 24px;
  stroke: white;
}

.contact-info-text h4 {
  font-size: 1.1rem;
  margin-bottom: var(--space-xs);
}

.contact-info-text p,
.contact-info-text a {
  color: var(--color-text-light);
  text-decoration: none;
  transition: color var(--duration-fast);
}

.contact-info-text a:hover {
  color: var(--color-primary);
}

/* Contact Form */
.contact-form {
  padding: var(--space-xl);
  background: var(--color-cream);
  border-radius: var(--radius-xl);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: var(--space-md);
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  background: white;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  transition: all var(--duration-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(59, 138, 140, 0.1);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-text-muted);
}

.form-submit {
  margin-top: var(--space-md);
}

.form-submit .btn {
  width: 100%;
  justify-content: center;
  padding: var(--space-md) var(--space-xl);
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

/* ---------- Packages/Pricing Page ---------- */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.package-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: all var(--duration-normal) var(--ease-smooth);
  position: relative;
  overflow: hidden;
}

.package-card.featured {
  background: var(--color-primary);
  color: white;
  transform: scale(1.05);
  box-shadow: var(--shadow-strong);
}

.package-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: 20px;
  right: -35px;
  background: var(--color-secondary);
  color: var(--color-text);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 40px;
  transform: rotate(45deg);
}

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-strong);
}

.package-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.package-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto var(--space-md);
  background: var(--color-cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.package-card.featured .package-icon {
  background: rgba(255, 255, 255, 0.2);
}

.package-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--color-primary);
}

.package-card.featured .package-icon svg {
  stroke: white;
}

.package-name {
  font-size: 1.25rem;
  margin-bottom: var(--space-xs);
}

.package-card.featured .package-name {
  color: white;
}

.package-desc {
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
}

.package-card.featured .package-desc {
  color: rgba(255, 255, 255, 0.8);
}

.package-price {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}

.package-card.featured .package-price {
  color: var(--color-secondary);
}

.package-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-text-muted);
}

.package-card.featured .package-price span {
  color: rgba(255, 255, 255, 0.8);
}

.package-features {
  list-style: none;
  margin: var(--space-lg) 0;
  text-align: left;
}

.package-features li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--color-cream);
}

.package-card.featured .package-features li {
  border-color: rgba(255, 255, 255, 0.2);
}

.package-features li svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-accent);
  flex-shrink: 0;
}

.package-card.featured .package-features li svg {
  stroke: var(--color-secondary);
}

.package-card .btn {
  width: 100%;
  justify-content: center;
}

.package-card.featured .btn {
  background: white;
  color: var(--color-primary);
}

.package-card.featured .btn:hover {
  background: var(--color-secondary);
  color: var(--color-text);
}

@media (max-width: 968px) {
  .packages-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .package-card.featured {
    transform: none;
  }

  .package-card.featured:hover {
    transform: translateY(-10px);
  }
}

/* ---------- Button Variations ---------- */
.btn-sm {
  padding: var(--space-xs) var(--space-md);
  font-size: 0.9rem;
}

.btn-lg {
  padding: var(--space-md) var(--space-xl);
  font-size: 1.1rem;
}

/* ---------- Breadcrumbs ---------- */
.breadcrumbs {
  padding: var(--space-md) 0;
  background: var(--color-cream-dark);
}

.breadcrumbs-list {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  list-style: none;
  font-size: 0.9rem;
}

.breadcrumbs-list li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.breadcrumbs-list li::after {
  content: '/';
  color: var(--color-text-muted);
}

.breadcrumbs-list li:last-child::after {
  display: none;
}

.breadcrumbs-list a {
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color var(--duration-fast);
}

.breadcrumbs-list a:hover {
  color: var(--color-primary);
}

.breadcrumbs-list li:last-child {
  color: var(--color-text);
  font-weight: 500;
}

/* ---------- Events Grid ---------- */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin: 2.5rem auto;
}

.event-card {
  background: var(--color-cream);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: all var(--duration-normal) var(--ease-smooth);
}

.event-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-medium);
}

.event-card-icon {
  width: 60px;
  height: 60px;
  background: white;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  box-shadow: var(--shadow-soft);
  transition: all var(--duration-normal) var(--ease-bounce);
}

.event-card:hover .event-card-icon {
  background: var(--color-primary);
}

.event-card:hover .event-card-icon svg {
  stroke: white;
}

.event-card-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--color-primary);
  stroke-width: 2;
}

.event-card-title {
  font-size: 1.35rem;
  margin-bottom: var(--space-sm);
}

.event-card-desc {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
  font-size: 0.95rem;
}

.event-card-features {
  list-style: none;
  margin-bottom: var(--space-lg);
}

.event-card-features li {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  padding: var(--space-xs) 0;
  padding-left: var(--space-md);
  position: relative;
}

.event-card-features li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--color-primary);
}

@media (max-width: 968px) {
  .events-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .events-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Gallery Page Grid ---------- */
.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.gallery-page-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
}

.gallery-page-item img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-smooth);
}

.gallery-page-item:hover img {
  transform: scale(1.1);
}

.gallery-page-item .gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: var(--space-lg);
  opacity: 0;
  transition: opacity var(--duration-normal);
}

.gallery-page-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-page-item .gallery-caption {
  font-family: var(--font-accent);
  font-size: 1.25rem;
  color: white;
}

/* Gallery Filter Buttons */
.gallery-filter-btn {
  padding: var(--space-sm) var(--space-lg);
  background: var(--color-cream);
  border: none;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text);
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-smooth);
}

.gallery-filter-btn:hover {
  background: var(--color-cream-dark);
}

.gallery-filter-btn.active {
  background: var(--color-primary);
  color: white;
}

@media (max-width: 968px) {
  .gallery-page-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 576px) {
  .gallery-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---------- Back to Top ---------- */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--color-primary);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--duration-normal) var(--ease-smooth);
  z-index: 999;
  box-shadow: var(--shadow-medium);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--color-primary-dark);
  transform: translateY(-5px);
}

.back-to-top svg {
  width: 24px;
  height: 24px;
  stroke: white;
  stroke-width: 2;
}
