@charset "UTF-8";
/* CSS Document */
/* Tom Hunter Photography © */


/* TABLE OF CONTENTS */

/* 1. Base Dropdown Button Style */
.dropbtn {
    background-color: #026b96;
    color: white;
    padding: 10px 40px 10px 16px;
    font-size: 18px;
    border: 0px solid transparent;
    /* Acts as an edge barrier for the radius */
    cursor: pointer;
    white-space: nowrap;
    width: 340px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;

    /* Fixes corner bleed: Forces browser states to clip to the 10px radius */
    background-clip: padding-box;
    overflow: hidden;
}

/* 2. Lock-down Focus/Active States: Prevents system overrides from showing red */
.dropbtn:focus,
.dropbtn:hover,
.dropbtn:active,
.dropbtn:focus-visible {
    background-color: #9b968c;
    outline: none !important;
}

/* 3. Default state: Show the '+' sign on the very right */
.dropbtn::after {
    content: "+";
    font-weight: bold;
    font-size: 20px;
    position: absolute;
    right: 16px;

}

/* 4. Open state: Change the sign to '-' when the menu has the .active class */
.dropdown.active .dropbtn::after {
    content: "\2212";
}

/* 5. Center Wrapper */
.center-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
}

/* 6. Main Dropdown Container */
.dropdown {
    position: relative;
    display: inline-block;
}

/* 7. Dropdown Menu List */
.dropdown-content {
    display: none;
    /* Controlled via JavaScript class toggle */
    position: absolute;
    color: #222;
    background-color: #f1f1f1;
    box-shadow: 6px 6px 7px 1px rgba(0, 0, 0, 0.3);
    border-radius: .9em 0em 0em .9em;
    z-index: 1;
    max-height: 230px;
    overflow-y: auto;
    width: 100%;
    left: 0;
    box-sizing: border-box;

    /* Fixes corner bleed on the dropdown menu wrapper */
    background-clip: padding-box;
    overflow-x: hidden;
}

/* Displays menu when the .active class is applied via JavaScript */
.dropdown.active .dropdown-content {
    display: block;
}

/* 8. Individual Dropdown Links */
.dropdown-content a {
    color: #222;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

/* Hover style for desktop users inside the menu */
.dropdown-content a:hover {
    color: #222 !important;
    background-color: #ddd;
}

/* Universal Reset: Silences the native browser touch flash on mobile viewports */
* {
    -webkit-tap-highlight-color: transparent !important;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important;
}

@media only screen and (min-width: 0px) and (max-width: 750px) {

    .dropbtn {
        font-size: 25px;
        width: 490px;
        /* Optional: Set explicit button width if desired */
        padding: 16px 40px 16px 16px;
        /* Increased right padding to prevent text hitting the sign */
    }

    .dropdown-content {
        max-height: 550px;
        font-size: 27px;
        line-height: 70px;
        font-weight: bold;
    }

    .dropbtn::after {
        content: "+";
        font-weight: bold;
        font-size: 35px;
        position: absolute;
        right: 16px;
        /* Anchors it strictly to the right side */
    }

    .size18 {
        font-size: 25px;
    }

}