html, body {
    margin: 0;
    padding: 0;
    background: #FFF;
    height: 100%;
    font-family: "proxima-nova", Helvetica, Arial, sans-serif;
    color: #536C6C;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 300;
}


input, textarea { font-family: "proxima-nova", Helvetica, Arial, sans-serif; color: #536C6C; }

a img, a {
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    text-decoration: none;
    border: none;
}

a:hover img, a:hover {
    text-decoration: none;
    border: none;
}

.clear {
    clear: both;
}

a {
    color: #536C6C;
}

a:hover {
    color: #000;
}

:focus, textarea:focus, input:focus {
    outline: none;
}



h1, h2, h3, h4, h5, h6, h7 {
    font-weight: 300;
}


::placeholder {
  color: #CCC;
  opacity: 1; /* Firefox */
    font-family: "proxima-nova", Helvetica, Arial, sans-serif; font-weight: 300;
}

::-ms-input-placeholder { /* Edge 12 -18 */
  color: #CCC; font-weight: 300;
    font-family: "proxima-nova", Helvetica, Arial, sans-serif;
}




.classtitle { display: none !important; }

.video-header {
    position: relative;
    height: 100vh;
    max-height: 1400px;
    min-height: 600px;
    overflow: hidden;
}

.video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.header-content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
    padding: 20px;
}

.container {
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 20px;
}


.container2 { 
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 20px;
}


.container3 { 
    max-width: 1200px;
    margin: 0 auto;
    display: block;
    padding: 5px 20px;
}

.text-container {
    max-width: 500px;
    text-align: left;
    margin-top: 130px;
}

.text-container h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, .5);
}

.text-container hr {
    border: none;
    border-top: 2px solid white;
    margin: 20px 0;
    width: 100%;
}

.text-container h2 {
    font-size: 1.9rem;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, .5);
}

.facebook-link {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 3; /* Adjusted to layer correctly */
}

.facebook-link img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
    transition: filter 0.3s;
}

.facebook-link span {
    font-size: 0.8rem;
    color: white;
    opacity: 0.8;
    flex-wrap: wrap;
    text-align: center;
    font-weight: bold;
}

.facebook-link:hover img {
    filter: brightness(1);
}

.video-text-container {
    position: absolute;
    max-width: 400px;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 3; /* Ensures it overlays correctly */
}

.youtube-thumbnail img {
    width: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s;
}

.youtube-thumbnail img:hover {
    transform: scale(1.05);
}

.additional-text {
    text-align: left;
    color: #fff;
    margin-top: 10px;
}

.additional-text h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    margin-top: 0;
}

.additional-text p {
    font-size: 0.9rem;
    line-height: 1.4;
    max-width: 500px;
}





.membership-section {
    background-color: #536C6C; /* Background color for the section */
    padding: 40px 20px; /* Padding for spacing */
    text-align: center; /* Center the text */
}

.membership-container {
    max-width: 800px; /* Maximum width of the content */
    margin: 0 auto; /* Center the container */
    color: #ffffff; /* Text color */
}

.membership-heading {
    font-size: 2rem; /* Font size for the heading */
    margin-bottom: 20px; /* Space below the heading */
    font-weight: 300; /* Light font weight */
}

.membership-text {
    font-size: 1rem; /* Font size for the paragraph */
    line-height: 1.6; /* Line height for readability */
    margin-bottom: 30px; /* Space below the text */
    font-weight: 300; /* Light font weight */
}

.membership-button {
    display: inline-block; /* Make the button inline-block */
    background-color: #4A9F9F; /* Button color */
    color: #ffffff; /* Button text color */
    padding: 10px 18px 8px 18px;
    font-size: 1rem; /* Font size for the button text */
    text-decoration: none; /* Remove underline */
    border-radius: 20px; /* Rounded corners */
    transition: background-color 0.3s ease; /* Smooth transition */
    font-weight: 400; /* Slightly bolder font weight for the button */
}

.membership-button:hover {
    background-color: #000000; /* Button color on hover */
    color: #ffffff;
}








.info-section {
    padding: 60px 20px; /* Add padding for spacing */
    background-color: #f5f5f5; /* Light background for contrast */
}

