html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
    font-family: 'Montserrat', 'Futura', 'Arial', sans-serif; /* Art Deco font styles */
    background-color: #171a2b; /* Deep blue backdrop */
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.imgbox {
    display: grid;
    height: 100%;
}

.mainImg {
    max-width: 40%;
    max-height: 100vh;
    margin: auto;
    border: 4px solid #c6b47f; /* Gold frame */
    box-shadow: 0 0 16px #c6b47f88; /* Subtle gold shadow */
}
.imgCard {
    max-width: 50%;
    max-height: 100vh;
    margin: auto;
    border: 2px solid #c6b47f; /* Gold frame */
    box-shadow: 0 0 16px #c6b47f88; /* Subtle gold shadow */
}

body {
    margin-bottom: 60px;
    background-color: #171a2b; /* Deep blue */
    color: #e0d6c2; /* Pale gold */
}

.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Art Deco geometric border utility */
.artdeco-border {
    border: 3px double #c6b47f;
    border-radius: 0;
    padding: 1em;
}

.accordion > input[type="checkbox"] {
    position: absolute;
    left: -100vw;
}

.accordion .content {
    overflow-y: hidden;
    height: 0;
    transition: height 0.3s ease;
    background: #21253c; /* Deeper blue for content */
    border-left: 3px solid #c6b47f;
    border-right: 3px solid #c6b47f;
    color: #e0d6c2;
}

.accordion > input[type="checkbox"]:checked ~ .content {
    height: auto;
    overflow: visible;
    padding: 20px;
    border-bottom: 3px double #c6b47f;
}

.accordion label {
    display: block;
    color: rgb(33, 37, 60);
    cursor: pointer;
    font-weight: bold;
    padding: 18px;
    background: #c6b47f;
    letter-spacing: 2px;
    font-family: 'Montserrat', 'Futura', 'Arial', sans-serif;
    border-top: 3px double #c6b47f;
    text-transform: uppercase;
}

    .accordion label:hover,
    .accordion label:focus {
        background: linear-gradient(90deg, #e0d6c2 0%, #c6b47f 100%);
        color: #171a2b;
    }

.accordion {
    margin-bottom: 1em;
    margin-left: auto;
    margin-right: auto;
    max-width: 60em;
    box-shadow: 0 4px 24px #0008;
    border-radius: 0;
}

    .accordion .handle {
        margin: 0;
        font-size: 1.125em;
        line-height: 1.2em;
        color: #c6b47f;
        text-transform: uppercase;
        font-family: 'Montserrat', 'Futura', 'Arial', sans-serif;
    }

    .accordion p:last-child {
        margin-bottom: 0;
    }

/*
 Demo purposes only
*/
*,
*:before,
*:after {
    box-sizing: border-box;
}

a {
    color: #c6b47f;
    text-decoration: underline;
    font-weight: bold;
    transition: color 0.2s;
}

    a:hover {
        color: #e0d6c2;
    }

p {
    margin: 0 0 1em;
    font-family: 'Montserrat', 'Futura', 'Arial', sans-serif;
}

h1 {
    margin: 0 0 1.5em;
    font-weight: 700;
    font-size: 2em;
    letter-spacing: 3px;
    color: #c6b47f;
    text-transform: uppercase;
    text-shadow: 1px 1px 0 #4b5a6e, 2px 2px 0 #171a2b;
    font-family: 'Montserrat', 'Futura', 'Arial', sans-serif;
}

.navbar-nav .nav-item a {
    color: #e0d6c2 !important;
    font-weight: bold;
    font-size: 1.1em;
    text-transform: uppercase;
    padding: 0 20px; /* Adds left & right padding for clear separation */
    letter-spacing: 2px;
    transition: color 0.2s, background 0.2s;
    background: none;
    border: none; /* Remove border here */
}

.navbar-nav .nav-item:not(:last-child) a {
    border-right: 2px solid #c6b47f; /* Only right border on all but last item */
}