/**
 * Booking Confirmation Page Styles
 * 
 * @package TrekkingInNepal
 */

/* ==========================================================================
   Confirmation Page Layout
   ========================================================================== */

.booking-confirmation-page {
  max-width: 1000px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  min-height: calc(100vh - 400px);
}

@media (min-width: 768px) {
  .booking-confirmation-page {
    padding: 4rem 2rem;
  }
}

/* ==========================================================================
   Header Section
   ========================================================================== */

.confirmation-header {
  text-align: center;
  margin-bottom: 3rem;
}

.confirmation-icon {
  width: 5rem;
  height: 5rem;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(244, 123, 37, 0.1);
  border-radius: 50%;
}

.confirmation-icon .material-symbols-outlined {
  font-size: 3rem;
  color: #f47b25;
}

.confirmation-title {
  font-size: clamp(1.75rem, 4vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin: 0 0 0.5rem 0;
}

.confirmation-subtitle {
  font-size: 1rem;
  color: #5a4a3f;
  margin: 0;
  line-height: 1.6;
}

/* ==========================================================================
   Notice Section
   ========================================================================== */

.confirmation-notice {
  margin-bottom: 2.5rem;
}

.confirmation-notice-content {
  background: white;
  border: 1px solid #e6dfdb;
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.confirmation-notice-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.confirmation-notice-header .material-symbols-outlined {
  color: #f47b25;
  font-size: 1.25rem;
}

.confirmation-notice-header h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0;
}

.confirmation-notice-content p {
  font-size: 0.9375rem;
  color: #5a4a3f;
  line-height: 1.6;
  margin: 0;
}

/* ==========================================================================
   Summary Card
   ========================================================================== */

.confirmation-summary-card {
  background: white;
  border: 1px solid #e6dfdb;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 2.5rem;
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .confirmation-summary-card {
    grid-template-columns: 320px 1fr;
  }
}

.confirmation-summary-image {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
}

@media (min-width: 768px) {
  .confirmation-summary-image {
    height: 100%;
    min-height: 280px;
  }
}

.confirmation-summary-content {
  padding: 1.5rem;
}

@media (min-width: 768px) {
  .confirmation-summary-content {
    padding: 2rem;
  }
}

.confirmation-summary-header {
  margin-bottom: 1.25rem;
}

.confirmation-summary-badge {
  font-size: 0.625rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #f47b25;
  margin: 0 0 0.5rem 0;
}

.confirmation-summary-title {
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin: 0;
  line-height: 1.3;
}

.confirmation-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 1.5rem;
  padding: 1.25rem 0;
  border-top: 1px solid #e6dfdb;
  border-bottom: 1px solid #e6dfdb;
  margin-bottom: 1.25rem;
}

.confirmation-summary-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.confirmation-summary-label {
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #8a7260;
}

.confirmation-summary-value {
  font-size: 0.875rem;
  font-weight: 600;
  color: #181411;
  line-height: 1.4;
}

.confirmation-summary-file {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #181411;
}

.confirmation-summary-file .material-symbols-outlined {
  font-size: 1rem;
  flex-shrink: 0;
}

.confirmation-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
}

.confirmation-summary-total > span:first-child {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #5a4a3f;
}

.confirmation-summary-amount {
  font-size: 1.75rem;
  font-weight: 800;
  color: #f47b25;
}

/* ==========================================================================
   Action Buttons
   ========================================================================== */

.confirmation-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .confirmation-actions {
    flex-direction: row;
  }
}

.confirmation-btn-primary,
.confirmation-btn-secondary {
  flex: 1;
  min-width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 3rem;
  padding: 0 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.confirmation-btn-primary {
  background: linear-gradient(135deg, #f47b25 0%, #ff6b35 100%);
  color: white;
  border: none;
  box-shadow: 0 4px 12px rgba(244, 123, 37, 0.3);
}

.confirmation-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(244, 123, 37, 0.4);
  color: white;
}

.confirmation-btn-secondary {
  background: white;
  color: #181411;
  border: 2px solid #e6dfdb;
}

.confirmation-btn-secondary:hover {
  background: #f8f7f6;
  border-color: #d1c7be;
}

.confirmation-btn-primary .material-symbols-outlined,
.confirmation-btn-secondary .material-symbols-outlined {
  font-size: 1.25rem;
}

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

@media print {
  .confirmation-actions {
    display: none;
  }
  
  .booking-confirmation-page {
    padding: 1rem;
  }
}
