     /* Base Styles for Desktop */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    min-height: 2000px; /* To make the page scrollable */
    background-color: lightgrey;
}



.intro {
    display: flex;
    justify-content: center;
    padding: 60px 0px;
}

.intro-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background: linear-gradient(to bottom right, #D8B378, white);
    border-radius: 20px;
    padding: 40px;
    max-width: 1100px;
    width: 100%;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    gap: 40px;
}

.intro-text {
    flex: 1;
    min-width: 300px;
    color: #000000;
}

.intro-text h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.intro-text p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 16px;
}

.intro-image {
    flex: 1;
    text-align: center;
    min-width: 280px;
}

.intro-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

    .reviews-header {

      text-align: center;
      margin-bottom: 40px;
      background: linear-gradient(to right, white, #D8B378);
      color: #000000;
      padding: 14px 20px;
      border-radius: 30px;
      font-size: 18px;
      font-weight: bold;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      width: fit-content;
      margin-left: auto;
      margin-right: auto;
    }

  .reviews {
    width: 70%;
    margin: auto;
    font-family: Arial, sans-serif;
  }

  .review {
    background-color: #f8f8f8;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    position: relative;
  }

  .review:nth-child(odd) {
    margin-left: 4rem;
    background: linear-gradient(to bottom right, #D8B378, white);
  }

  .review:nth-child(even) {
    margin-right: 4rem;
    background: linear-gradient(to top left, #D8B378, white);
  }

  .review h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
  }

  .review .meta {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 0.5rem;
  }

  .stars {
    color: #f5b301;
    margin-bottom: 0.5rem;
  }




.hours-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 0px;
    text-align: center;
}

.hours {
    background: linear-gradient(to right, #00674f, white);
    color: #000000;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    width: 100%;
}

.hours h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.hours ul {
    list-style: none;
    padding: 0;
    font-size: 1.5rem;
    line-height: 2.2rem;
    margin: 0;
}

.hours li {
    margin: 0.4rem 0;
}



.book-button {
    display: inline-block;
    margin-top: 2rem;
    width: 20%;
    min-width: 150px;
    padding: 0.8rem 1rem;
    background: linear-gradient(to right, white, #00674f);
    border: none;
    border-radius: 8px;
    color: #000000;
    font-weight: bold;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
}

.book-button:hover {
    opacity: 0.9;
    transform: scale(1.05);
}



    .social-posts {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .social-header {
      text-align: center;
      margin-bottom: 40px;
      background: linear-gradient(to right, white, #4e668b);
      color: #000000;
      padding: 14px 20px;
      border-radius: 30px;
      font-size: 18px;
      font-weight: bold;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      width: fit-content;
      margin-left: auto;
      margin-right: auto;
    }

    .social-content {
      display: flex;
      justify-content: center;
      gap: 30px;
      flex-wrap: wrap;
    }

    .social-item {
      background-color: #fff;
      border: 1px solid #dbdbdb;
      border-radius: 12px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      max-width: 500px;
      width: 100%;
      overflow: hidden;
    }

    .social-item iframe {
      width: 100%;
      height: 800px;
      border: none;
    }

    .insta-actions {
      display: flex;
      justify-content: left;
      align-items: center;
      padding: 12px;
      font-size: 20px;
      background-color: #fafafa;
    }

    .insta-actions a {
      text-decoration: none;
      color: #333;
      transition: color 0.3s ease;
    }

    .insta-actions a:hover {
      color: #3897f0;
    }

    .insta-caption {
      padding: 12px 16px 20px;
      font-size: 15px;
      color: #262626;
      line-height: 1.5;
      background-color: #fff;
    }

    .hashtags {
      display: block;
      margin-top: 10px;
      color: #00376b;
      word-wrap: break-word;
    }



    @media (max-width: 768px) {
      .social-content {
        flex-direction: column;
        align-items: center;
      }
    }



    /* Logo Button (top right corner) */
    #logoButton {
        position: fixed;
        top: 20px;
        right: 20px;
        cursor: pointer;
        z-index: 1002; /* above the nav */
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 50px;
        width: 66px;
    }

    #logoButton span {
        display: block;
        height: 5px;
        background-color: #000000;
        border-radius: 2px;
        transition: 0.4s;
    }

    /* Side nav with image background */
    #sideNav {
        position: fixed;
        top: 0;
        right: -220px; /* Hidden off-screen initially */
        height: 100%;
        width: 200px;
        background-image: url('banner.jpg'); /* Set background image */
        background-size: cover; /* Make sure it covers the entire side nav */
        background-position: center; /* Center the image */
        padding-top: 60px;
        display: flex;
        flex-direction: column;
        transition: right 0.3s ease;
        z-index: 1001; /* Overlay on top of page content */
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.4); /* Subtle shadow for depth */
        border-left: 5px solid #D8B378; /* Gold outline */
    }

    #QR {
        border-style: solid;
        border-radius: 2px;
        border-color: #D8B378;
    }

    #space {
        
    }
    /* Links in the side nav */
    #sideNav a {
        padding: 15px 25px;
        text-decoration: none;
        color: #000000; /* Link color */
        font-size: 18px;
        transition: background 0.2s, color 0.2s;
    }

    #sideNav a:hover {
        background-color: #D8B378;
        color: #3d1e1f; /* Change text color to light on hover for contrast */
    }

    /* Transform logo into X */
    #logoButton.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    #logoButton.active span:nth-child(2) {
        opacity: 0;
    }

    #logoButton.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    /* Force X lines to stay #000000 */
    #logoButton.active span {
        background-color: #000000;
    }

    /* Nav open state */
    #sideNav.open {
        right: 0;
    }
    
    #backToTop {
        display: none; /* Hidden by default */
        position: fixed;
        bottom: 30px;
        right: 30px;
        z-index: 1002;
        font-size: 18px;
        background-color: #00674f;
        color: #D8B378;
        border-style: solid;
        border-color: #D8B378;
        outline: none;
        padding: 12px 16px;
        border-radius: 5px;
        cursor: pointer;
        transition: opacity 0.3s;
    }

    #backToTop:hover {
        background-color: #00b389;
    }



    /* Sticky navbar styling */
    .navbar {
        width: 100%; /* Full width */
        background-image: url('banner.jpg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        position: fixed; /* Fixes the navbar to the top */
        top: 0;
        left: 0;
        z-index: 1000; /* Ensures the navbar stays on top */
        display: flex; /* Align items horizontally */
        align-items: center;
        color: #000000;
        text-align: center;
        height: 120px; /* Height of navbar */
        padding: 0 2rem; /* Adds padding inside the navbar, adjusted for scaling */
        border-style: solid;
        border-color: #D8B378;
    }

    /* Logo styling (fixed size) */
    .navbar img {
        height: 6rem; /* Set initial logo height (fixed size) */
        width: auto; /* Ensure the logo keeps its aspect ratio */
        max-height: 100%; /* Prevent the logo from growing too large */
    }

    /* Add some padding to the content to prevent it from being hidden under the navbar */
    .content {
        padding-top: 160px; /* Space for the larger navbar */
    }




    /* === Service Section Container === */
    .services-container {
      max-width: 1200px;
      margin: 100px auto;
      padding: 0 20px;
      display: flex;
      flex-direction: column;
      gap: 60px;
    }

    /* === Section Header === */
    .service-header {
      width: fit-content;
      margin: 0 auto 40px;
      text-align: center;
      background: linear-gradient(to right, white, #D8B378);
      color: #000000;
      padding: 14px 30px;
      border-radius: 30px;
      font-size: 26px;
      font-weight: bold;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    /* === Service Card Wrapper === */
    .service-card {
      height: fit-content;
      width: fit-content;
      display: flex;
      flex-direction: row;
      border-radius: 16px;
      overflow: auto;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease;
    }

    .service-card:hover {
      transform: translateY(-4px);
    }

    .service-card.reverse {
      flex-direction: row-reverse;
    }

    /* === Card Background Themes === */
    .card-1 {
      background: linear-gradient(to right, #D8B378, white);
    }

    .card-2 {
      background: linear-gradient(to right, white, #00674f);
    }

    .card-3 {
      background: linear-gradient(to right, #4e668b, white);
    }

    .card-2 .card-content {
      font-size: 1.2rem;
    }

    .card-2 .card-content h2 {
      font-size: 1.9rem;
    }

    .card-2 .card-content h4 {
      font-size: 1.4rem;
    }

    .card-3 .card-content {
      font-size: 1.7rem;
    }

    .card-3 .card-content h2 {
      font-size: 2.4rem;
    }

    .card-3 .card-content h4 {
      font-size: 1.9rem;
    }

    /* === Card Content === */
    .card-content {
      flex: 1;
      padding: 30px;
      font-size: 1rem;
      color: #000000;
    }

    .card-content h2 {
      font-size: 1.6rem;
      margin-bottom: 20px;
    }

    .card-content h3,
    .card-content h4 {
      margin-top: 20px;
      font-size: 1.2rem;
    }

    .card-content ul {
      padding-left: 1.2em;
      margin: 10px 0;
    }

    .card-content ul li {
      margin-bottom: 6px;
    }

    /* === Card Images (Stacked Vertically) === */
    .card-image {
      flex: 0 0 40%;
      display: flex;
      flex-direction: column;
      gap: 10px;
      padding: 20px;
      justify-content: center;
      align-items: center;
      background-color: rgba(255, 255, 255, 0.05);
    }

    .card-image img {
      width: 100%;
      height: auto;
      border-radius: 10px;
      object-fit: cover;
      transition: opacity 0.3s ease-in-out;
    }

    .card-image:hover img {
      opacity: 0.85;
    }



    /* === Booking Button === */
    .book-button-2 {
      text-align: center;
      align-self: center;
      display: inline-block;
      margin-top: 2rem;
      width: 30%;
      min-width: 150px;
      padding: 0.8rem 1rem;
      background: linear-gradient(to right, white, #4e668b);
      border: none;
      border-radius: 8px;
      color: #000000;
      font-weight: bold;
      font-size: 1.2rem;
      text-decoration: none;
      transition: all 0.2s ease;
      cursor: pointer;
    }

    .book-button-2:hover {
      opacity: 0.9;
      transform: scale(1.05);
    }







    /* === Responsive Layout === */
    @media (max-width: 900px) {
      .service-card,
      .service-card.reverse {
        flex-direction: column;
      }

      .card-content,
      .card-image {
        width: 100%;
      }

      .card-content {
        padding: 30px 20px;
      }

      .card-image {
        padding: 20px 10px;
      }

      .book-button-2 {
        width: 80%;
      }
    }

    .site-footer {
      background: url('banner.jpg') no-repeat center center / cover;
      color: white;
      padding: 20px;
      outline: 3px solid #D8B378;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 15px;
    }

    /* Footer Column Base */
    .footer-column {
      background-color: #00674f95;
      padding: 15px;
      border-radius: 8px;
      outline: 2px solid #D8B378;
      outline-offset: 3px;
      flex: 1 1 250px;
      max-width: 350px;
      box-sizing: border-box;
    }

    /* Map Shrink */
    #map iframe {
      height: 200px;
    }

    /* Contact Form */
    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .contact-form input,
    .contact-form textarea {
      width: 100%;
      padding: 6px 10px;
      border: 1px solid #ccc;
      border-radius: 4px;
      font-family: inherit;
      font-size: 14px;
    }

    .contact-form textarea {
      resize: vertical;
      min-height: 60px;
    }

    .contact-form button {
      background-color: #D8B378;
      color: white;
      padding: 8px;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      font-size: 14px;
      transition: background 0.3s ease;
    }

    .contact-form button:hover {
      background-color: #ffd700;
      color: black;
    }

    /* Navigation */
    .footer-nav-center {
      text-align: center;
    }

    .footer-socials {
      margin-top: 10px;
      display: flex;
      justify-content: center;
      gap: 15px;
      flex-wrap: wrap;
    }

    .footer-socials a {
      color: #fff;
      text-decoration: none;
      font-size: 20px;
      display: flex;
      align-items: center;
      gap: 6px;
      transition: color 0.3s ease;
    }

    .footer-socials a:hover {
      color: #ffd700;
    }

    .footer-nav {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 5px;
    }

    .footer-nav a {
      color: #fff;
      text-decoration: none;
      transition: color 0.3s ease;
      font-size: 14px;
    }

    .footer-nav a:hover {
      color: #ffd700;
    }

    #QR {
        width: 50%;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .site-footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      .footer-nav {
        justify-content: center;
      }
    }

@media (max-width: 768px) {
    body {
        font-size: 14px; /* Adjust font size */
    }

    /* For intro section */
    .intro {
        flex-direction: column;
        padding: 40px 10px;
    }

    .intro-content {
        flex-direction: column;
        align-items: center;
        padding: 20px;
        gap: 20px;
    }

    .intro-text {
        flex: none;
        text-align: center;
    }

    .intro-image {
        flex: none;
        width: 100%;
    }

    .review {
        width: 100%;
    }

    .review:nth-child(odd) {
        margin-left: 1rem;
    }

    .review:nth-child(even) {
        margin-right: 1rem;
    }

    /* For hours section */
    .hours-container {
        padding: 20px;
    }

    .hours {
        padding: 2rem;
        width: 100%;
        font-size: 1rem;

    }

    .hours h2 {
        font-size: 2rem;
    }

    .card-1 .card-image {
      width: 80%;
    }

    .card-3 .service-card {
        width: 80%;
    }

    .card-3 .card-content {
      font-size: 1rem;
    }

    .card-3 .card-content h2{
      font-size: 2rem;
    }

    .card-3 .card-content h4{
      font-size: 1.5rem;
    }

    .card-3 .card-image {
      width: 80%;
    }

    /* Button adjustments */
    .book-button {
        width: 50%;
        padding: 1rem;
        font-size: 1rem;
    }

    /* Social Posts section */
    .social-content {
        flex-direction: column;
        align-items: center;
    }

    .social-item {
        width: 90%;
        margin: 10px 0;
    }

    .insta-actions {
        font-size: 16px;
    }

    /* Navbar Adjustments */
    .navbar {
        height: 100px;
        padding: 10px 1rem;
    }

    .navbar img {
        height: 4rem;
    }

    /* Footer Adjustments */
    .site-footer {
        flex-direction: column;
        text-align: center;
    }

    .footer-column {
        width: 100%;
        margin-bottom: 20px;
    }

    /* Contact Form Adjustments */
    .contact-form input, .contact-form textarea {
        font-size: 12px;
    }

    .contact-form button {
        font-size: 12px;
    }

    /* For smaller screens, adjust the map */
    #map iframe {
        height: 200px;
    }

    .footer-socials a {
        font-size: 16px;
    }

    .footer-nav a {
        font-size: 12px;
    }

    #QR {
        width: 30%;
    }
}

/* For very small screens with max-width of 480px */
@media (max-width: 480px) {
    .intro-text h1 {
        font-size: 1.8em;
    }

    .intro-text p {
        font-size: 1em;
    }

    .book-button {
        width: 80%;
        font-size: 1rem;
    }

    .sideNav {
        width: 100%;
    }
    .navbar {
        height: 140px;
    }

    .navbar img {
        height: 3rem;
    }

    .site-footer .footer-column {
        padding: 10px;
        font-size: 12px;
    }

    .social-item iframe {
        height: 400px; /* Adjust iframe height for small screens */
    }

    .contact-form input, .contact-form textarea {
        font-size: 12px;
    }

    .contact-form button {
        font-size: 12px;
    }
}