/* ============================================
   MUM & ME MORNINGS - Main Stylesheet
   ============================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #2d2d2d;
  background-color: #fdf6ff;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: 'Georgia', 'Times New Roman', serif;
  line-height: 1.2;
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.2rem; }

/* ---------- Color Variables ---------- */
:root {
  --primary: #8B1A8F;
  --primary-light: #B34DB7;
  --primary-dark: #5C0D60;
  --accent: #E91E8C;
  --accent-light: #FF5EB5;
  --gold: #FFD700;
  --dark-bg: #1a0a2e;
  --dark-surface: #2a1245;
  --white: #ffffff;
  --off-white: #fdf6ff;
  --text-dark: #2d2d2d;
  --text-light: #f0e6f6;
  --gradient-primary: linear-gradient(135deg, #8B1A8F, #E91E8C);
  --gradient-hero: linear-gradient(135deg, #1a0a2e 0%, #5C0D60 50%, #E91E8C 100%);
  --gradient-card: linear-gradient(180deg, #2a1245, #1a0a2e);
  --shadow: 0 4px 20px rgba(139, 26, 143, 0.3);
  --shadow-lg: 0 8px 40px rgba(139, 26, 143, 0.4);
}

/* ---------- Layout Utilities ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

.text-center {
  text-align: center;
}

/* ---------- Header / Navigation ---------- */
header {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-family: 'Georgia', serif;
  font-size: 1.4rem;
  font-weight: bold;
  color: var(--primary);
}

.logo span {
  color: var(--accent);
}

nav ul {
  display: flex;
  gap: 30px;
}

nav ul li a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
  padding: 8px 0;
  position: relative;
  transition: color 0.3s;
}

nav ul li a:hover,
nav ul li a.active {
  color: var(--accent);
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width 0.3s;
}

nav ul li a:hover::after,
nav ul li a.active::after {
  width: 100%;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--primary);
  cursor: pointer;
}

/* ---------- Hero Section ---------- */
.hero {
  background: var(--gradient-hero);
  color: var(--white);
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(233,30,140,0.15) 0%, transparent 50%);
  animation: pulse 6s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 1; }
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.hero h1 span {
  color: var(--gold);
}

.hero p {
  font-size: 1.3rem;
  max-width: 700px;
  margin: 0 auto 30px;
  opacity: 0.9;
  position: relative;
  z-index: 1;
}

.hero .subtitle {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 15px;
  color: var(--accent-light);
  position: relative;
  z-index: 1;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 35px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  position: relative;
  z-index: 1;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

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

.btn-accent {
  background: var(--accent);
  color: var(--white);
}

.btn-accent:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold);
  color: var(--primary-dark);
  font-weight: 700;
}

.btn-gold:hover {
  background: #ffe033;
  transform: translateY(-2px);
}

.btn-group {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  padding: 20px 0;
}

.card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.card-dark {
  background: var(--gradient-card);
  color: var(--text-light);
}

.card-image {
  width: 100%;
  height: 220px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 3rem;
}

.card-body {
  padding: 25px;
}

.card-body h3 {
  margin-bottom: 10px;
  color: var(--primary);
}

.card-dark .card-body h3 {
  color: var(--gold);
}

.card-body p {
  margin-bottom: 15px;
  color: #666;
}

.card-dark .card-body p {
  color: var(--text-light);
  opacity: 0.85;
}

/* ---------- Pricing Badges ---------- */
.price-row {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.price-badge {
  background: var(--gradient-primary);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  text-align: center;
  flex: 1;
}

.price-badge small {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  opacity: 0.85;
}

/* ---------- Info Sections ---------- */
.info-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.info-section.reverse {
  direction: rtl;
}

.info-section.reverse > * {
  direction: ltr;
}

.info-content h2 {
  color: var(--primary);
  margin-bottom: 15px;
}

.info-content p {
  margin-bottom: 15px;
  color: #555;
}

.info-visual {
  background: var(--gradient-hero);
  border-radius: 16px;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 4rem;
}

/* ---------- Feature List ---------- */
.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  padding: 10px 0;
  padding-left: 30px;
  position: relative;
  color: #555;
}

.feature-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 1.1rem;
}

/* ---------- What to Expect ---------- */
.expect-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.expect-card {
  background: var(--white);
  border: 2px solid transparent;
  border-image: var(--gradient-primary) 1;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s;
}

