table {
    width: 100%;
    margin: 0 auto;
    border-collapse: collapse;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

th,
td {
    padding: 15px;
    text-align: left;
}

th {
    background: linear-gradient(-112deg, #0be6e6, #028b8b);
    color: white;
}

a {
    color: black !important;
}

td {
    border-bottom: 1px solid #ddd;
}

tr:hover {
    background-color: #f1f1f1;
}

.highlight {
    font-weight: bold;
    color: #002B66;
}

.note {
    margin: 20px auto;
    width: 100%;
    text-align: center;
    font-style: italic;
}

.reserve-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: white;
    color: #849081 !important;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.3s;
    font-size: 16px;
    width: 150px;
    height: 50px;
    transform: scale(1.15);
}

.reserve-button-main {
    background-color: #bba68f;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.3rem;
    transition: background-color 0.3s ease;
}

.reserve-button:hover {
    transform: scale(1.25);
    text-decoration: none;
}

.button-container-navbar {
    display: inline-block;
    text-decoration: none;
    padding: 2px 15px;
    background: linear-gradient(45deg, #0be6e6, #028b8b);
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 139px;
    font-weight: bold;
    font-size: 1.4em;
    background-size: 200% 200%;
    transition: background-color 0.3s, transform 0.3s;
}

.button-container-navbar:hover {
    background-color: #333333;
    transform: scale(1.05);
    text-decoration: none;
}

.hover-effect {
    transition: transform 0.3s;
    /* Smooth transition */
}

.hover-effect:hover {
    transform: scale(1.05);
    /* Scale up slightly on hover */
}

.studio-container img {
    height: 390px !important;
    max-width: 600px !important;
 transition: transform 0.2s ease;
   width: 550px !important;
}

.cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background-color: #fff;
  color: #333;
  padding: 16px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  font-size: 14px;
  max-width: 600px;
  margin: auto;
}

.cookie-popup button {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
}

.cookie-popup button:hover {
  background-color: #0056b3;
}

.cookie-popup.hidden {
  display: none;
}
#scrollToTop {
  position: fixed;
  bottom: 24px;
  left: 20px;
  z-index: 1000;
  background-color: rgb(187, 166, 143);
  color: white;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 0;
  pointer-events: none;
}
.hamburger-menu {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 9999;
}

#hamburger {
  background: rgb(187, 166, 143);
  color: white;
  font-size: 24px;
  border: none;
  padding: 10px 14px;
  border-radius: 6px;
  cursor: pointer;
}

.menu {
  margin-top: 10px;
  background: white;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 10px;
  min-width: 120px;
}

.menu a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
}

.menu a:hover {
  text-decoration: underline;
}

.hidden {
  display: none;
}

#scrollToTop:hover {
  background-color: rgb(187, 166, 143);
  transform: translateY(-2px);
}

#scrollToTop.show {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 600px) {
    .studio-container img {
        height: 390px !important;
        max-width: 600px !important;
        margin: 0px 0px 50px 0px !important;
	width: 350px !important;
    }

    #price_pic {
	margin-left: auto !important;
    }

    .img-wrapper {
        width: 100% !important;
        height: auto;
        aspect-ratio: 1 / 1;
        /* Keeps it square */
    }

    .img-wrapper img {
        width: 100% !important;
        height: 100%;
        object-fit: cover;
    }
}

.content-container {
    display: flex;
    /* Aligns children in a row */
    margin: 20px;
    /* Adds spacing around the container */
    background-color: #fff;
    /* White background for the card effect */
    border-radius: 10px;
    /* Rounds the corners of the card */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    /* Adds a subtle shadow for depth */
    overflow: hidden;
    /* Ensures child elements respect the border radius */
    height: 400px;
    /* Set a fixed height to eliminate empty space */
}

.image-column {
    flex: 1;
    /* Allows image column to take space proportionally */
    padding: 0;
    /* Remove padding to fill space */
    display: flex;
    /* Use flexbox to center the image */
    justify-content: center;
    /* Center the image horizontally */
    align-items: center;
    /* Center the image vertically */
}

.text-column {
    flex: 2;
    /* Makes text column wider than the image column */
    padding: 20px;
    /* Adds padding inside the text column */
    display: flex;
    /* Use flexbox for better alignment */
    flex-direction: column;
    /* Stack items vertically */
    justify-content: center;
    /* Center text vertically */
}