.info-container {
    max-width: 1500px; /* Align with existing container width */
    margin: 0 auto; /* Center the container */
}

.info-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 60px; /* Space between blocks */
}

.info-block:nth-child(even) .info-image {
    order: -1; /* Reverse order on even blocks for alternating layout */
}

.info-text {
    flex: 1;
    max-width: 40%;
    padding: 20px;
    box-sizing: border-box;
}

.info-heading {
    font-size: 1.8rem; /* Size heading appropriately */
    margin-bottom: 20px;
    font-weight: 400;
    color: #536C6C;
}

.info-description {
    font-size: 1rem;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #536C6C;
}

.info-image {
    flex: 1;
    max-width: 60%;
    padding: 20px;
    box-sizing: border-box;
}

.info-image img {
    width: 100%;
    height: auto;
}

.info-button {
    display: inline-block;
    background-color: #4A9F9F; /* Consistent button color */
    color: #ffffff;
    padding: 6px 18px 8px 18px;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 20px;
    transition: background-color 0.3s ease;
    font-weight: 400; /* Button text boldness */
}

.info-button:hover {
    background-color: #000000; /* Button hover color */
    color: #ffffff;
}


.info-button::after {
    content: "→"; /* Arrow symbol */
    font-size: 1.5rem; /* Larger font size for the arrow */
    margin-left: 10px; /* Space between text and arrow */
    transition: margin-left 0.3s ease, transform 0.3s ease; /* Smooth transitions */
}

.info-button:hover {
    background-color: #000000; /* Button hover color */
}

.info-button:hover::after {
    margin-left: 15px; /* Move arrow further on hover */
    transform: translateX(10px); /* Slight horizontal move on hover */
}







.lake-hiring-section {
    display: flex; /* Use Flexbox */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    height: 100%;
    max-height: 900px;
    min-height: 400px;
    background-image: url('../img/map.jpg'); /* Full-width background image */
    background-size: cover; /* Cover entire section */
    background-position: center; /* Center the image */
    background-attachment: fixed; /* Create parallax effect */
    text-align: center; /* Center text */
    color: #ffffff; /* Text color for contrast */
    position: relative;
    overflow: hidden; /* Prevent content overflow */
}

.lake-hiring-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(83, 108, 108, 0.8); /* Semi-transparent overlay */
    z-index: 1; /* Ensure the overlay is beneath the content */
}

.lake-hiring-content {
    position: relative;
    z-index: 2; /* Place content above the overlay */
    max-width: 800px; /* Max width for content */
    padding: 20px; /* Inner padding for text */
    margin: 0 20px; /* Add horizontal margin for small screens */
}

.lake-hiring-heading {
    font-size: 2rem; /* Font size for heading */
    margin-bottom: 20px; /* Space below heading */
    font-weight: 400; /* Font weight */
}

.lake-hiring-text {
    font-size: 1rem; /* Font size for text */
    line-height: 1.6; /* Line height for readability */
    margin-bottom: 30px; /* Space below text */
    color: #ffffff; /* Ensure text contrast */
}

.lake-hiring-button {
    display: inline-block;
    background-color: #4A9F9F; /* Button color */
    color: #ffffff;
    padding: 6px 18px 8px 18px;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 20px;
    transition: background-color 0.3s ease;
    font-weight: 400;
    position: relative;
}

.lake-hiring-button::after {
    content: "→"; /* Arrow symbol */
    font-size: 1.5rem; /* Larger font size for the arrow */
    margin-left: 10px; /* Space between text and arrow */
    transition: margin-left 0.3s ease, transform 0.3s ease;
}

.lake-hiring-button:hover {
    background-color: #000000; /* Hover color */
    color: #FFF;
}

.lake-hiring-button:hover::after {
    margin-left: 15px; /* Move arrow further on hover */
    transform: translateX(2px); /* Move arrow slightly on hover */
}








