/* ---------------------------------
   1) Global + Full-Page Background
---------------------------------- */
* {
    box-sizing: border-box;
  }
  
  body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: transparent; /* Set background to transparent */
    position: relative;
    z-index: 0;
}
  
  /* ---------------------------------
     2) Navbar - Fixed at Top
  ---------------------------------- */
/* ---------------------------------
   Navbar Styles
---------------------------------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  padding: 12px 20px;
}

/* Default navbar items */
.navbar ul {
  list-style: none;
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.navbar li {
  margin: 0 15px;
}

.navbar a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  transition: color 0.3s ease;
  font-size: 1rem;
}

.navbar a:hover {
  color: #708090;
}

/* Menu button (hidden on desktop) */
.menu-button {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  margin-left: auto;
}

/* Navigation menu */
.navbar ul {
  list-style: none;
  display: flex;
  gap: 15px;
  padding: 0;
}

/* Mobile menu hidden */
@media (max-width: 768px) {
  .menu-button {
    display: block;
  }

  .navbar ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: white;
    text-align: center;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
  }

  .navbar ul.active {
    display: flex;
  }
}
  /* ---------------------------------
       Slide Show 
    ---------------------------------*/
    /* Slideshow Styles */
    .slideshow-container {
      position: fixed; /* Set the slideshow container to a fixed position */
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: -1; /* Place it behind the content */
      overflow: hidden; /* Hide overflow */
  }

  .mySlides {
      max-width: 100%;
      position: absolute; /* Position slides absolutely within the container */
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
  }

  img {
      width: 100%;
      height: 100%;
      object-fit: cover; /* Ensure images cover the entire container */
  }

  .slideshow-text {
      /* Your text styles for the slides */
      color: #fff;
      text-align: center;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%); /* Center text vertically and horizontally */
  }
  /* ---------------------------------
     3) Header (Hero)
  ---------------------------------- */
  .header {
    position: relative;
    margin-top: 70px; /* Push content below fixed navbar */
    padding: 60px 20px; /* Enough space for offerings + buttons */
    text-align: center;
    color: #fff;
    overflow: hidden;
  }

  /* Optional additional overlay for hero */
  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent; /* or rgba(0,0,0,0.4) if you want it darker */
    z-index: 1;
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
  }
  
  /* Logo (smaller) */
  .logo-container {
    max-width: 120px;
    margin: 0 auto 20px;
  }
  .logo-container img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  /* Headings in Hero */
  .hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
  }
  .hero-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
  
  /* Offerings in Hero */
  .offerings-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: stretch;
    gap: 15px;
    margin: 30px 0;
  }
  .offering-link {
    text-decoration: none;
    color: inherit;
    flex: 1;
    min-width: 120px;
    max-width: 200px;
  }
  .offering-box {
    background: rgba(255,255,255,0.15);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    color: #fff;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); /* Or whatever your blur value is */
    transition: transform 0.3s ease, background 0.3s ease;
    flex: 1 1 calc(33.333% - 30px); /* Three boxes per row on large screens */
    box-sizing: border-box;
    min-width: 120px;
    max-width: 300px;
  }
  .offering-box:hover {
    transform: scale(1.05);
    background: rgba(255,255,255,0.25);
  }
  .offering-box .emoji {
    font-size: 2rem;
    display: block;
    margin-bottom: 5px;
  }
  
  @media (max-width: 768px) {
    .offering-box {
        flex: 1 1 calc(50% - 15px); /* Two boxes per row on tablets */
    }
}

