    :root {
  --beije: #f2e7d5;
  --blick: #1c1c1c;
}
    
    /* Reset and base styles */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: Arial, sans-serif;
      line-height: 1.6;
      background-color: var(--beije);
    }

    /* Header */
    .header {
      display: flex;
      flex-wrap: wrap;
      box-sizing: border-box;
      width: 100%;
      justify-content: space-between;
      align-items: center;
      background-color: var(--beije);
      border-bottom: 1px solid #ccc;
      padding-right: 1rem;
      position: sticky;
      top: 0;
      z-index: 100;
    }

    .logo {
      height: 75px;
      width: 150px;
      background-color: #eee; /* Placeholder */
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      color: #666;
    }

    .nav {
      display: flex;
      align-items: center;
      gap: 1.5rem;
    }

    .nav a {
      text-decoration: none;
      color: var(--blick);
      font-weight: bold;
    }

    .nav h3
    {
      font-size: 1rem;
      line-height: 1.6;
      color: #555;
      font-weight: normal;
    }

    .nav .book-btn {
      background-color: var(--blick);
      color: white;
      padding: 0.5rem 1rem;
      border: none;
      border-radius: 4px;
      text-decoration: none;
      transition: background-color 0.3s ease;
    }

    .nav .book-btn:hover {
      background-color: #1e7e34;
    }

/*New Hero section*/
    .hero {
  position: relative;
  width: 100%;
  height: 350px;
  overflow: hidden;

}

.hero-slideshow{
  opacity: 0.8;
}

/* Common styles for all slides */
.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  animation: crossfade 12s infinite;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

/* Background images */
.slide1 {
  background-image: url('HeroImgs/Hero1.png');
  animation-delay: 0s;
}

.slide2 {
  background-image: url('HeroImgs/Hero2.png');
  animation-delay: 4s;
}

.slide3 {
  background-image: url('HeroImgs/Hero3.png');
  animation-delay: 8s;
}

/* Keyframe animation for fade in/out */
@keyframes crossfade {
  0%   { opacity: 0; }
  8%   { opacity: 1; }
  33%  { opacity: 1; }
  41%  { opacity: 0; }
  100% { opacity: 0; }
}
/* slideshow end */

    /* Old Hero Section 
    .hero {
      position: relative;
      width: 100%;
      height: 500px;
      overflow: hidden;
    }*/

    /*.hero img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }*/

    .title-text {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 1rem;
    text-align: center;
    color: var(--blick);
    font-family: 'Bookerly', sans-serif;

}
    .title-text h1 {
  font-size: 3rem;
  margin: 0.5rem 0;
  /*text-shadow: 0px 0px 8px black;*/
}

.title-text h3 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  font-weight: normal;
  /*text-shadow: 0px 0px 8px black;*/
}

    .hero .cta-button {
      position: absolute;
      left: 50%;
      top: 80%;
      transform: translate(-50%, -50%);
      background-color: var(--blick);
      color: white;
      padding: 1rem 2rem;
      font-size: 1.2rem;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      transition: background-color 0.3s ease;
      font-weight: bold;
    }

    .hero .cta-button:hover {
      background-color: #1e7e34;
    }

    /* Prices & Services */

    .pricing{
    padding: 3rem 2rem;
    background-color: #f2e7d5;
    }

    /*.prices{
    max-width: 350px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;*/
    /*gap: 2rem;*/
   /* align-items: stretch;
    flex: 1;
    flex-direction: column;
    align-items: center;  
    }*/

    .double-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: stretch;
    }

    .prices, .contact {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
}

    .prices h2, .contact h2 {
    width: 350px;
    text-align: center;
    margin-bottom: 1rem;
    color: #333;
    }

    .prices p, .contact p {
    width: 350px;
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 2rem;
    }

    .prices .cta-button {
      background-color: var(--blick);
      color: white;
      padding: 1rem 2rem;
      font-size: 1.2rem;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      transition: background-color 0.3s ease;
      font-weight: bold;
    }

    .prices .cta-button:hover {
      background-color: #1e7e34;
    }


    /* Two-Column Info Section */
    .info-section {
    padding: 3rem 2rem;
    background-color: #f2e7d5;
    }

    .info-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: stretch;
    }

    .column1, .column2 {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;    
}

    /* Text column */
    .column1 h2 {
      width: 350px;
     text-align: center;
    margin-bottom: 1rem;
    color: #333;
    }

    .column1 p {
    width: 350px;
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    }

    /* Image column */
    .column2 img {
    width: auto;
    height: 350px;
    object-fit: cover;
    display: block;
    border-radius: 8px;
    }

.bottom-bit {
  padding-top: 2rem;
  background-color: #f2e7d5;
  text-align: center;
}

.bottom-bit img {
  width: 350px;
  height: auto;
}

.footer{
  background-color: var(--beije);
}

.footer p{
  padding-left: 1rem;
  padding-bottom: 1 rem;
  text-align: left;
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

/*prices.html*/
/* Main table container */
.services-table {
  margin: 1rem auto;
  width: 100%;
  max-width: 700px;
  border: 2pt solid #1c1c1c;      /* outer border */
  border-radius: 8px;             /* rounded corners */
  border-collapse: separate;      /* allow border radius */
  border-spacing: 0;              /* remove spacing between cells */
  overflow: hidden;               /* ensures corners are rounded */
  font-family: sans-serif;
}

/* Header row styling */
.services-table th {
  background-color: #1c1c1c;      /* dark background */
  color: white;                   /* white text */
  font-weight: bold;             /* bold text */
  padding: 12px;
  text-align: left;
}

/* Regular cell styling */
.services-table td {
  padding: 12px;
  background-color: var(--beije);
}

/* Add a border between each data row */
.services-table tr + tr td {
  border-top: 1px solid #ccc;
}

/* Section header row ("Other") */
.section-row td {
  text-align: center;
  background-color: #1c1c1c;      /* same background as main header */
  color: white;                   /* white text */
  font-weight: bold;
  padding: 8px 12px;
  font-size: 0.95rem;
}

.price-categories h2{
  margin-top: 1rem;
  text-align: center;
  margin-bottom: 1rem;
  color: #333;
}