.history-banner { width: 100%; height: 100%; min-height: 500px; background: #536C6C; position: relative; background: url("../img/history.jpg") no-repeat top fixed; background-size: cover; }

.history-banner .banner-text { position: absolute; width: 90%; max-width: 700px; left: 50%; top: 50%; transform: translate(-50%, -50%); text-align: center; z-index: 99; }
.history-banner .banner-text h1 { font-size: 2.6rem; margin: 0 0 30px 0; line-height: 1.2; color: #fff; }
.history-banner .banner-text h2 { font-size: 1.5rem; color: #fff; line-height: 1.2; }

.history-banner .banner-text h1 strong { font-weight: 300; display: block; }

.history-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(83, 108, 108, 0.8); /* Semi-transparent overlay */
    z-index: 1; /* Ensure the overlay is beneath the content */
}


.facilities-banner { width: 100%; height: 600px; min-height: 500px; position: relative; 
    background:#536C6C url("../img/facilities.jpg") no-repeat bottom center; background-size: cover; 
}








.timeline-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 40px 0;
    max-width: 1199px;
    margin: auto;
}

.timeline {
    position: relative;
    width: 100%; 
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline-list {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
}

.timeline-list::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: url('../img/dash.jpg') repeat-y; /* Replace with your image path */
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 20px;
    box-sizing: border-box;
}

.timeline-item a { color: #FFF; font-weight: bold; }

.timeline-item img { display: block; width: 100%; }

.timeline-content {
    background-color: #536C6C;
    color: white;
    padding: 20px;
    position: relative;
    z-index: 2;
    /*  max-width: 280px; Max width of the timeline content box */
    margin: 0 auto; /* Center content in its block */
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 20px;
    width: 0;
    height: 0;
    border-style: solid;
    z-index: 2;
}



.timeline-item h3 { font-size: 40px; margin:-15px 0 0 0; font-weight: bold; }


/* Align odd items to the left of the line */
.timeline-item:nth-child(odd) {
    left: 0;
    text-align: left;
    transform: translateX(0px);
}

.timeline-item:nth-child(odd) h3 { text-align: right; }


.timeline-item:nth-child(odd) .timeline-content::before {
    right: -10px;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent #536C6C;
}

/* Align even items to the right of the line */
.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
    transform: translateX(-2px);
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -10px;
    border-width: 10px 10px 10px 0;
    border-color: transparent #536C6C transparent transparent;
}









.facilities-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.facilities-header {
    text-align: left;
    padding: 20px;
}

.facilities-header h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 400;
    color: #536C6C;
}

.facilities-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #536C6C;
    margin-bottom: 40px;
}



.facilities-header { }
.facilities-container { }
.facilities-text { float: left; width: 45%; }
 
.facilities-image { float: right; width: 45%; }
.facilities-image img { width: 100%; }







.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay p {
    font-size: 1.5rem;
    font-weight: bold;
}


.fancybox-thumbs {
    display: block !important;
    visibility: visible !important;
}

.fancybox-thumbs img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}















/* Section Layout */
.membership-page {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 40px 0;
}

.membership-page-text {
    flex: 1;
    margin-right: 20px;
    padding: 20px;
    box-sizing: border-box;
    max-width: 600px;
}

.membership-page-text ul li { margin: 10px 0; }
.membership-page h2 { font-size: 2.2rem; line-height: 1.2; }


.membership-form {
    flex: 1;
    padding: 20px;
    box-sizing: border-box;
    max-width: 600px;
}

/* Text Section Styles */
.membership-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #536C6C;
}

.membership-text p {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #536C6C;
}

.membership-text ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.membership-text ul li {
    margin-bottom: 10px;
    list-style-type: disc;
}

.membership-text a {
    color: #4A9F9F;
    text-decoration: underline;
}

.membership-text a:hover {
    color: #000000;
}

/* Form Section Styles */
.membership-form h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #536C6C;
}

.membership-form p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #536C6C;
}

.membership-form input,
.membership-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #536C6C;
    font-size: 1rem;
    box-sizing: border-box;
}

.membership-form input[type="submit"] {
    background-color: #4A9F9F;
    color: #fff;
    cursor: pointer;
    border: none;
    transition: background-color 0.3s ease;
}

.membership-form input[type="submit"]:hover {
    background-color: #000000;
}













/* Events Header Styles */
.events-header {
    padding: 40px 20px 20px 20px;
    background-color: #ffffff;
    margin-bottom: 10px;
}

.event-intro { float: left; width: calc(100% - 400px); }