@media (max-width: 480px) {
    .offering-box {
        flex: 1 1 100%; /* Full width on mobile devices */
    }
}

  /* Buttons under hero offerings */
  .hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
  
  /* ---------------------------------
     4) Buttons
  ---------------------------------- */
  .btn-primary, .btn-secondary {
    padding: 12px 24px;
    font-size: 1rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    display: inline-block;
  }
  
  .btn-primary {
    background-color: #708090;
    color: #fff;
  }
  .btn-primary:hover {
    background-color: #708090;
  }
  .btn-secondary {
    background-color: #fff;
    color: #708090;
    border: 1px solid#708090;
  }
  .btn-secondary:hover {
    background-color: #708090;
    color: #fff;
  }
  
  @media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .btn-primary, .btn-secondary {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    .btn-primary, .btn-secondary {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
}

  /* ---------------------------------
     5) Sections (About, Services, Pricing, Contact)
  ---------------------------------- */
  .section {
    
    padding: 30px 20px;
    background: rgba(255,255,255,0.9);
    color: #333;
    max-width: 1100px;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }
  .section .container {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
  }
  .section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #708090;
  }

  #about ul {
    list-style: none; /* Removes bullet points */
  }
  
  /* Service / Pricing Lists */
  .service-list {
    display: block;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
    margin-top: 30px;
  }
  .service-item {
    background-color: rgba(255,255,255,0.5);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin-top: 20px;
  }
  .service-item h3 {
    margin-bottom: 10px;
    font-size: 1.4rem;
    color: #708090;
  }
  
  .service-item h4 {
    margin-top: 15px;
    margin-bottom: 10px;
    font-size: 1.0rem;
    color: rgba(10, 20, 50, 0.9);
  }
  


  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



  /* Contact Form */
  form input, form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
  }
  form button {
    width: 100%;
    padding: 10px;
    background-color: #708090;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  form button:hover {
    background-color: #708090;
  }
  
/* Social Links Styling */
#socialLinks {
  text-align: center;
  margin-top: 20px;
}

#socialLinks p {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 10px;
  font-weight: 600;
}

#socialLinks a {
  text-decoration: none;
  color: #fff;
  background-color: #3b5998;
  font-size: 1rem;
  font-weight: 600;
  transition: color 0.3s ease, background-color 0.3s ease;
  display: inline-block;
  padding: 8px 15px;
  border-radius: 5px;
  margin: 5px;
}

#socialLinks a:hover {
  color: #fff;
  background-color: #708090; /* Matches primary button color */
}

#socialLinks a:active {
  background-color: #708090; /* Slightly darker on click */
}

#responseMessage {
  text-align: center; /* This will center the text horizontally */
  margin: 20px 0; /* Optional: Adjust the space above and below */
  font-size: 16px; /* Optional: Set the font size */
  color: green; /* Optional: Change the color for success message */
}


 /*--------------------------- 
 Calendar layout 
 ----------------------------*/
.calendar { 
  display: grid; 
  grid-template-columns: repeat(7, 1fr); 
  gap: 5px;
  height: 500px; /* Adjust this to fit the desired height */
}

/* Styling each date cell */
.calendar div { 
  padding: 5%; 
  text-align: center; 
  cursor: pointer; 
  font-size: 16px; 
}

#calendar-header {
  text-align: center;
  font-size: 18px;
}

/* Style the month dropdown */
#month-select {
  background-color: white; /* Background color */
  color: #333; /* Text color */
  font-size: 18px; /* Increase text size */
  padding: 10px 15px; /* Add padding for better appearance */
  border: 2px solid #4BB78F; /* Green border */
  border-radius: 8px; /* Rounded corners */
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none; /* Remove default outline */
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1); /* Soft shadow */
  appearance: none; /* Remove default browser styling */
}

/* Add arrow icon for dropdown */
#month-select {
  background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="black"><path d="M7 10l5 5 5-5z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 16px;
  padding-right: 30px; /* Space for dropdown icon */
}

/* Hover effect */
#month-select:hover {
  background-color: #4BB78F;
  color: white;
}

/* Focus effect */
#month-select:focus {
  border-color: #3a9b75;
  box-shadow: 0 0 5px rgba(75, 183, 143, 0.8);
}

/* Mark booked dates */
.date {
  padding: 10px;
  margin: 5px;
  border: 1px solid #ccc;
  display: inline-block;
  cursor: pointer;
  background-color: white;
  transition: background-color 0.3s, transform 0.2s; /* Smooth transition */
}

.date:hover {
  background-color: #e0f7fa; /* Light blue hover effect */
}

.date:active {
  background-color: #009688; /* Darker teal when clicked */
  color: white;
  transform: scale(0.95); /* Slight shrink effect */
}

/* Highlight selected dates */
.date.highlight {
  background-color: #4BB78F; /* Highlight color */
  color: white;
}

