:root {
    --turquoise-blue-base: #00A896;
    --turquoise-blue-lightest: #E1F7F4;
    --turquoise-blue-light: #A5E6DF;
    --turquoise-blue-dark: #007D70;
    --turquoise-blue-darkest: #004D45;


    --cobalt-blue-base: #1D3557;
    --cobalt-blue-lightest: #EBF1FA;
    --cobalt-blue-light: #A3C1ED;
    --cobalt-blue-dark: #15263F;
    --cobalt-blue-darkest: #0B1522;

    --prophetic-green-base: #006B3C;
    --prophetic-green-lightest: #E6F4EA;
    --prophetic-green-light: #86D1A1;
    --prophetic-green-dark: #004F2C;
    --prophetic-green-darkest: #00331C;

    --illuminated-gold-base: #D4AF37;
    --illuminated-gold-lightest: #FEF8E3;
    --illuminated-gold-light: #F3D56D;
    --illuminated-gold-dark: #A18223;
    --illuminated-gold-darkest: #665111;

    --alabaster-white-base: #F4F1DE;
    --alabaster-white-lightest: #FDFBF7;
    --alabaster-white-light: #F4F1DE;
    --alabaster-white-dark: #7D776A;
    --alabaster-white-darkest: #3D3A34;

    --andalusian-red-base: #BC4749;
    --andalusian-red-lightest: #FCECEE;
    --andalusian-red-light: #E79597;
    --andalusian-red-dark: #8D3234;
    --andalusian-red-darkest: #541B1C;
}


header {
    text-align: center;
    width: 100%;
    background-color: var(--cobalt-blue-lightest);
    border-bottom: 3px solid var(--alabaster-white-base);
    position: relative;
}

footer {
    border-top: 3px solid var(--alabaster-white-base);
    min-height: 50px;
}

h2 {
    font-variant: small-caps;
    margin-bottom: 0;
}

li {
    padding-bottom: 10px;
}

body {
    background-color: var(--alabaster-white-lightest);
    color: var(--alabaster-white-darkest);
    margin: 0px;
    padding: 0px;
    min-height: 100vh;
    font-family: 'Arial', sans-serif;
    font-size: 16px;

}

main {
    margin: auto;
    padding: 15px;
}


p {
    text-indent: 3em;
}

blockquote {
    background: #f9f9f9;
    border-left: 10px solid #ccc;
    margin: 1.5em 10px;
    padding: 0.5em 10px;
    quotes: "\201C" "\201D" "\2018" "\2019";
}

blockquote:before {
    color: #ccc;
    content: open-quote;
    font-size: 4em;
    line-height: 0.1em;
    margin-right: 0.25em;
    vertical-align: -0.4em;
}

blockquote:after {
    color: #ccc;
    content: close-quote;
    font-size: 4em;
    line-height: 0.1em;
    margin-right: 0.25em;
    vertical-align: -0.4em;
    float: right;
}

blockquote p {
    text-indent: 3em;
}



.video-container {
    width: 100%;
    max-width: 800px;
    /* Adjust the max size as needed */
    aspect-ratio: 16 / 9;
    text-indent: 0;
    margin: auto;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    margin: auto;
}


.pronunciation {
    font-family: "Lucida Sans Unicode", "Arial Unicode MS", sans-serif;
    /* Fallback for IPA symbols */
    font-size: 0.9em;
    /* Slightly smaller than main text */
    color: #666666;
    /* Muted color to show it is a guide */
    font-style: italic;
    /* Visually separates it from content */
}

.no-symbol::before {
    content: "\1F6C7";
    /* Unicode for diameter/prohibition circle */
    color: var(--andalusian-red-base);
    font-size: 60px;
    font-weight: bold;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-text-stroke: 0px var(--illuminated-gold-base);
}

.blue-arabic {
    position: relative;
    flex: 1 1 0;
    align-content: center;
    font-size: 60px;
    color: var(--cobalt-blue-dark);
    -webkit-text-stroke: 1px var(--illuminated-gold-base);
}


.site-title {
    font-size: 42px;
    color: var(--turquoise-blue-dark);
    margin-bottom: 0;
    padding-bottom: 0;
    /*-webkit-text-stroke: 1px var(--illuminated-gold-base);*/
}

.site-subtitle {
    font-size: 16px;
    color: var(--turquoise-blue-dark);
    margin-top: 0;
    padding-top: 0;
    /*-webkit-text-stroke: 1px var(--illuminated-gold-base);*/
}


/* Dropdown Button */
.dropbtn {
    background-color: var(--prophetic-green-base);
    color: var(--alabaster-white-lightest);
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 8px;
    padding-bottom: 8px;
    font-size: 16px;
    border: none;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--alabaster-white-lightest);
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
    color: var(--alabaster-white-darkest);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
    background-color: var(--alabaster-white-base);
}

/* Show the dropdown menu on hover */
/* .dropdown:hover .dropdown-content {display: block;} */

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {
    background-color: var(--prophetic-green-base);
}

.menu {
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.menu .dropdown .active {
    display: block;
}

/* Hamburger Menu Button */
.hamburger-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 12px;
    gap: 5px;
    overflow: visible;
}

/* Hamburger line styles */
.hamburger-btn span {
    width: 25px;
    height: 3px;
    background-color: var(--prophetic-green-base);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hamburger animation - rotate first line */
.hamburger-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(1px, 11px);
}

