﻿/* Video Header */
.video-header {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.video-header video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
}

.header-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}



/* Carousel Section */
.carousel-item img {
    object-fit: cover; /* Ensures the image covers the entire area */
    width: 100%; /* Ensures the image takes up the full width of the carousel item */
    height: 100%; /* Set a fixed height for all images */
    display: block;
    margin: auto;
}

.carousel-item img:hover {
    transform: scale(1.1); /* Zoom in on hover */
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%; /* Adjust the width as needed */
}

.carousel-control-prev {
    left: 25%; /* Move the button to the left */
}

.carousel-control-next {
    right: 25%; /* Move the button to the right */
}



/* Contact Section */
.contact-section {
background-color: #f7f7f7;
}

.contact-section h2 {
    margin-bottom: 20px;
}

.contact-section form {
    max-width: 600px;
    margin: 0 auto;
}


.video-header {
    position: relative;
    width: 100%;
    height: 400px; 
    overflow: hidden;
}

.video-header video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    transform: translate(-50%, -50%);
}

.video-header .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.video-header .content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: right;
    top: 80%;
    transform: translateY(-50%);
    padding: 10px 20px 30px 40px; /* top right bottom left */
}

.paint-stroke-font {
    font-family: 'Dancing Script', cursive;
    font-weight: 700;
    color: white;
    font-size: 100px;
}

.paint-stroke-font-small {
    font-family: 'Dancing Script', cursive;
    font-weight: 700;
    color: white;
    font-size: 25px;
}

.member {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.member-img {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.member-img img {
    width: 300px; /* Set the desired width */
    height: 300px; /* Set the desired height */
    border-radius: 50%; /* Make the image a circle */
    object-fit: cover; /* Ensure the image covers the entire area without distortion */
    border: 8px solid darkgrey; /* Adds a light grey border */
}

.member-info {
    text-align: center; /* Center the text */
}

.italic-dark-grey {
    font-style: italic;
    color: darkgrey; /* You can also use a specific hex code like #A9A9A9 */
}

.custom-container {
    border: 1px solid darkgrey; /* Thin dark grey line */
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1); /* Drop shadow */
    width: 100%; /* Full width */
    padding: 20px; /* Optional padding */
    margin: 20px 0; /* Optional margin */
}

.legacy-text {
    font-size: 1.2em; /* Double the size of the default text */
}

.rounded-corners {
    border-radius: 15px; /* Adjust the value as needed */
}

body {
    margin:0;
    padding:0;
}




/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-container .faq-item {
     background-color: var(--surface-color);
    position: relative;
    padding: 20px;
    margin-bottom: 15px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    border-radius: 5px;
    overflow: hidden;
}

    .faq .faq-container .faq-item:last-child {
        margin-bottom: 0;
    }

    .faq .faq-container .faq-item h3 {
        font-weight: 600;
        font-size: 16px;
        line-height: 24px;
        margin: 0 30px 0 0;
        transition: 0.3s;
        cursor: pointer;
        display: flex;
        align-items: center;
    }

        .faq .faq-container .faq-item h3 .num {
            color: var(--accent-color);
            padding-right: 5px;
        }

        .faq .faq-container .faq-item h3:hover {
            color: var(--accent-color);
        }

    .faq .faq-container .faq-item .faq-content {
        display: grid;
        grid-template-rows: 0fr;
        transition: 0.3s ease-in-out;
        visibility: hidden;
        opacity: 0;
    }

        .faq .faq-container .faq-item .faq-content p {
            margin-bottom: 0;
            overflow: hidden;
        }

    .faq .faq-container .faq-item .faq-toggle {
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 16px;
        line-height: 0;
        transition: 0.3s;
        cursor: pointer;
    }

        .faq .faq-container .faq-item .faq-toggle:hover {
            color: var(--accent-color);
        }

.faq .faq-container .faq-active h3 {
    color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
    grid-template-rows: 1fr;
    visibility: visible;
    opacity: 1;
    padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
    transform: rotate(90deg);
    color: var(--accent-color);
}


.faq-contained {
    background-color: #e0f7fa; /* Lightest blue */
    border: 2px solid #343a40; /* Dark grey border */
    border-radius: 15px; /* Rounded edges */
}


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-wrap {
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.contact .info {
    background: #fff;
}

    .contact .info i {
        font-size: 24px;
        color: #01b1d7;
        float: left;
        width: 48px;
        height: 48px;
        background: #e2faff;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50px;
        transition: all 0.3s ease-in-out;
    }

    .contact .info h4 {
        padding: 0 0 0 60px;
        font-size: 22px;
        font-weight: 600;
        margin-bottom: 5px;
        color: #354144;
    }

    .contact .info p {
        padding: 0 0 0 60px;
        margin-bottom: 0;
        font-size: 14px;
        color: #62787d;
    }

    .contact .info:hover i {
        background: #01b1d7;
        color: #fff;
    }

.contact .php-email-form {
    width: 100%;
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
    padding: 30px;
    background: #fff;
}

    .contact .php-email-form .form-group {
        padding-bottom: 8px;
    }

    .contact .php-email-form .validate {
        display: none;
        color: red;
        margin: 0 0 15px 0;
        font-weight: 400;
        font-size: 13px;
    }

    .contact .php-email-form .error-message {
        display: none;
        color: #fff;
        background: #ed3c0d;
        text-align: left;
        padding: 15px;
    }

        .contact .php-email-form .error-message br + br {
            margin-top: 25px;
        }

    .contact .php-email-form .sent-message {
        display: none;
        color: #fff;
        background: #18d26e;
        text-align: center;
        padding: 15px;
        font-weight: 600;
    }

    .contact .php-email-form .loading {
        display: none;
        background: #fff;
        text-align: center;
        padding: 15px;
    }

    .contact .php-email-form .loading:before {
        content: "";
        display: inline-block;
        border-radius: 50%;
        width: 24px;
        height: 24px;
        margin: 0 10px -6px 0;
        border: 3px solid #18d26e;
        border-top-color: #eee;
        -webkit-animation: animate-loading 1s linear infinite;
        animation: animate-loading 1s linear infinite;
    }

    .contact .php-email-form input, .contact .php-email-form textarea {
        border-radius: 0;
        box-shadow: none;
        font-size: 14px;
    }

    .contact .php-email-form input {
        height: 44px;
    }

    .contact .php-email-form textarea {
        padding: 10px 12px;
    }

    .contact .php-email-form button[type="submit"] {
        background: #01b1d7;
        border: 0;
        padding: 10px 24px;
        color: #fff;
        transition: 0.4s;
        border-radius: 4px;
    }

        .contact .php-email-form button[type="submit"]:hover {
            background: #0dd3fe;
        }

@-webkit-keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
