/* -----------------------------------------------------------
   GLOBAL RESET
----------------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #fffaf3;
  color: #4a3b3b;
  overflow-x: hidden;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

/* -----------------------------------------------------------
   TYPOGRAPHY
----------------------------------------------------------- */
h1, h2, h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: #6a1b9a;
  margin-bottom: 15px;
}

a {
  text-decoration: none;
  color: inherit;
}

/* -----------------------------------------------------------
   ANIMATIONS — STAGGERED REVEAL
----------------------------------------------------------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
  animation-delay: var(--delay);
}

/* -----------------------------------------------------------
   HEADER
----------------------------------------------------------- */
.site-header {
  display: flex;
  align-items: center;
  padding: 25px 40px;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.logo {
  width: 150px;
}

.main-nav {
  display: flex;
  justify-content: space-evenly;
  flex: 1;
}

.main-nav a {
  font-weight: bold;
  color: #6a1b9a;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: 0.3s;
}

.main-nav a:hover {
  border-bottom-color: #6a1b9a;
  transform: translateY(-2px);
}

/* -----------------------------------------------------------
   HERO
----------------------------------------------------------- */
.hero {
  padding: 80px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero-text > * {
  animation: fadeUp 1s ease forwards;
}

.hero-text {
  max-width: 50%;
}

.hero-buttons {
  margin-top: 20px;
}

.btn-primary {
  background: #7b4bff;
  color: #fff;
  padding: 14px 28px;
  border-radius: 999px;
  margin-right: 10px;
  font-weight: bold;
  transition: 0.3s;
  box-shadow: 0 0 12px rgba(123,75,255,0.35);
}

.btn-primary:hover {
  background: #6a3ee0;
  transform: translateY(-4px);
  box-shadow: 0 0 18px rgba(123,75,255,0.55);
}

.btn-secondary {
  border: 2px solid #6a1b9a;
  color: #6a1b9a;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: bold;
  background: #fff;
  transition: 0.3s;
}

.btn-secondary:hover {
  background: #6a1b9a;
  color: #fff;
  transform: translateY(-4px);
}

.hero-image {
  position: relative;
}

.hero-image img {
  max-width: 520px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(0,0,0,0.25), rgba(0,0,0,0));
  border-radius: 20px;
}

/* -----------------------------------------------------------
   ICON BAND
----------------------------------------------------------- */
.icon-band {
  background: linear-gradient(180deg, #fffaf3 0%, #6a1b9a 40%, #5a1485 100%);
  padding: 50px 30px 30px;
  color: #fff;
  border-radius: 40px 40px 0 0;
  margin: 0 40px;
}

.icon-row {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.icon-row div {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.icon-row img {
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
  background: #ffffff22;
  border-radius: 50%;
  padding: 8px;
  transition: 0.3s;
  box-shadow: 0 0 12px rgba(255,255,255,0.25);
}

.icon-row img:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 18px rgba(255,255,255,0.45);
}

/* -----------------------------------------------------------
   WAVE DIVIDER
----------------------------------------------------------- */
.wave-divider svg {
  display: block;
  width: 100%;
  margin-bottom: -60px;
}

/* -----------------------------------------------------------
   SECTIONS (Premium Spacious)
----------------------------------------------------------- */
.section {
  padding: 80px 40px;
  background: #fff;
  margin: 40px 40px;
  border-radius: 30px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

/* -----------------------------------------------------------
   MEET ALISON
----------------------------------------------------------- */
.meet-inner {
  display: flex;
  align-items: center;
  gap: 40px;
}

.meet-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* -----------------------------------------------------------
   HIGHLIGHT CARDS
----------------------------------------------------------- */
.highlight-section {
  text-align: center;
}

.highlight-text {
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 1.15rem;
  line-height: 1.7;
  color: #5a4a4a;
}

.highlight-cards {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.highlight-card {
  background: #fff;
  border-radius: 22px;
  padding: 25px;
  width: 300px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  text-align: center;
  transition: 0.3s;
}

.highlight-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 18px rgba(123,75,255,0.45);
}

.highlight-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 15px;
}

.highlight-card:nth-child(2) img {
  object-position: bottom;
}

/* -----------------------------------------------------------
   GALLERY — Premium + Glow + Staggered
----------------------------------------------------------- */
.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
}

.gallery-grid img {
  width: 220px;
  height: 160px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.12);
  transition: 0.3s;
  opacity: 0;
  transform: translateY(25px);
  animation: fadeUp 0.8s ease forwards;
  animation-delay: var(--delay);
}

.gallery-grid img:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 18px rgba(123,75,255,0.45);
}