.expect-card:hover {
  transform: translateY(-3px);
}

.expect-card .icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.expect-card h4 {
  color: var(--primary);
  margin-bottom: 10px;
}

/* ---------- Event Details Bar ---------- */
.event-bar {
  background: var(--gradient-primary);
  color: var(--white);
  padding: 25px;
  border-radius: 12px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  margin: 30px 0;
}

.event-bar .detail {
  text-align: center;
}

.event-bar .detail strong {
  display: block;
  font-size: 1.3rem;
}

.event-bar .detail span {
  font-size: 0.9rem;
  opacity: 0.85;
}

/* ---------- Dates Table ---------- */
.dates-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.dates-table th,
.dates-table td {
  padding: 12px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(139, 26, 143, 0.15);
}

.dates-table th {
  background: var(--primary);
  color: var(--white);
}

.dates-table tr:hover {
  background: rgba(139, 26, 143, 0.05);
}

/* ---------- Booking Form ---------- */
.booking-form {
  max-width: 700px;
  margin: 0 auto;
  background: var(--white);
  padding: 40px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: var(--primary-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0d0e5;
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* ---------- Contact Bar ---------- */
.contact-bar {
  background: var(--dark-bg);
  color: var(--text-light);
  padding: 20px;
  text-align: center;
}

.contact-bar a {
  color: var(--gold);
  font-weight: 600;
}

.contact-bar a:hover {
  color: var(--accent-light);
}

/* ---------- Footer ---------- */
footer {
  background: var(--dark-bg);
  color: var(--text-light);
  padding: 50px 20px 25px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 30px;
}

.footer-col h4 {
  color: var(--gold);
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.footer-col p,
.footer-col a {
  color: rgba(240, 230, 246, 0.75);
  display: block;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.footer-col a:hover {
  color: var(--accent-light);
}

.footer-bottom {
  text-align: center;
  padding-top: 25px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.85rem;
  opacity: 0.6;
  max-width: 1200px;
  margin: 0 auto;
}

/* ---------- Page Header (inner pages) ---------- */
.page-header {
  background: var(--gradient-hero);
  color: var(--white);
  padding: 80px 20px;
  text-align: center;
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.page-header p {
  font-size: 1.2rem;
  opacity: 0.85;
  max-width: 600px;
  margin: 0 auto;
}

/* ---------- Logo Image ---------- */
.logo-img {
  height: 70px;
  width: auto;
}

/* ---------- Page Header Logos ---------- */
.page-header-logos {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 20px;
}

.page-logo {
  height: 80px;
  width: auto;
  filter: brightness(0) invert(1);
}

/* ---------- Retreat Banner ---------- */
.retreat-banner {
  max-height: 500px;
  overflow: hidden;
}

.retreat-banner-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  max-height: 500px;
}

/* ---------- Retreat Price Highlight ---------- */
.retreat-price-highlight {
  background: var(--gradient-primary);
  color: var(--white);
  padding: 40px;
  border-radius: 16px;
  display: inline-block;
  box-shadow: var(--shadow-lg);
}

.retreat-price-highlight .price-big {
  font-size: 3.5rem;
  font-weight: 800;
  font-family: 'Georgia', serif;
  color: var(--gold);
}

.retreat-price-highlight .price-desc {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-top: 5px;
}

/* ---------- Retreat Dates Grid ---------- */
.retreat-dates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  max-width: 900px;
  margin: 0 auto;
}

.retreat-date-card {
  background: var(--gradient-card);
  color: var(--white);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.3s;
}

.retreat-date-card:hover {
  transform: translateY(-3px);
}

.retreat-date-card .retreat-date-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-light);
  margin-bottom: 10px;
}

.retreat-date-card .retreat-date-value {
  font-size: 1.4rem;
  font-weight: 700;
  font-family: 'Georgia', serif;
  color: var(--gold);
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    gap: 10px;
  }

  nav ul.active {
    display: flex;
  }

  .hero h1 { font-size: 2.2rem; }
  .page-header h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }

  .info-section {
    grid-template-columns: 1fr;
  }

  .info-section.reverse {
    direction: ltr;
  }

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

  .event-bar {
    flex-direction: column;
  }
}
