/* Global */
.btn-primary {
    display: inline-block;
    background-color: #fff;
    color: #0097B2;
    font-size: 18px;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
    border: none;
}

h2 {
    color: #0097B2;
}

.btn-primary:hover {
    background-color: #0056b3;
    color: #fff;
}

.buttons {
    display: inline-block;
}

.btn-secondary {
    display: inline-block;
    background-color: #0097B2;
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
    border: none;
    width: fit-content;
    min-width: 150px;
    text-align: center;
}

.btn-secondary:hover {
    background-color: #007185;
    color: white;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
}


.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    padding: 20px 20px;
    color: #0097B2;
    position: fixed;
    width: 100%;
    z-index: 99;
    border-bottom: 6px solid #0097B2;
}

.logo img {
    height: 80px;
}

.nav-buttons {
    display: flex;
    margin-right: 50px;
}

.nav-button {
    background-color: #0097B2;
    color: white;
    padding: 10px 25px;
    margin-left: 10px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}



/* hero standard */
.hero {
    background: white;
    color: #0097B2;
    text-align: center;
    padding-top: 4em;
}

.hero-content {
    margin: 0 auto;
    padding: 4em 0;
    margin-top: 2em;
}

h4 {
    color: #0097B2;
}


/* 50/50 */
.fifty-fifty {
    display: flex;
    padding: 20px;
    background-color: #fff;
}

.fifty-left, .fifty-right {
    flex: 1;
    padding: 20px;
}

.fifty-left img {
    width: 100%;
    height: auto;
}

.fifty-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media screen and (max-width: 768px) {
    .fifty-fifty {
        display: block;
    }

    .fifty-left {
        padding: 0;
    }
}




/* Promo Blocks */
.promo-blocks {
    padding: 20px;
    background-color: #fff;
    text-align: center;
}

.promo {
    display: flex;
    justify-content: space-between;
}

.promo-item {
    flex: 1;
    margin: 10px;
    border-radius: 10px;
}

.promo-item img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

@media screen and (max-width: 768px) {
    .promo{
        display: block;
    }
}


/* video */
.video-container {
    width: 100%; /* Full width */
    height: auto; /* Adjust height as needed */
    overflow: hidden; /* Ensures the video doesn’t overflow */
}

.video-container video {
    width: 100%; /* Make the video span the full width of the container */
    height: auto; /* Maintain the aspect ratio */
    object-fit: cover; /* Ensures the video covers the container without stretching */
}


/* Text Block */
.text-block {
    padding: 40px 20px;
    background-color: #fff;
    text-align: center;
}

.text-block h2 {
    margin-bottom: 20px;
}

.text-block p {
    margin-bottom: 15px;
}