/* Stagger timing */
.gallery-grid img:nth-child(1) { --delay: 0.1s; }
.gallery-grid img:nth-child(2) { --delay: 0.2s; }
.gallery-grid img:nth-child(3) { --delay: 0.3s; }
.gallery-grid img:nth-child(4) { --delay: 0.4s; }
.gallery-grid img:nth-child(5) { --delay: 0.5s; }
.gallery-grid img:nth-child(6) { --delay: 0.6s; }

/* -----------------------------------------------------------
   TESTIMONIALS
----------------------------------------------------------- */
.testimonial {
  background: #fffaf3;
  padding: 25px;
  border-radius: 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.testimonial span {
  display: block;
  margin-top: 8px;
  color: #6a1b9a;
  font-weight: bold;
}

/* -----------------------------------------------------------
   CTA
----------------------------------------------------------- */
.big-cta {
  text-align: center;
  background: linear-gradient(180deg, #fffaf3 0%, #f7e8ff 100%);
  border-radius: 40px;
  padding: 60px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

/*-----------------------------------------------------------
   FOOTER
----------------------------------------------------------- */
.footer-full {
  background: #6a1b9a;
  color: #fff;
  padding: 40px;
  border-radius: 40px 40px 0 0;
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-col {
  flex: 1 1 200px;
  min-width: 200px;
}

.footer-col h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  font-weight: bold;
}

.footer-col p,
.footer-col a {
  margin: 6px 0;
  font-size: 1rem;
  color: #fff;
}

.footer-col a:hover {
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  padding-top: 10px;
  border-top: 1px solid #ffffff33;
  opacity: 0.9;
}
/* Footer text visibility fix */
.footer-col h3,
.footer-col p,
.footer-col a {
  color: #fff !important;
}
.big-cta {
  padding: 80px 40px;
}

.big-cta h1 {
  margin-bottom: 20px;
}

.big-cta p {
  margin-bottom: 35px;
}

.big-cta .btn-primary {
  margin-top: 10px;
  display: inline-block;
}
/* -----------------------------------------
   MOBILE CSS (phones + small tablets)
----------------------------------------- */
@media (max-width: 768px) {

  /* Example: stack hero */
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-image img {
    max-width: 100%;
  }

  /* Example: footer columns stack */
  .footer-columns {
    flex-direction: column;
    text-align: center;
  }

  .footer-col {
    text-align: center;
  }

  /* Example: highlight cards full width */
  .highlight-card {
    max-width: 100%;
  }

}
/* FIX FOOTER STACKING ON DESKTOP */
@media (min-width: 769px) {
  .footer-columns {
    flex-direction: row !important;
    text-align: left !important;
  }

  .footer-col {
    text-align: left !important;
  }

  .footer-col:nth-child(2) {
    text-align: center !important;   /* Information column */
  }

  .footer-col:nth-child(3) {
    text-align: right !important;    /* Facebook column */
  }
}

//* -----------------------------------------------------------
   AVAILABILITY CALENDAR SYSTEM
----------------------------------------------------------- */

.month-selector {
  display: flex;
  overflow-x: auto;
  gap: 10px;
  padding: 15px 0;
  margin-bottom: 20px;
}

.month-selector button {
  background: #6a1b9a;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 20px;
  font-weight: bold;
  cursor: pointer;
  white-space: nowrap;
  transition: 0.3s;
}

.month-selector button:hover {
  background: #5a1485;
  transform: translateY(-3px);
}

.availability-key {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.key {
  width: 20px;
  height: 20px;
  display: inline-block;
  border-radius: 6px;
}

.key.green { background: #4CAF50; }
.key.yellow { background: #FFC107; }

.month {
  display: none;
}

.month.active {
  display: block;
}

.calendar-header {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-weight: bold;
  margin-bottom: 10px;
  color: #6a1b9a;
  font-size: 1rem;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
  background: #fff;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.day {
  padding: 12px;
  border-radius: 10px;
  text-align: center;
  font-weight: bold;
  font-size: 1rem;
  color: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,0.15);
}

.day.green { background: #4CAF50; }
.day.yellow { background: #FFC107; color: #4a3b3b; }

.day:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 15px rgba(123,75,255,0.45);
  transition: 0.3s;
}

@media (max-width: 768px) {
  .calendar-header {
    grid-template-columns: repeat(4, 1fr);
  }
  .calendar-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
/* -----------------------------------------------------------
   AVAILABILITY CALENDAR SYSTEM
----------------------------------------------------------- */

.month-selector {
  display: flex;
  overflow-x: auto;
  gap: 10px;
  padding: 15px 0;
  margin-bottom: 20px;
}

.month-selector button {
  background: #6a1b9a;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 20px;
  font-weight: bold;
  cursor: pointer;
  white-space: nowrap;
  transition: 0.3s;
}

.month-selector button:hover {
  background: #5a1485;
  transform: translateY(-3px);
}

.availability-key {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.key {
  width: 20px;
  height: 20px;
  display: inline-block;
  border-radius: 6px;
}

.key.green { background: #4CAF50; }
.key.yellow { background: #FFC107; }
.key.red { background: #E53935; }

.month {
  display: none;
}

.month.active {
  display: block;
}

.calendar-header {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-weight: bold;
  margin-bottom: 10px;
  color: #6a1b9a;
  font-size: 1rem;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
  background: #fff;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.day {
  padding: 12px;
  border-radius: 10px;
  text-align: center;
  font-weight: bold;
  font-size: 1rem;
  color: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,0.15);
}

.day.green { background: #4CAF50; }
.day.yellow { background: #FFC107; color: #4a3b3b; }
.day.red { background: #E53935; }

.day:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 15px rgba(123,75,255,0.45);
  transition: 0.3s;
}

@media (max-width: 768px) {
  .calendar-header {
    grid-template-columns: repeat(4, 1fr);
  }
  .calendar-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
/* -----------------------------------------------------------
   CONTACT FORM
----------------------------------------------------------- */

form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 600px;
  margin: 40px auto 0;
}

form input,
form textarea {
  padding: 14px;
  border-radius: 12px;
  border: 2px solid #e0d4f3;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  background: #fff;
}

form input:focus,
form textarea:focus {
  outline: none;
  border-color: #6a1b9a;
  box-shadow: 0 0 8px rgba(106,27,154,0.25);
}

form button {
  background: #7b4bff;
  color: #fff;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 0 12px rgba(123,75,255,0.35);
}

form button:hover {
  background: #6a3ee0;
  transform: translateY(-4px);
  box-shadow: 0 0 18px rgba(123,75,255,0.55);
}
/* -----------------------------------------------------------
   BLOG PAGE — CLEAN REWRITE
----------------------------------------------------------- */

.blog-hero {
  margin: 40px;
  border-radius: 30px;
  overflow: hidden;
  background: #fff;
}

.blog-hero img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 30px 30px 0 0;
}

.blog-hero-text {
  padding: 30px 40px;
  color: #6a1b9a;
  background: #fff;
  border-radius: 0 0 30px 30px;
}

.blog-layout {
  display: flex;
  gap: 40px;
  margin: 40px;
}

.blog-grid {
  flex: 3;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.blog-card {
  background: #fff;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.blog-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 12px;
}

.blog-category {
  font-size: 0.9rem;
  color: #6a1b9a;
  font-weight: bold;
}

.blog-card h3 {
  margin: 10px 0;
}

.read-more {
  color: #7b4bff;
  font-weight: bold;
}

.blog-date {
  display: block;
  margin-top: 8px;
  font-size: 0.85rem;
  opacity: 0.7;
}

.blog-sidebar {
  flex: 1;
  width: 340px;
  flex-shrink: 0;
}

.sidebar-box {
  background: #fff;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  margin-bottom: 30px;
  overflow: hidden;
}

.category-list li {
  margin: 8px 0;
}

@media (max-width: 900px) {
  .blog-layout {
    flex-direction: column;
  }

  .blog-sidebar {
    width: 100%;
  }
}

/* BLOG POST NAVIGATION BUTTONS */
.blog-post-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 40px 0;
}

.blog-post-nav a {
  text-align: center;
  min-width: 160px;
}

@media (max-width: 768px) {
  .blog-post-nav {
    flex-direction: column;
    align-items: center;
  }

  .blog-post-nav a {
    width: 100%;
    max-width: 300px;
  }
}
/* BLOG SIDEBAR FIX — prevents button overlap */
.blog-sidebar {
  width: 340px;      /* fixed width */
  flex-shrink: 0;    /* sidebar cannot collapse */
}

.blog-sidebar .btn-primary {
  width: 100%;       /* button stays inside box */
  display: block;
  text-align: center;
  margin-top: 15px;
}

.sidebar-box {
  overflow: hidden;  /* prevents content spilling */
}
