/* ---------------------------
   GLOBAL RESET + BASE
---------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.main__tryscuba-container {
    font-size: 16px;
    font-family: "PT Sans Caption", sans-serif;
}



:root {
    --main-dark: #282626;
    --white: #FFFFFF;
    --accordion-bg: rgba(255, 255, 255, 0.65);
    --accordion-border: #1e1d1d;
}

/* ---------------------------
   MENU
---------------------------- */
.menu {
    position: absolute;
    right: 0;
    width: 50%;
    max-width: 210px;
    height: 200px;
    background-color: var(--main-dark);
    border-radius: 0 0 5px 5px;
    transition: .5s;
}

.menu ul {
    height: 100%;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    list-style: none;
}

.menu ul li {
    padding-top: 10px;
}

.menu ul li a {
    text-decoration: none;
    color: var(--white);
    font-family: "PT Sans Caption", sans-serif !important;
}

.inactive {
    opacity: 0;
}

/* ---------------------------
   BACKGROUND VIDEO
---------------------------- */
#background-video {
    height: 100vh;
    width: 100vw;
    object-fit: cover;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
}

/* ---------------------------
   TITLE / HERO
---------------------------- */
.main__title-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 320px;
    height: 420px;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.main__title-container img {
    width: 60%;
    max-width: 350px;
    border-radius: 50%;
}

/* ---------------------------
   MAIN CONTENT CONTAINER
---------------------------- */
.about-us {
    width: 100%;
    min-width: 320px;
    height: auto;
    padding-bottom: 20px;
}

.about-us article {
    width: 90%;
    min-width: 300px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.60);
    font-size: 16px;
    text-align: center;
    border-radius: 5px;
    border: 1px solid var(--main-dark);
    padding-bottom: 20px;
}

.about-us article p {
    padding: 15px;
}

/* ---------------------------
   LIST ITEMS (Centered)
---------------------------- */
.main__tryscuba-container ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding: 0 18px;
    list-style-position: inside;
}

/* ---------------------------
   SECTION SPACING
---------------------------- */
.about-us article h2 {
    margin-top: 32px;
}

.about-us article h2:nth-of-type(5) {
    margin-top: 50px; /* FAQ section extra space */
}

button {
    margin: 24px 0;
}

/* ---------------------------
   ACCORDION FAQ STYLING
---------------------------- */
.accordion {
    width: 100%;
    margin-top: 10px;
    padding: 0 18px;
}

.accordion-item {
    margin-bottom: 12px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--accordion-border);
    background-color: var(--accordion-bg);
}

/* Hide checkbox */
.accordion-item input {
    display: none;
}

/* FAQ Question Label */
.accordion-item label {
    display: block;
    padding: 15px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    text-align: left;
    position: relative;
}

/* Add "+" icon */
.accordion-item label::after {
    content: "+";
    font-size: 22px;
    position: absolute;
    right: 20px;
    top: 12px;
    transition: 0.3s ease;
}

/* Rotate icon when open */
.accordion-item input:checked + label::after {
    transform: rotate(45deg);
}

/* FAQ Content */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.75);
    transition: max-height .4s ease;
    padding: 0 15px;
}

/* Expand content */
.accordion-item input:checked ~ .accordion-content {
    max-height: 300px;
    padding: 15px;
}

/* ---------------------------
   MOBILE RESPONSIVE
---------------------------- */
@media (max-width: 600px) {

    html { font-size: 18px; }

    .main__title-container {
        height: 360px;
    }

    .about-us article {
        width: 95%;
    }

    .accordion-item label {
        font-size: 15px;
    }

    .accordion-content {
        font-size: 14px;
    }
}
