/* ===== Ice Awakening – Public Styles ===== */
:root {
  --primary:    #15c8dc;
  --primary-dk: #2aa3c1;
  --accent:     #0de0f7;
  --bg:         #ffffff;
  --text:       #333333;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #ffffff;
  color: var(--text);
}

/* Navbar */
.navbar { background: #fff; border-bottom: 2px solid var(--primary); padding: 10px 0; box-shadow: 0 2px 8px rgba(21,200,220,.12); }
.navbar .container { display: flex; align-items: center; justify-content: space-between; padding-left: 10px; padding-right: 24px; }
.navbar-brand { text-decoration: none; display: flex; align-items: center; margin-left: 0; }
.navbar-brand img { height: 70px; width: auto; }
.navbar-back { font-size: 1.05rem; color: #006699; text-decoration: none; font-weight: 700; display: flex; align-items: center; gap: 8px; }
.navbar-back:hover { color: var(--primary-dk); }

/* Hero */
.hero {
  background: #003360;
  color: #fff;
  padding: 50px 20px;
  text-align: center;
}
.hero h1 { font-size: 2.4rem; margin: 0 0 10px; font-weight: 700; color: #fff !important; }
.hero .lead { font-size: 1.1rem; color: rgba(255,255,255,.85); margin: 0; }

/* Workshop Cards */
.workshop-card {
  border: none;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(21, 200, 220, .12);
  transition: transform .2s, box-shadow .2s;
  overflow: hidden;
  background: #fff;
}
.workshop-card:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(21, 200, 220, .22); }

.card-img-top { height: 200px; object-fit: cover; }
.card-img-placeholder {
  height: 160px;
  background: #f0f9fb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

.workshop-meta { border-top: 1px solid #eee; padding-top: 12px; }
.meta-item { display: flex; align-items: center; gap: 7px; font-size: .88rem; color: #555; margin-bottom: 5px; }
.meta-item i { color: #006699; width: 16px; }

.price { font-size: 1.5rem; font-weight: 700; color: #006699; }

/* Buttons */
.btn-primary { background: #006699; border: none; border-radius: 8px; padding: 9px 22px; font-weight: 600; color: #fff; transition: background .2s, box-shadow .2s; }
.btn-primary:hover { background: #003360; box-shadow: 0 4px 14px rgba(0,102,153,.35); }

/* Booking Form */
.booking-section { background: #fff; border-radius: 16px; padding: 32px; box-shadow: 0 4px 20px rgba(21, 200, 220, .1); }
.booking-section h2 { color: var(--primary-dk); border-bottom: 3px solid var(--primary); padding-bottom: 10px; }

.form-control, .form-select { border-radius: 8px; border: 1.5px solid #cceef2; padding: 10px 14px; font-size: .95rem; }
.form-control:focus, .form-select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(21, 200, 220, .18); outline: none; }
.form-label { font-weight: 600; color: #444; margin-bottom: 5px; }

.price-preview {
  background: #f0f9fb;
  border-radius: 10px;
  padding: 18px 22px;
  text-align: center;
}
.price-preview .amount { font-size: 2rem; font-weight: 700; color: var(--primary-dk); }

/* PayPal wrapper */
#paypal-button-container { max-width: 400px; margin: 0 auto; }

/* Alert boxes */
.alert-info-custom {
  background: #e0fafb;
  border-left: 4px solid var(--primary);
  border-radius: 0 8px 8px 0;
  padding: 14px 18px;
}

/* Success page */
.success-card {
  background: #fff;
  border-radius: 16px;
  padding: 48px 40px;
  box-shadow: 0 4px 24px rgba(0,80,160,.1);
  text-align: center;
  max-width: 560px;
  margin: 60px auto;
}
.success-icon { font-size: 5rem; }

/* Details table */
.detail-table td { padding: 10px 14px; border-bottom: 1px solid #eee; font-size: .93rem; }
.detail-table td:first-child { color: #666; width: 45%; }
.detail-table td:last-child { font-weight: 600; }

/* Footer */
footer { background: #003360; color: rgba(255,255,255,.75); padding: 30px 20px; text-align: center; font-size: .88rem; }
footer a { color: #fff; text-decoration: none; opacity: .9; }
footer a:hover { opacity: 1; }