/* Booked dates - visually distinct */
.booked {  
  background-color: #d32f2f; /* Dark red for contrast */
  color: white; 
  pointer-events: none; 
  border: none;
  font-weight: bold;
  opacity: 0.7;
}

/* Highlight today's date */
.today { 
  background-color: #708090; 
  font-weight: bold;
  border-radius: 5px;
}

/* Disabled dates */
.date.disabled {
  background-color: #f2f2f2; /* Grey out disabled dates */
  color: #aaa; /* Faded text */
  pointer-events: none; /* Prevent interaction */
  cursor: not-allowed;
  border: none;
  opacity: 0.5;
}

/* Style the submit button */
#form input[type="submit"] {
  background-color: #4BB78F; /* Green color */
  color: white;
  padding: 12px 20px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.1s ease;
}

/* Hover effect */
#form input[type="submit"]:hover {
  background-color: #3a9b75; /* Darker green */
}

/* Click effect */
#form input[type="submit"]:active {
  background-color: #2e7d5b; /* Even darker green */
  transform: scale(0.98); /* Slightly shrink when clicked */
}


/*--------------------------------------
| 8) Social Media 
----------------------------------------*/

.social-media {
  width: 100%;
  max-width: 800px; /* Adjust if needed */
  background: #fff;
  padding: 40px; /* Match padding with other sections */
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  margin: 0 auto;
  min-height: 300px; /* Ensures height consistency */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Reels Container */
.reels-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
}

/* Individual Reel Styling */
.reel {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 400px;
}

.reel iframe {
  width: 100%;
  height: 500px; /* Adjust as needed */
  border: none;
  display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
  .reels-container {
    flex-direction: column;
  }

  .reel iframe {
    height: 400px; /* Adjust height for mobile */
  }
}

/*------------------------------------
       Testimonials
--------------------------------------*/
.testimonials {
  display: grid;
  align-items: center;
  justify-content: center;
}

.google-review {
  background: hsl(0, 0%, 100%,0.2);
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  font-family: 'Arial', sans-serif;
  align-items: center;
  justify-content: center;

}