/* Hamburger animation - hide middle line */
.hamburger-btn.active span:nth-child(2) {
    opacity: 0;
}

/* Hamburger animation - rotate third line */
.hamburger-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(0px, -11px);
}

/* mobile */
@media (max-width: 480px) {
    body {
        margin-left: 5%;
        margin-right: 5%;
    }

    header {
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
    }

    .hamburger-btn {
        display: flex;
        position: absolute;
        top: 16px;
        right: 16px;
    }

    .menu {
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        width: 100%;
        margin-top: 60px;
    }

    .menu.active {
        display: flex;
    }

    .dropdown {
        width: 100%;
    }

    .dropbtn {
        width: 100%;
        text-align: left;
        padding: 14px 16px;
        font-size: 18px;
        border-radius: 8px;
    }

    .dropdown-content {
        display: none;
        position: relative;
        width: 100%;
        box-shadow: none;
        border: 1px solid rgba(0, 0, 0, 0.08);
        border-top: none;
        border-radius: 0 0 8px 8px;
        background-color: var(--alabaster-white-lightest);
        z-index: 0;
    }

    .dropdown-content a {
        padding: 14px 18px;
        border-top: 1px solid rgba(0, 0, 0, 0.06);
    }

    .dropdown-content a:hover {
        background-color: var(--turquoise-blue-lightest);
        color: var(--cobalt-blue-darkest);
    }

    .dropdown:hover .dropbtn,
    .dropdown:focus-within .dropbtn {
        background-color: var(--prophetic-green-dark);
    }

    /* .dropdown:hover .dropdown-content,
    .dropdown:focus-within .dropdown-content {
        display: block;
    } */
}

/* tablets in portrait orientation */
@media (min-width: 481px) and (max-width: 768px) {
    body {
        margin-left: 5%;
        margin-right: 5%;
    }

    .hamburger-btn {
        display: flex;
        position: absolute;
        top: 16px;
        right: 16px;
    }

    .menu {
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        width: 100%;
        margin-top: 60px;
    }

    .menu.active {
        display: flex;
    }

    /*
    .menu {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }*/

    .dropdown {
        width: 100%;
    }

    .dropbtn {
        width: 100%;
        text-align: left;
        padding: 14px 16px;
        font-size: 18px;
        border-radius: 8px;
    }

    .dropdown-content {
        display: none;
        position: relative;
        width: 100%;
        box-shadow: none;
        border: 1px solid rgba(0, 0, 0, 0.08);
        border-top: none;
        border-radius: 0 0 8px 8px;
        background-color: var(--alabaster-white-lightest);
        z-index: 0;
    }

    .dropdown-content a {
        padding: 14px 18px;
        border-top: 1px solid rgba(0, 0, 0, 0.06);
    }

    .dropdown-content a:hover {
        background-color: var(--turquoise-blue-lightest);
        color: var(--cobalt-blue-darkest);
    }

    .dropdown:hover .dropbtn,
    .dropdown:focus-within .dropbtn {
        background-color: var(--prophetic-green-dark);
    }

    /* .dropdown:hover .dropdown-content,
    .dropdown:focus-within .dropdown-content {
        display: block;
    }     */
}

/* tablets in landscape/small laptops. */
@media (min-width: 769px) and (max-width: 1024px) {
    body {
        margin-left: 10%;
        margin-right: 10%;
    }

    .hamburger-btn {
        display: flex;
        position: absolute;
        top: 16px;
        right: 16px;
    }

    .menu {
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        width: 100%;
        margin-top: 60px;
    }

    .menu.active {
        display: flex;
    }

    /*
    .menu {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }*/

    .dropdown {
        width: 100%;
    }

    .dropbtn {
        width: 100%;
        text-align: left;
        padding: 14px 16px;
        font-size: 18px;
        border-radius: 8px;
    }

    .dropdown-content {
        display: none;
        position: relative;
        width: 100%;
        box-shadow: none;
        border: 1px solid rgba(0, 0, 0, 0.08);
        border-top: none;
        border-radius: 0 0 8px 8px;
        background-color: var(--alabaster-white-lightest);
        z-index: 0;
    }

    .dropdown-content a {
        padding: 14px 18px;
        border-top: 1px solid rgba(0, 0, 0, 0.06);
    }

    .dropdown-content a:hover {
        background-color: var(--turquoise-blue-lightest);
        color: var(--cobalt-blue-darkest);
    }

    .dropdown:hover .dropbtn,
    .dropdown:focus-within .dropbtn {
        background-color: var(--prophetic-green-dark);
    }

    /* .dropdown:hover .dropdown-content,
    .dropdown:focus-within .dropdown-content {
        display: block;
    }     */
}

/* desktop */
@media (min-width: 1025px) and (max-width: 1920px) {
    body {
        margin-left: 20%;
        margin-right: 20%;
    }

    /* Show the dropdown menu on hover */
    .dropdown:hover .dropdown-content {
        display: block;
    }

}

/* desktop */
@media (min-width: 1921px) {
    body {
        margin-left: 25%;
        margin-right: 25%;
    }

    /* Show the dropdown menu on hover */
    .dropdown:hover .dropdown-content {
        display: block;
    }

}