/* nav */
nav {
    background-color: #333;
    color: white;
    padding: 10px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.brand a {
    color: white;
    text-decoration: none;
    font-size: 1.5em;
}

.nav-links {
    list-style-type: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin: 0 10px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    padding: 8px 16px;
    display: block;
}

.nav-links a:hover {
    background-color: #575757;
    border-radius: 4px;
}

.menu-icon {
    display: none;
    cursor: pointer;
    font-size: 1.5em;
}

@media screen and (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        text-align: center;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .menu-icon {
        display: block;
    }
}



/* footer  */

.footer {
    background-color: #0097B2; /* Background color */
    color: #fff; /* Text color */
    padding: 20px;
    text-align: center;
    padding: 6em 0;
    margin-top: 4em;
}

.footer a {
    color: #fff; /* Link color */
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline; /* Underline on hover */
}

.footer h2 {
    margin: 0 0 10px; /* Space below the heading */
    font-size: 30px; /* Adjust font size */
    color: white;
}

.footer p {
    margin: 5px 0; /* Space between the lines */
    font-size: 18px; /* Adjust font size */
}

@media (max-width: 600px) {
    .footer {
        padding: 15px;
    }
    
    .footer h2 {
        font-size: 20px; /* Smaller font for mobile */
    }
    
    .footer p {
        font-size: 16px; /* Smaller font for mobile */
    }
}




/* Accordion */
.accordion {
    max-width: 800px;
    margin: 20px auto;
    transition: 1s;
}

.accordion-item {
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 10px;
    overflow: hidden;
}

.accordion-header {
    background-color: #f1f1f1;
    color: #333;
    padding: 12px 20px;
    cursor: pointer;
    font-weight: bold;
}

.accordion-content {
    padding: 20px;
    display: none;
    background-color: white;
    transition: max-height 0.3s ease-out;
}

.accordion-content p {
    margin: 0;
}

@media screen and (max-width: 768px) {
    .accordion-header {
        font-size: 0.9em;
    }
}



/* Slider  */
.slider {
    position: relative;
    max-width: 800px;
    margin: 20px auto;
    text-align: center;
}

.slides {
    display: flex;
    transition: transform 0.5s ease;
}

.slide {
    width: 100%;
    height: auto;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 1.5em;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px 15px;
    border: none;
    outline: none;
    z-index: 1;
}

.prev {
    left: 0;
}

.next {
    right: 0;
}

@media screen and (max-width: 768px) {
    .prev, .next {
        font-size: 1em;
        padding: 8px 12px;
    }
}






/* Testimonial  */
.testimonial-slider {
    margin: 20px auto;
    text-align: center;
    position: relative;
    background: #0097B2;
}

.testimonial-slides {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.testimonial-slide {
    display: none;
    position: absolute;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    font-weight: bold;
    color: white;
    
}

.testimonial-slide.active {
    display: block;
    opacity: 1;
}

.testimonial-author {
    margin-top: 10px;
    font-style: italic;
    color: #ffee00;
}

.dot {
    height: 15px;
    width: 15px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
    cursor: pointer;
}

.dot.active {
    background-color: #ffee00;
}

@media screen and (max-width: 768px) {
    .testimonial-prev, .testimonial-next {
        font-size: 1em;
        padding: 8px 12px;
    }
}


/* Container for the slider */
.testimonial-slider {
    position: relative;
    max-width: 100%;
    margin: auto;
    overflow: hidden;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Individual slides */
.testimonial-slide {
    display: none;
    text-align: center;
    font-size: 18px;
    color: white;
    padding: 20px;
}

/* Default visible slide */
.testimonial-slide.active {
    display: block;
}

/* Navigation buttons */
.prev, .next {
    position: absolute;
    top: 50%;
    background-color: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    transform: translateY(-50%);
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
}

/* Responsive styling */
@media (max-width: 1024px) {
    .testimonial-slide {
        font-size: 16px;
    }

    .prev, .next {
        padding: 8px;
    }

    .logo img {
        height: 40px;
    }

    .btn-secondary {
        margin-bottom: 1em;
        width: 90%;
    }

    .container {
        max-width: unset;
        display: block;
    }
}

/* Video  */
.video-container {
    position: relative;
    text-align: center;
}

video {
    min-height: 500px;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
    min-height: 500px;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-controls {
    margin-top: 10px;
}

.video-controls button {
    background-color: #444;
    color: white;
    border: none;
    padding: 10px 15px;
    margin: 5px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
}

.video-controls button:hover {
    background-color: #666;
}





/* Get in touch  */
.get-in-touch-container {
    max-width: 400px;
    margin: 50px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-radius: 8px;
}

.get-in-touch-container h2 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
}

.get-in-touch-container p {
    margin: 10px 0;
    font-size: 18px;
    color: #333;
}

.get-in-touch-container a {
    color: #333;
    text-decoration: none;
}

.get-in-touch-container a:hover {
    text-decoration: underline;
}

.social-links {
    margin-top: 20px;
}

.social-links a {
    margin: 0 10px;
    font-size: 24px;
    color: #0097B2;
    text-decoration: none;
}

.social-links a:hover {
    color: #0097B2;
}









/* CTA BANNER */
.cta-banner {
    background-color: #0097B2;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    background-color: #fff;
    color: #0097B2;
    font-size: 18px;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

.cta-button:hover {
    background-color: #0056b3;
    color: #fff;
}




/* dates */
.container {
    display: flex;
    align-items: center;
    padding: 10px;
    max-width: 1000px;
    margin: 0 auto;
}

.image-wrapper {
    position: relative;
    width: 50%;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.date-caption {
    position: absolute;
    top: -15px;
    left: -35px;
    background-color: #0097B2;
    color: #fff;
    padding: 5px 10px;
    font-size: 18px;
    border-radius: 50%;
    text-align: center;
    padding: 2em;
    font-weight: bold;
}

.text-content {
    width: 50%;
    padding-left: 20px;
}

@media (max-width: 1024px) {
    .container {
        max-width: unset;
        display: block;
    }

    .image-wrapper, .text-content {
        width: 90%;
    }

    .date-caption {
        left: unset;
    }

    .hero-content {
        padding: 4em 2em;
        margin-top: unset;
    }
}