.events-header h2 {
    font-size: 2.2rem;
    line-height: 1.2;
    color: #536C6C;
    margin: 20px 0 0 0;
}

.events-header h3 {
    font-size: 1.3rem;
    color: #536C6C;
    margin:0;
}

.events-header p {
    font-size: 1rem;
    color: #536C6C;
    margin-bottom: 30px;
    line-height: 1.6;
}

.calendar-sync {
    margin-top: 20px;
    float: right;
    width: 400px;
}

.sync-link {
    width: 300px; display: block; height: auto;
    text-decoration: none;
    color: #ffffff;
    background-color: #4A9F9F;
    padding: 25px;
    transition: background-color 0.3s ease;
    border-radius: 20px;
    float: right;
}

.sync-link:hover {
    background-color: #5483C6; color: #ffffff !important;
}

.calendar-icon {
    width: 78px;
    height: 78px;
    float: right;
    margin-left: 20px;
}

.sync-text {
    float: left;
    width: calc(100% - 100px);
}

.sync-text span {
    font-size: 2.5rem; line-height: 1.1;
    font-weight: bold;
}


.sync-text span bold {
  display: block;
}

.sync-subtext { display: block; text-align: center; }
.sync-subtext  p {
    font-size: 1rem; line-height: 1.3;
    color: #ffffff;
    margin: 20px 0 0 0;
}

/* Events List Styles */
.events-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
    margin: auto;
}

.event-item {
    display: flex;
    border: 2px solid #5483CB;
    margin-bottom: 20px;
    width: 100%;
    max-width: 800px;
    padding: 20px;
    background: #FFF;
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #5483CB;
    color: #ffffff;
    padding: 10px;
    width: 80px;
    text-align: center;
}

.event-date .day {
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1.1;
}

.event-date .month {
    font-size: 1.5rem;
    line-height: 1;
}

.event-info {
    padding-left: 20px;
    flex: 1;
}

.event-info h4 {
    font-size: 1.5rem;
    color: #5483CB;
    margin:10px 0 5px 0 ;
    font-weight: bold;
}

.event-info p {
    font-size: 1rem;
    color: #5483CB;
    line-height: 1.6;
}











.form-inner { max-width: 1200px; margin: auto; }

.form-inner p { max-width: 400px; color: #111; }

/* Main content container for the Lake Hire section */
.lake-hire-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: nowrap; /* Prevents wrapping */
    margin: 40px 0;
    box-sizing: border-box; /* Ensures padding is included in the width */
}

/* Text content, reduced to prevent overflow */
.lake-hire-text-content {
    flex: 0 0 48%;
    padding-right: 20px;
    box-sizing: border-box;
}

/* Image content, reduced to prevent overflow */
.lake-hire-image-content {
    flex: 0 0 48%;
    box-sizing: border-box;
}


/* Image grid layout */
.lake-hire-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.lake-hire-image-grid img {
    width: 100%;
    height: auto;
}

.lake-hire-single-image {
    grid-column: span 2;
}





/* Form section styling */
.lake-hire-form-section {
    background-color: #eef3fa;
    padding: 20px 40px 40px 40px;
}

.lake-hire-form-section h2 {
    font-size: 28px;
    margin-bottom: 5px;
    color: #333;
}

.lake-hire-form-section form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

.lake-hire-form-section input,
.lake-hire-form-section textarea {
    width: calc(100% - 40px);
    padding: 10px;
    border: none;
    font-size: 16px;
    margin: 0 20px;
}

.lake-hire-form-section textarea {
    resize: vertical;
}

.lake-hire-form-section button,
.lake-hire-form-section input[type=submit] {
    grid-column: span 2;
    padding: 15px;
    background-color: #3a99d9;
    color: white;
    border: none;
    border-radius: 20px;
    font-size: 18px;
    cursor: pointer;
}












.contact-banner {
    max-height: 600px;
    background: url("../img/map.jpg") no-repeat center center;
    background-size: cover;
    position: relative; 
}