.review-header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.profile-pic {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.review-details {
  flex: 1;
}

.reviewer-name {
  font-weight: bold;
  font-size: 1rem;
  margin: 0;
}

.review-stars {
  color: #708090; /* Gold star color */
  font-size: 1.2rem;
  margin: 0;
}

.review-content {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.5;
  margin-top: 10px;
}



  /* ---------------------------------
     6) Footer
  ---------------------------------- */
  .footer {
    background-color: rgba(0,0,0,0.8);
    color: #fff;
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
    max-width: 1100px;
    margin: 40px auto 0 auto;
    border-radius: 10px;
  }
  /*--------------------------------------
    BLOG POST
  ----------------------------------------*/
  .article-image {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
}

.blog-list{

padding: 30px 20px;
background: rgba(255,255,255,0.9);
color: #333;
max-width: 1100px;
margin: 30px auto;
border-radius: 10px;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.preview-text {
    font-size: 16px;
    color: #333;
}

.full-article {
    display: none;
    margin-top: 10px;
}

.read-more-btn {
    background-color: #ff4757;
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 10px;
}

.read-more-btn:hover {
    background-color: #e84118;
}

/* Social Media Buttons */
.share-buttons {
  margin-top: 15px;
}

.share-btn {
  display: inline-block;
  padding: 8px 12px;
  margin-right: 5px;
  color: white;
  text-decoration: none;
  border-radius: 15px;
  border-color: rgb(255, 255, 255,0.1);
  font-size: 12px;
  cursor: pointer;
}

.facebook { background-color: #3b5998; }
.twitter { background-color: #1da1f2; }
.linkedin { background-color: #0077b5; }
.whatsapp { background-color: #25d366; }

.share-btn:hover {
  opacity: 0.9;
  background-color: #708090; /* Slightly darker on click */
}

.share-btn:active {
  background-color: #708090; /* Slightly darker on click */
}


  /* ---------------------------------
     7) Responsive Adjustments
  ---------------------------------- */
  @media (max-width: 768px) {
   
    .my-background {
        background-image: url('images/IMG_4290.JPG');
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover; /* or "contain", depending on your goal */
      }
              
    .navbar ul {
      flex-wrap: wrap;
      justify-content: center;
    }
    .navbar li {
      margin: 5px 10px;
    }
  
    .logo-container {
      max-width: 90px; 
    }
  
    .hero-content h1 {
      font-size: 2.2rem;
    }
    .hero-content p {
      font-size: 1rem;
    }
  
    .btn-primary, .btn-secondary {
      font-size: 0.9rem;
    }
  }
  
  @media (max-width: 480px) {
    .logo-container {
      max-width: 80px;
    }
    .hero-content h1 {
      font-size: 2rem;
    }
  }
  @media (max-width: 480px) {
    .my-background {
      background-size: contain;       /* to see the entire image */
      background-attachment: scroll;  /* avoid parallax issues on mobile */

      .iphone-fix-img {
        max-width: 100% !important;
        height: auto !important;
        display: block; /* optional but helps remove whitespace below inline imgs */
    }
    
    .hero {
        background-size: contain !important; 
        background-position: center !important;
        background-attachment: scroll !important; /* iOS often ignores 'fixed' */
    }
}
  }

  /* Override on mobile */
@media only screen and (max-width: 768px) {
    .hero-section {
      background: scroll;
    }
  }


  /*DASHBOARD STYLING*/

      .dashboard-card {
      background-color: #f7f7f7;
      border-radius: 10px;
      padding: 20px;
      box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
      margin-bottom: 30px;
    }

    .dashboard-card h3 {
      margin-top: 0;
      margin-bottom: 10px;
      color: #444;
    }

    .dashboard-card p {
      margin: 4px 0;
    }

    form input,
    form textarea {
      width: 100%;
      padding: 8px;
      margin: 6px 0 12px;
      border: 1px solid #ccc;
      border-radius: 6px;
    }

    .btn-primary,
    .btn-secondary {
      margin-top: 10px;
    }

/* Progress Photo Gallery */
#photoGallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

#photoGallery img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

#photoGallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

/* Upload area */
.photo-upload-section {
  margin-top: 30px;
  padding: 15px;
  border: 1px dashed #ccc;
  border-radius: 10px;
  text-align: center;
  background-color: #f9f9f9;
}

.photo-upload-section input[type="file"] {
  margin: 10px 0;
}

#uploadStatus {
  margin-top: 10px;
  font-weight: 500;
}

#photoGallery {
  display: flex;
  flex-wrap: nowrap;
  gap: 16px;
  overflow-x: auto;
  padding: 12px 0;
  scroll-behavior: smooth;
}

.photo-thumb {
  max-height: 120px;
  border-radius: 8px;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.photo-thumb:hover {
  transform: scale(1.05);
}

/* GRAPTHS */
.graph-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.graph-block {
  flex: 1 1 45%;
  min-width: 300px;
}

@media (max-width: 768px) {
  .graph-container {
    flex-direction: column;
  }
}

.form-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.form-group {
  flex: 1;
  min-width: 140px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}

.form-group input {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.metrics-section {
  margin-top: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 10px;
  background: #fdfdfd;
}

.metrics-section summary {
  font-size: 1.2rem;
  cursor: pointer;
  margin-bottom: 10px;
}

.metrics-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

.metrics-table th,
.metrics-table td {
  padding: 8px;
  border: 1px solid #ddd;
  text-align: left;
}

.metrics-table input {
  width: 100%;
  padding: 6px;
  box-sizing: border-box;
}

.metric-bar {
  margin-bottom: 12px;
}

.metric-bar-label {
  font-weight: bold;
  margin-bottom: 4px;
}

.progress-bar-container {
  background-color: #eee;
  border-radius: 8px;
  overflow: hidden;
  height: 20px;
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(to right, #4CAF50, #81C784);
  width: 0%;
  transition: width 0.6s ease;
  color: white;
  font-size: 12px;
  text-align: center;
  line-height: 20px;
}

.profile-section {
  background-color: #f9f9f9;
  padding: 1rem;
  margin-bottom: 1.5rem;
  border: 1px solid #ddd;
  border-radius: 8px;
}

.profile-section summary {
  cursor: pointer;
  font-size: 1.1rem;
  padding: 0.25rem 0;
}

.log-section {
  background: #f9f9f9;
  padding: 1rem;
  border: 1px solid #ccc;
  border-radius: 12px;
  margin-top: 1rem;
  font-size: 1rem;
}

.log-section summary {
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.log-section form {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

#workoutStreak, #mealStreak {
  margin-top: 0.5rem;
  background: #fff9c4;
  border-left: 5px solid #708090;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.streak-display {
  margin-top: 0.5rem;
  background: #fff9c4;
  border-left: 5px solid #708090;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  font-size: 1.2rem;
  font-weight: 600;
  animation: bounce 1s ease-in-out infinite;
  display: inline-block;
}

.streak-emoji {
  animation: bounce 0.8s ease-in-out infinite;
  display: inline-block;
}


/* Make booked dates visually disabled */
#calendar .booked {
  background: #f1f3f5;
  color: #8a8f98;
  cursor: not-allowed;
}

/* ===================================== */
/* 1. Private Studio Feature - Text & Equipment List */
/* ===================================== */

/* Use the clean background from the gallery */
.private-studio-feature {
    background: #f9f9f9;
    padding-top: 40px;
    padding-bottom: 40px;
}

.private-studio-feature .container {
    max-width: 900px;
    margin: 0 auto;
    text-align: left; /* Keep text left-aligned */
}

/* Main heading for the section */
.private-studio-feature h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #333; /* Darker for contrast */
    text-align: center;
    margin-bottom: 15px;
}

/* Sub-heading for equipment */
.private-studio-feature h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #333; /* Use same dark color */
    margin-top: 40px; /* Space above */
    margin-bottom: 10px;
    text-align: center;
}

/* Lead paragraph styling */
.private-studio-feature .lead {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.7;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px; /* Space below lead */
}

/* Paragraph before the list */
.private-studio-feature .container > p {
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 25px auto;
}

/* The <ul> container for the equipment list */
.equipment-list {
    list-style: none; /* Remove default bullets */
    padding-left: 0;
    margin-top: 30px;
    
    /* Modern grid layout for the boxes */
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns on desktop */
    gap: 20px;
}

/* The <li> items (the boxes) */
.equipment-list li {
    background: #fff;
    border-radius: 10px;
    padding: 20px 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    
    /* Animation: Interactive hover */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    
    /* For the custom bullet */
    position: relative;
    padding-left: 45px; /* Make space for the icon */
    
    font-size: 0.95rem;
    line-height: 1.6;
    color: #333;
    
    /* This ensures AOS animations work correctly */
    opacity: 1; 
}

/* The hover animation */
.equipment-list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

/* Custom "bullet" icon */
.equipment-list li::before {
    content: '✓'; /* Checkmark icon */
    position: absolute;
    left: 15px;
    top: 20px;
    
    /* Style the icon */
    color: #708090; /* Use site's accent color */
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1;
}

/* Style the <strong> tag inside the list */
.equipment-list li strong {
    color: #000;
}

/* Button below the list */
.private-studio-feature .hero-buttons {
    text-align: center; /* Center the button */
    margin-top: 40px;
}


/* --- Mobile Responsive for Equipment List --- */
@media (max-width: 768px) {
    .private-studio-feature h2 {
        font-size: 1.8rem;
    }
    .private-studio-feature h3 {
        font-size: 1.5rem;
    }
    .private-studio-feature .lead {
        font-size: 1.05rem;
    }

    /* Stack the boxes on mobile */
    .equipment-list {
        grid-template-columns: 1fr; /* Single column */
        gap: 15px;
    }
    
    .equipment-list li {
        padding: 15px 20px;
        padding-left: 40px; /* Adjust for icon */
    }
    
    .equipment-list li::before {
        top: 15px;
    }
}

/* ===================================== */
/* 2. Studio Image Gallery (Final Version) */
/* ===================================== */

.private-studio-feature .studio-visual {
    width: 100%;
    max-width: 1000px; 
    margin: 30px auto 40px auto;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    background-color: #fff;
    padding: 15px; 
}

/* --- DESKTOP: 4-Column Grid for Portrait Images --- */
.private-studio-feature .gallery-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 15px;
}

.private-studio-feature .gallery-wrapper .gallery-img {
    width: 100%;
    height: auto; /* No fixed height */
    object-fit: unset; /* Do not crop */
    
    border-radius: 8px; 
    display: block; 
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.private-studio-feature .gallery-wrapper .gallery-img:hover {
    transform: scale(1.04);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    z-index: 10;
}


/* ======================================================== */
/* FINAL MOBILE FIX (Small & Neat Vertical Stack) */
/* ======================================================== */
@media (max-width: 650px) {

    /* This ensures the parent section is full width on mobile */
    .section, 
    .private-studio-feature {
        max-width: 100% !important; 
        padding-left: 0 !important;
        padding-right: 0 !important;
        box-shadow: none !important; 
        border-radius: 0 !important;
    }

    /* Target the text container to put padding back on the text content */
    .section .container {
        padding: 0 15px;
    }
    
/* This is the main container for the gallery */
.private-studio-feature .studio-visual {
    /* --- THIS IS THE FIX --- */
    /* Removed the 100vw, max-width, and margin-left/right lines. */
    /* It will now respect the parent container's padding. */
    width: 100%; 
    padding: 15px !important; 
    
    border-radius: 0;
    background: #fdfdfd;
    border: none;
    box-shadow: none;
    overflow: hidden !important; /* No scrolling */
}

/* This wrapper will stack the images */
.private-studio-feature .gallery-wrapper {
    display: grid !important; 
    grid-template-columns: 1fr !important; /* Single column */
    width: 100% !important; /* Fit the container */
        gap: 15px; /* Neat space between images */
        padding: 0 !important;
        justify-items: center; /* Center the images horizontally */
    }
    
    /* This is the individual images */
    .private-studio-feature .gallery-wrapper .gallery-img,
    .private-studio-feature .gallery-wrapper .gallery-img:nth-child(n) {
        
        /* --- THIS IS THE "SMALLER" FIX --- */
        width: 70% !important; /* Make images 70% of the container width */
        max-width: 280px; /* Max width for any device */
        
        height: auto !important; /* Height is automatic */
        
        /* Clear all old/conflicting styles */
        flex: unset !important; 
        object-fit: unset !important; 
        background-color: transparent !important;
        scroll-snap-align: unset !important; 
        transform: none !important;
        margin-right: 0 !important; 
    }
    
    /* No longer needed */
    .private-studio-feature .gallery-wrapper .gallery-img:last-child {
        margin-right: 0; 
    }
}

/* ===================================== */
/* 4. Consultation Form Styles */
/* ===================================== */

#booking-form {
    text-align: left;
}

/* This creates the side-by-side rows */
.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 15px;
}

/* This makes each field in a row grow to fit */
.form-row .form-group {
    flex: 1;
    min-width: 200px; /* Fields will stack on mobile */
}

/* This is for full-width fields like textareas */
.form-group {
    margin-bottom: 15px;
}

#booking-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

/* This re-uses your existing form styles */
#booking-form input[type="text"],
#booking-form input[type="email"],
#booking-form input[type="tel"],
#booking-form input[type="number"],
#booking-form input[type="time"],
#booking-form select,
#booking-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    box-sizing: border-box; /* Important for padding */
}

/* Make sure the submit button is full width */
#booking-form input[type="submit"] {
    width: 100%;
    margin-top: 10px;
}

/* ===================================== */
/* 5. CALENDAR DISCLAIMER BOX */
/* ===================================== */

.calendar-disclaimer {
    padding: 16px 20px;
    margin: 20px 0 25px 0; /* Space above and below */
    
    /* Use your site's gold accent color */
    background-color: #fdfaf5; 
    border-left: 5px solid #708090; 
    
    border-radius: 8px;
    line-height: 1.6;
    text-align: left;
}

.calendar-disclaimer p {
    margin: 0;
    color: #555;
    font-size: 1rem;
}

.calendar-disclaimer p:first-child {
    margin-bottom: 5px;
}

.calendar-disclaimer strong {
    color: #333;
    font-weight: 700;
}