main {
    background: linear-gradient(to bottom, #F7F0E8 20%, #CEC1B6 127%) fixed;
    background-repeat: no-repeat;
    background-size: cover;
    margin: 0;
}

main>div>.container {
    height: 100%;
    padding: 20px;
    background-color: #F7F0E8;
    /* border-radius: 10px; */
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
    background: FFF4EA
}

.hover-effect {
    transition: transform 0.3s;
    /* Smooth transform transition */
    max-height: 100%;
    /* Ensures the image does not exceed the column */
    object-fit: cover;
    /* Ensures the image covers the column without distortion */
}

.elegant-paragraph {
    line-height: 1.6;
    /* Increases line spacing for readability */
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #333;
    text-align: justify;
    /* Darker text for better contrast */
}

.navbar-brand {
    margin: auto !important;
}

.read-more-button {
    display: inline-block;
    /* Makes the button look like a button */
    margin-top: 15px;
    /* Space above the button */
    padding: 10px 15px;
    /* Padding inside the button */
    background-color: #232323;
    /* Button background color */
    color: white;
    /* Button text color */
    text-decoration: none;
    /* Remove underline */
    border-radius: 5px;
    /* Rounded corners */
    transition: background-color 0.3s;
    /* Smooth transition */
}

.read-more-button:hover {
    background-color: #333;
    /* Darker shade on hover */
}

body {
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

p {
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

body {
    opacity: 0;
    /* Start with the body hidden */
    transition: opacity 0.5s ease-in;
    /* Smooth transition for opacity */
}

body.fade-in {
    opacity: 1;
    /* Fully visible state */
}

header {
    height: 80vh;
}

.class-container {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
}

.mobile-title {
    font-size: 2em;
}

.link-container {
    display: flex;
    flex-wrap: wrap;
    /* Allow items to wrap to the next row */
    justify-content: space-between;
    /* Space out items evenly */
}

.link-item {
    text-decoration: none;
    /* Remove underline from links */
    flex: 1 1 calc(33.33% - 20px);
    /* Default: 3 items per row with margin */
    margin: 10px;
    /* Adjust margin as needed */
    text-align: center;
    /* Center the caption text */
}

.link-item a {
    text-decoration: none;
    /* Remove underline from links */
}

.caption {
    margin-top: 8px;
    /* Space between image and caption */
    font-size: 1rem;
    /* Font size for the caption */
    color: #232323;
    /* Text color for the caption */
    font-weight: bold;
    /* Make the caption bold */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .link-item {
        flex: 1 1 calc(50% - 20px);
        /* 2 items per row on medium screens */
    }
      [data-aos] {
    opacity: 1 !important;
    transform: none !important;
  }
}

html, body {  overflow-x: hidden !important;  width: 100%;  }

@media (max-width: 480px) {
    .link-item {
        flex: 1 1 calc(100% - 20px);
        /* 1 item per row on small screens */
    }
}

.link-item img {
    width: 90%;
    max-width: 400px;
    /* Limit maximum width */
    height: auto;
    /* Maintain aspect ratio */
    transition: transform 0.3s;
    max-height: 150px;
}


/* Optional hover effect */
.link-item img:hover {
    transform: scale(1.05);
    /* Slightly enlarge the image on hover */
}

.fullscreen-image {
    background-image: url('/path/to/your/4k-image.jpg');
    /* Replace with your image path */
    background-size: cover;
    /* Ensure the image covers the entire div */
    background-position: center;
    /* Center the image */
    background-repeat: no-repeat;
    /* Prevent the image from repeating */
    width: 100%;
    height: 100vh;
    /* Full height of the viewport */
    position: relative;
    /* Relative positioning for any child elements */
}

.dimmer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* Adjust opacity as desired */
    opacity: 0;
    /* Start transparent */
    animation: fadeIn 1.5s ease forwards;
    /* Animation settings */
}

/* Keyframes for the fade-in effect */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: .55;
    }
}

.carousel-control-next-icon {
    width: 100px !important;
    height: 150px !important;
}


.carousel-control-prev-icon {
    width: 100px !important;
    height: 150px !important;
}

.button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-decoration: none;
}