.contact-banner .banner-overlay {
    width: 100%; height: 100%; position: absolute; z-index: 8; top: 0; left: 0;
    background: rgb(83,108,108);
    background: -moz-linear-gradient(180deg, rgba(83,108,108,1) 10%, rgba(83,108,108,0.4) 60%);
    background: -webkit-linear-gradient(180deg, rgba(83,108,108,1) 10%, rgba(83,108,108,0.4) 60%);
    background: linear-gradient(180deg, rgba(83,108,108,1) 10%, rgba(83,108,108,0.4) 60%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#536c6c",endColorstr="#536c6c",GradientType=1);
}



.contact-banner .banner-text { z-index: 20; color: #FFF; }


.contact-banner .banner-text h1 { font-size: 2.3rem; margin: 0 0 10px 0; line-height: 1.2; }
.contact-banner .banner-text h2 { font-size: 1.2rem; margin: 0 0 30px 0; line-height: 1.4; }












/* Container for the entire Contact Us section */
.contact-us-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Contact Information Column */
.contact-info-column {
    flex: 0 0 45%;
    box-sizing: border-box;
    padding-right: 20px;
}

/* Contact Form Column */
.contact-form-column {
    flex: 0 0 45%;
    box-sizing: border-box;
    padding-left: 20px;
}

/* Form inputs and text areas */
.contact-form-column input,
.contact-form-column textarea {
    width: calc(50% - 10px); /* Two columns with 20px gap */
    margin-bottom: 20px;
    padding: 10px;
    font-size: 16px;
    box-sizing: border-box;
}

.contact-form-column input[type="text"] {
    width: 100%; /* Full width for single input fields */
}

.contact-form-column textarea {
    width: 100%; /* Full width for textarea */
    height: 150px;
    resize: none; /* Prevent resizing */
}

/* Button Container */
.contact-form-button-container {
    width: 100%;
    text-align: center;
}

/* Button Styling */
.contact-form-button-container button {
    width: 200px;
    padding: 10px 0;
    background-color: #536C6C;
    color: #fff;
    font-size: 18px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-info-column,
    .contact-form-column {
        flex: 0 0 100%;
        padding: 0;
    }

    .contact-form-column input,
    .contact-form-column textarea {
        width: 100%;
    }

    .contact-form-button-container button {
        width: 100%;
    }
}
















/* Responsive styling */
@media (min-width: 768px) {
    .lake-hire-content {
        flex-wrap: nowrap;
    }

    .lake-hire-text-content {
        flex: 0 0 60%;
        padding-right: 20px;
    }

    .lake-hire-image-content {
        flex: 0 0 40%;
    }

    .lake-hire-form-section form {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767px) {
    .lake-hire-content {
        flex-direction: column;
        flex-wrap: wrap;
    }

    .lake-hire-text-content,
    .lake-hire-image-content {
        flex: 0 0 100%;
    }

    .lake-hire-image-grid {
        grid-template-columns: 1fr;
    }

    .lake-hire-single-image {
        grid-column: span 1;
    }

    .lake-hire-form-section form {
        grid-template-columns: 1fr;
    }

    .lake-hire-form-section button {
        grid-column: span 1;
    }
}

@media (max-width: 480px) {
    .lake-hire-text-content h1 {
        font-size: 24px;
    }

    .lake-hire-form-section h2 {
        font-size: 24px;
    }

    .lake-hire-form-section input,
    .lake-hire-form-section textarea {
        font-size: 14px;
        padding: 8px;
    }

    .lake-hire-form-section button {
        font-size: 16px;
        padding: 12px;
    }
}









@media screen and (max-width: 880px) {
    .events-header h2 {
        font-size: 1.8rem;
    }
    
    .events-header h3 {
        font-size: 1.2rem;
    }
    
    .events-header p {
        font-size: 0.9rem;
    }
    
    .sync-link {
        padding: 15px;
    }
    
    .sync-text span {
        font-size: 1.8rem;
    }
    
    .sync-subtext p {
        font-size: 0.85rem;
    }
    
    .calendar-sync {
        margin-top: 20px;
        float: right;
        width: 300px;
    }
    
    .sync-link {
        width: 260px;
    }
    
    .calendar-icon {
        width: 68px;
        height: 68px;
        float: right;
        margin-left: 20px;
    }
    
    .event-intro {
        width: calc(100% - 330px);
    }
    
    .events-header {
    padding: 30px 20px 20px 20px;
    }
}


@media screen and (max-width: 641px) {
    
        .event-intro { width: 100%; clear: both; float: none; }
    .sync-link { float: none; margin: auto; }
    .calendar-sync { float: none; margin: auto; display: block; }

}



/* Responsive Styles */
@media (max-width: 768px) {

    .event-item {
        border: none; padding: 0;
        flex-direction: column;
        align-items: center;
    }

    .event-date {
        width: 100%;
        padding: 15px;
    }

    .event-info {
        padding-left: 0;
        text-align: center;
    }
}











/* Responsive Styles */
@media (max-width: 768px) {
    .membership-page {
        flex-direction: column;
    }

    .membership-text {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .membership-form {
        margin-top: 20px;
    }
}






/* Responsive Design */
@media (max-width: 768px) {
    .timeline-list::before {
        left: auto; right: 10px;
    }

    .timeline-item {
        width: 100%;
        padding: 20px;
        left: 0; /* Align all items to the left */
        transform: none;
        text-align: left;
    }

    .timeline-content {
        max-width: 90%;
        margin-left: 0px; /* Add some margin to center the content block on the left */
    }

    .timeline-content::before {
        left: auto;
        right: -10px; /* Ensure pointer is on the left of the content */
        border-width: 10px 10px 10px 0;
        border-color: transparent #4A9F9F transparent transparent;
    }

    .timeline-item h3 {
        text-align: left; /* Ensure text alignment is consistent */
    }
    
    
    .timeline-item:nth-child(even) { left: 0; }
    
    
    .timeline-item:nth-child(even) .timeline-content::before {
        left: auto;
        right: -10px;
        border-width: 10px 0 10px 10px;
        border-color: transparent transparent transparent #4A9F9F;
    }
    
    
    .timeline-item:nth-child(odd) h3 { text-align: left; }
    
    
}















@media (max-width: 1024px) {
    .youtube-thumbnail {
        display: none;
    }

    .video-text-container {
        position: absolute;
        bottom: 20px;
        right: 0;
        left: 0;
        width: 100%;
        max-width: 100%;
        padding: 0px;
        background-color: transparent;
    }

    .additional-text {
        margin: 0 auto;
        padding: 20px;
        line-height: 1.6;
        text-align: center;
    }
    
    .additional-text p { margin: auto; max-width: 90%; }

    .facebook-link img {
        width: 30px;
        height: 30px;
    }

    .facebook-link span {
        font-size: 0.7rem;
    }
    
    .facebook-link { display: none; }
}

@media (max-width: 800px) {
    
        
    .info-block { display: block; }
    .info-image { flex: none; width: 100%; max-width: 100%; }
    .info-text { flex: none; width: 100%; max-width: 100%;}
    
    
    .text-container {
        max-width: 300px;
    }

    .text-container h1 {
        font-size: 1.8rem;
    }

    .text-container h2 {
        font-size: 1.2rem;
    }

    .text-container hr {
        border-top: 1px solid white;
    }

    .additional-text {
        max-width: 90%;
        padding: 5px 0;
    }

    .youtube-thumbnail img {
        width: 100%;
        max-width: 300px;
    }

    .facebook-link img {
        width: 30px;
        height: 30px;
    }

    .facebook-link span {
        font-size: 0.7rem;
    }
}






/* Responsive Styles */
@media (max-width: 768px) {
    .membership-heading {
        font-size: 1.5rem; /* Adjust font size for smaller screens */
    }

    .membership-text {
        font-size: 0.9rem; /* Adjust font size for readability on mobile */
    }

    .membership-button {
        font-size: 0.9rem; /* Adjust button font size */
        padding: 12px 25px; /* Adjust button padding */
    }
}

@media (max-width: 480px) {
    .membership-section {
        padding: 30px 15px; /* Adjust padding for very small screens */
    }

    .membership-heading {
        font-size: 1.3rem; /* Further reduce font size */
    }

    .membership-text {
        font-size: 0.8rem; /* Smaller font for text */
    }

    .membership-button {
        font-size: 0.8rem; /* Smaller font for the button */
        padding: 10px 20px; /* More compact button padding */
    }
}