/**
 * Kolk Catering Styles
 * Gebaseerd op de Restaurant de Kolk Styleguide
 *
 * Design System: Glassmorphism + Dark Theme
 *
 * Note: CSS variabelen (--kolk-*) worden globaal gedefinieerd in het thema (style.css)
 */

/* ==========================================================================
   Hero Section with Background
   ========================================================================== */

.kolk-catering-hero {
  position: relative;
  height: 590px;
}

.kolk-catering-hero-bg {
  height: 570px;
  background-size: cover;
  background-position: center;
}

.kolk-catering-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}

/* SVG Shape Divider */
.kolk-shape-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  z-index: 2;
  padding-bottom: 8.4%;
  margin-bottom: -1px;
}

.kolk-shape-bottom svg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  max-width: 100%;
}

/* ==========================================================================
   Content Section
   ========================================================================== */

.kolk-catering-content {
  position: relative;
  z-index: 5;
  margin-top: -570px;
  padding-top: 2rem;
}

.kolk-catering-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ==========================================================================
   Card Component (.kolk-card)
   Glassmorphism card with blur effect
   ========================================================================== */

.kolk-card {
  border-radius: var(--kolk-radius-lg);
  border: 1px solid rgba(199, 178, 153, 0.2);
  background-color: rgba(42, 47, 56, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px -8px rgba(0, 0, 0, 0.5);
  padding: 2rem;
}

.kolk-card-header {
  margin-bottom: 1.5rem;
  text-align: center;
}

.kolk-card-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--kolk-foreground);
  margin: 0;
  line-height: 1.2;
}

.kolk-card-subtitle {
  font-size: 1.25rem;
  color: var(--kolk-muted-foreground);
  margin-top: 0.5rem;
}

.kolk-card-body {
  color: var(--kolk-card-foreground);
}

.kolk-card-body p {
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.kolk-card-body p:last-child {
  margin-bottom: 0;
}

/* CTA Card (right side) */
.kolk-cta-card {
  align-self: end;
}

.kolk-cta-card .kolk-card-body {
  text-align: center;
}

.kolk-cta-title {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--kolk-foreground);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

/* ==========================================================================
   Button Component (.kolk-btn)
   ========================================================================== */

.kolk-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: var(--kolk-radius);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
}

.kolk-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(199, 178, 153, 0.3);
}

/* Primary Button */
.kolk-btn-primary {
  background-color: var(--kolk-primary);
  color: var(--kolk-primary-foreground);
}

.kolk-btn-primary:hover {
  background-color: #b8a389;
  color: var(--kolk-primary-foreground);
  text-decoration: none;
}

/* Large Button */
.kolk-btn-lg {
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
}

/* Button Icon */
.kolk-btn-icon {
  font-size: 0.875rem;
  transition: transform 0.2s ease;
}

.kolk-btn:hover .kolk-btn-icon {
  transform: translateX(3px);
}

/* ==========================================================================
   Responsive Adjustments
   ========================================================================== */

@media (max-width: 640px) {
  .kolk-catering-hero {
    height: 400px;
  }

  .kolk-catering-hero-bg {
    height: 380px;
  }

  .kolk-catering-content {
    margin-top: -380px;
  }

  .kolk-card {
    padding: 1.5rem;
  }

  .kolk-card-title {
    font-size: 2rem;
  }

  .kolk-card-body p {
    font-size: 1rem;
  }
}

/* ==========================================================================
   Print Styles
   ========================================================================== */

@media print {
  .kolk-catering-hero {
    display: none;
  }

  .kolk-catering-content {
    margin-top: 0;
  }

  .kolk-card {
    border: 1px solid #ccc;
    background: #fff;
    box-shadow: none;
    backdrop-filter: none;
  }
}