.reservation {
    display: inline-block;
    text-decoration: none;
    width: 25cm;
    padding: 2px 0;
    background: linear-gradient(45deg, #0be6e6, #028b8b);
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 139px;
    font-weight: bold;
    font-size: 3.4em;
    background-size: 200% 200%;
    transition: background-position 1s ease;
}

.phone-reservation {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-decoration: none;
}

.reservation:hover {
    text-decoration: none;
    color: black !important;
    background-position: right center;
    /* Change the position of the gradient on hover */
}

.pilates-logo {
    height: 172px;
}

body a {
    text-decoration: none;
}


/* Responsive styles */
@media (max-width: 768px) {
    /* header { */
    /* height: auto; */
    /* } */
    
    .studio-container.reverse-on-mobile div {
        margin-left: 0px !important;
    }
    /* Reverse every second .studio-container on mobile */
    .studio-container.reverse-on-mobile {
        flex-direction: column-reverse;
        /* Reverse column order */
    }

    .class-container {
        flex-flow: column;
    }

    .mobile-title {
        font-size: medium !important;
        font-size: 2em;
    }

    .pilates-logo {
        height: 90px !important;
    }

    .button-container-navbar .booking-link {
        font-size: 0.9rem;
        /* Smaller font size */
        padding: 5px 10px;
        /* Smaller padding */
    }

    .navbar-brand {
        font-size: 1.1rem;
        /* Optionally reduce the brand size */
    }

    footer div {
        flex-direction: column;
        /* Stack sections vertically on small screens */
        align-items: center;
        /* Center items */
    }

    iframe {
        height: 200px;
        /* Fixed height for the map iframe */
    }

    .studio-container {
        flex-direction: column;
        /* Stack items vertically on mobile */
        text-align: center;
        /* Center-align text */
    }

    .studio-container:nth-of-type(2n) {
        flex-direction: column-reverse;
        /* Reverse order for even items */
    }

    .studio-text-column {
        order: 1;
        /* Text should be first */
        flex: none;
        /* Prevent text from stretching */
    }

    .studio-hover-effect {
        order: 2;
        /* Image should be second */
        width: 100%;
        /* Full width on mobile */
        max-width: none;
        /* Remove max width */
    }

    .studio-container a {
        margin-left: 0px !important;
    }
}

@media (max-width: 480px) {
    h2 {
        font-size: 1.5em;
        /* Adjust header size for smaller screens */
    }

    p {
        font-size: 0.9em;
        /* Adjust paragraph size for smaller screens */
    }
}

.info-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Center the text blocks */
    font-size: x-large;
}

.info-container p {
    color: white;
    text-align: center;
    border-radius: 15px;
    /* Rounded corners */
    margin: 10px 0;
    /* Space between paragraphs */
    width: 80%;
    /* Adjust width as needed */
    transition: transform 0.3s ease;
    /* Animation on hover */
}

.info-container p:hover {
    transform: translateY(-5px);
    /* Slightly raise the paragraph on hover */
}

.container {
    max-width: 1701px;
    /* height: 500px; */
    background-color: transparent !important;
}

.studio-container {
    display: flex;
    /* Use flexbox for layout */
    align-items: center;
    /* Center items vertically */
    max-width: 100% !important;
    margin: 20px auto;
    /* Space between items */
    text-align: left !important;
    background-color: transparent !important;
}


/* .studio-container:nth-child(2n) {
    gap: 50px; 
} */

.studio-text-column {
    display: flex;
    /* Use flexbox for text layout */
    flex-direction: column;
    /* Stack text elements vertically */
}

.studio-hover-effect {
    transition: transform 0.3s;
    /* Transition for hover effect */
}

.studio-hover-effect:hover {
    transform: scale(1.05);
    /* Scale image on hover */
}

.montserrat-forme {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}


.team-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 24px;
    margin: 0 auto;
}

.team-member {
    width: calc(33.333% - 16px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
}
.team-image {
    transition: transform 0.2s ease;
}
.team-image:hover {
    transform: scale(1.05) !important;
}


.studio-container img:hover {
    transform: scale(1.05) !important;
}
.class-button {
    transition: transform 0.2s ease;
}
.class-button:hover {
    transform: scale(1.05) !important;
}



.info {
    margin-top: 16px;
    width: 100%;
}

.info h3 {
    font-size: 1.2rem;
}

.info .role {
    margin: 4px 0;
    font-weight: 500;
    color: #555;
}

.info .details {
    font-size: 0.9rem;
    color: #666;
}

/* Responsive for smaller screens */
@media (max-width: 900px) {
    .team-member {
        width: calc(50% - 12px);
    }
}

@media (max-width: 600px) {
    .team-member {
        width: 100%;
    }
}

.img-wrapper {
    height: 600px;
    width: 500px;
    /* Choose desired uniform height */
    overflow: hidden;
    border-radius: 8px;
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Keeps aspect ratio & fills space */
    display: block;
}

.founder-intro {
    max-width: 600px;
    margin: 2rem auto;
    font-family: 'Helvetica Neue', sans-serif;
    color: #333;
}

.founder-intro h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.founder-intro ul {
    list-style-type: disc;
    padding-left: 1.5rem;
}

.founder-intro li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}
