@view-transition {
    navigation: auto;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --Content-BG: rgb(179, 179, 179);
    --Content-Border: 2px solid rgb(0, 0, 0);
    --Content-Border-Rounding: 1rem;
    --Content-Button-BG-focused: rgb(255, 255, 255);
    --Content-Button-BG-Unfocused: rgb(217, 217, 217);
    --Cantent-Font: rgb(0, 0, 0);
    --Content-Margins: 1rem;
    --Content-Text-BG: rgb(200, 200, 200);
    --Sub-BG-color: rgb(128, 128, 128);
    --Model-Detail-BG: rgb(75, 75, 75);
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: var(--Sub-BG-color);
    container-type: inline-size;
    container-name: fullglass;
}

/* ---------------------------------------------------------------------------------------------------------------------------
Header --> */



/* <-- Header
--------------------------------------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------------------------
Content window --> */

main {
    display: grid;
    grid-template-columns: 1fr;
    background-image: url(https://www.goatgunsfanmuseum.com/img/Logo_2024.png);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center;
}

h1 {
    text-align: center;
    font-size: 2.5rem;
    text-decoration: underline;
    padding: .1rem;
}

section {
    padding: 1rem;
    background-color: var(--Content-BG);
    text-wrap: balance;
    display: none;

    &:has(h1, h2) {
        display: block;
    }
}

iframe {
    display: none;
}

.credits a,
.Model_Description a,
.Whats_in_the_Box a,
.Specifications a,
.credits a:focus,
.Model_Description a:focus,
.Whats_in_the_Box a:focus,
.Specifications a:focus {
    color: #000;
    font-weight: 600;
    text-decoration: underline gold;
}

.credits a:hover,
.Model_Description a:hover,
.Whats_in_the_Box a:hover,
.Specifications a:hover {
    color: gold;
    background-color: #000;
    font-weight: 600;
    text-decoration: none;
}

@container fullglass (width > 767px) {

    main {
        grid-template-columns: 1fr 5fr 5fr 1fr;
        padding-top: 1rem;

        & .title {
            grid-column: 2 / 4;
            border: var(--Content-Border);
        }

        & section {
            border: var(--Content-Border);
            border-radius: var(--Content-Border-Rounding);
            margin: var(--Content-Margins);
        }
    }
}

@container fullglass (width > 1399px) {

    main {
        grid-template-columns: 2fr 2fr 2fr 2fr;

        & h1 {
            min-width: 64rem;
        }

        & iframe {
            display: block;
            margin-left: 2rem;
            margin-right: 2rem;
        }
    }
}

/* <-- Content Window
--------------------------------------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------------------------
Quick Buttons --> */

.Classification_T,
.Type_T,
.Model_T {
    border-left: var(--Content-Border);
    border-right: var(--Content-Border);
    background-color: #b4b4b4;
}

.Classification_T,
.Type_T,
.Model_T {
    display: grid;
    text-align: center;
    border-left: var(--Content-Border);
    border-right: var(--Content-Border);
    border-bottom: var(--Content-Border);
    margin: 0;
    padding: 0;
}

.Classification_T {
    grid-template-columns: 1fr 1fr 1fr;
}

.Type_T {
    grid-template-columns: 3fr 4fr 3fr;
}

.Model_T {
    grid-template-columns: 2fr 3.5fr 2fr;
}

.Classification_T .back,
.Type_T .back,
.Model_T .back {
    grid-column: 1 / 2;
    border-top-left-radius: 1rem;
    border-bottom-left-radius: 1rem;
}

.Classification_T .current,
.Type_T .current,
.Model_T .current {
    grid-column: 2 / 3;
}

.Classification_T .next,
.Type_T .next,
.Model_T .next {
    grid-column: 3 / 4;
    border-top-right-radius: 1rem;
    border-bottom-right-radius: 1rem;
}

.Classification_T a,
.Classification_T a:focus,
.Type_T a,
.Type_T a:focus,
.Model_T a,
.Model_T a:focus {
    color: #000;
    text-decoration: none;
    font-weight: 600;
    transition-property: background-color, color, text-decoration;
}

.Classification_T a:hover,
.Type_T a:hover,
.Model_T a:hover {
    background-color: #000;
    color: gold;
    text-decoration: underline;
}

@container fullglass (width > 767px) {

    .Classification_T,
    .Type_T,
    .Model_T {
        grid-column: 2 / 4;
        border-left: var(--Content-Border);
        border-right: var(--Content-Border);
        background-color: var(--Content-BG);
        border-radius: 1rem;
    }

    .Classification_T {
        margin: 0 -2rem;
        border-top: var(--Content-Border);
    }

    .Type_T {
        margin: 0 -1rem;
    }
}

@container fullglass (width > 1399px) {

    .Classification_T {
        margin: 0 -6rem;
    }

    .Type_T {
        margin: 0 -4rem;
    }

    .Model_T {
        margin: 0 -2rem;
    }
}

/* <-- Quick Buttons
--------------------------------------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------------------------
Model Description --> */

.Model_Description {
    container-type: inline-size;
    container-name: descriptionWindow;
    display: grid;
    grid-template-columns: 1fr;

    & p {
        text-indent: 2rem;
        padding: 0.5rem 0.5rem 0.5rem 2rem;
    }

    & .Desc_text {
        display: block;
        background-color: var(--Content-Text-BG);
        border: var(--Content-Border);
        border-radius: .75rem;
        padding: var(--Content-Margins);
        margin-bottom: var(--Content-Margins);
        height: fit-content;
    }

    & .Desc_details {
        background-color: var(--Model-Detail-BG);
        border: solid 2px var(--Content-Border);
        border-radius: .75rem;
        padding: var(--Content-Margins);

    }

    & hr {
        margin: 1rem;
    }

    & dt {
        color: white;
        font-weight: 900;
        padding-left: 1rem;
    }

    & dd {
        color: white;
        text-decoration: underline;
        padding-left: 2rem;
    }

    & .Model_Img {
        display: grid;
        justify-content: center;
        margin-bottom: .5rem;
    }

    & img {
        border-radius: .5rem;
    }

    & .O-button {
        margin: 0.25rem;
        border-radius: 1rem;
        justify-content: center;
        align-content: center;
        width: 75px;
        height: 20px;
        border: none;

        :hover,
        :focus {
            border-left: 4px solid gold;
            border-radius: 1rem;
        }
    }
}

@container fullglass (width > 600px) {

    .Model_Description {
        grid-template-columns: 1.5fr 1fr;

        & .Desc_text {
            margin-bottom: 0;
            margin-right: var(--Content-Margins);
        }
    }

    .Desc_text {
        grid-column: 1 / 2;
    }

    .Desc_details {
        grid-column: 2 / 3;
    }
}

@container fullglass (width > 767px) {

    .Model_Description {
        grid-template-columns: 2fr 1fr;
        grid-column: 2 / 4;
    }

}

@container fullglass (width > 1399px) {}

/* <-- Model Description
--------------------------------------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------------------------
Model Photos --> */

.Model_Photos {
    container-type: inline-size;
    container-name: photoWindow;

    & p {
        width: 250px;
        display: block;
        text-align: center;
        background-color: var(--Content-Text-BG);
        border: var(--Content-Border);
        border-radius: .75rem;
        padding: 1rem;
        height: 167px;
    }
}

.Photo_Window {
    display: grid;
    grid-template-columns: 1fr;
    column-gap: .5rem;
    row-gap: .25rem;
    place-items: center;


    & a img,
    & a img:focus {
        border: var(--Content-Border);
        border-radius: .75rem;
        background-color: var(--Content-Button-BG-Unfocused);
    }

    & a img:hover {
        border: 2px solid gold;
        background-color: var(--Content-Button-BG-focused);
    }
}

@container photoWindow (width > calc(500px + .5rem)) {

    .Photo_Window {
        grid-template-columns: 1fr 1fr;
    }
}

@container photoWindow (width > calc(750px + 1rem)) {

    .Photo_Window {
        grid-template-columns: 1fr 1fr 1fr;
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
}

@container photoWindow (width > calc(1000px + 1.5rem)) {

    .Photo_Window {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}

@container fullglass (width > 767px) {

    .Model_Photos {
        grid-column: 2 / 4;
    }

    .Model_Photos h2 {
        padding-bottom: .75rem;
    }

    .Model_Photos p {
        padding-top: .5rem;
        padding-bottom: .75rem;
    }

}

@container fullglass (width > 1399px) {}

/* <-- Model Photos
--------------------------------------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------------------------
What's in the Box --> */

.Whats_in_the_Box {
    padding: 1rem;
    background-color: var(--Content-Text-BG);

    & ul {
        padding: 0.5rem 0rem .5rem 2rem;
    }

    & li ul {
        padding: 0rem 0rem 0rem 2rem;
    }
}

@container fullglass (width > 767px) {

    .Whats_in_the_Box {
        grid-column: 2 / 3;
        grid-row: 7 / 8;
    }

}

@container fullglass (width > 1399px) {

    .Whats_in_the_Box {
        min-width: 32rem;
    }

}

/* <-- What's in the Box
--------------------------------------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------------------------
Specifications --> */

.Specifications {
    padding: 1rem;
    background-color: var(--Content-Text-BG);

    & h3 {
        padding-left: 1.5rem;
    }

    & dt {
        padding: .25rem 0rem 0rem 3rem;
        font-weight: 600;
    }

    & dd {
        padding: 0rem 0rem 0rem 5rem;
    }

    & i {
        font-weight: lighter;
    }
}

@container fullglass (width > 767px) {

    .Specifications {
        grid-column: 3 / 4;
        grid-row: 7 / 9;

        & dt {
            padding: .25rem 0rem 0rem 3rem;
            font-weight: 600;
        }

        & dd {
            padding: 0rem 0rem 0rem 5rem;
        }

        & hr {
            display: none;
        }
    }
}

@container fullglass (width > 1399px) {

    .Specifications {
        min-width: 32rem;
    }

}

/* <-- Specifications
--------------------------------------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------------------------
Compatiblility --> */

.Compatible {
    padding: 1rem;
    background-color: var(--Content-Text-BG);

    & h3 {
        padding-left: 1.5rem;
    }

    & ul {
        padding-left: 4rem;
    }
}

@container fullglass (width > 767px) {

    .Compatible {
        grid-column: 2 / 3;
        grid-row: 8 / 9;
    }

}

@container fullglass (width > 1399px) {

    .Compatible {
        min-width: 32rem;
    }

}

/* <-- Compatibility
--------------------------------------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------------------------
Credits --> */

.credits {
    font-size: .9rem;
    padding: 1rem;
    background-color: var(--Content-Text-BG);

    & p {
        padding: .5rem 1.5rem 0rem 1.5rem;
    }

    & dt {
        padding-left: 2rem;
        font-weight: bold;
    }

    & dd {
        padding-left: 3rem;
    }
}

@container fullglass (width > 767px) {

    .credits {
        grid-column: 3 / 4;
        grid-row: 9 / 10;
    }
}

@container fullglass (width > 1399px) {

    .credits {
        min-width: 32rem;
    }
}

/* <-- Credits
--------------------------------------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------------------------
Resources --> */

.Resources {
    padding: 1rem;
    background-color: var(--Content-Text-BG);

    & h3 {
        padding-left: 1rem;
    }

    & ul {
        padding: .25rem 2rem;
    }

    & a,
    & a:focus {
        color: var(--Content-Border);
        text-decoration: none;
        font-weight: 600;
        font-size: 1rem;
    }

    & a:hover {
        background-color: #000;
        color: gold;
        text-decoration: underline;
    }
}

@container fullglass (width > 767px) {

    .Resources {
        grid-column: 2 / 3;
        grid-row: 9 / 10;
    }
}

@container fullglass (width > 1399px) {

    .Resources {
        min-width: 32rem;
    }
}

/* <-- Resources
--------------------------------------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------------------------
Lightbox 2 --> */

.lb-loader,
.lightbox {
    text-align: center;
    line-height: 0;
    position: absolute;
    left: 0
}

body.lb-disable-scrolling {
    overflow: hidden
}

.lightboxOverlay {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9999;
    background-color: #000;
    filter: alpha(Opacity=80);
    opacity: .8;
    display: none
}

.lightbox {
    width: 100%;
    z-index: 10000;
    font-weight: 400;
    outline: 0
}

.lightbox .lb-image {
    display: block;
    height: auto;
    max-width: inherit;
    max-height: none;
    border-radius: 3px;
    border: 4px solid #fff
}

.lightbox a img {
    border: none
}

.lb-outerContainer {
    position: relative;
    width: 250px;
    height: 250px;
    margin: 0 auto;
    border-radius: 4px;
    background-color: #fff
}

.lb-outerContainer:after {
    content: "";
    display: table;
    clear: both
}

.lb-loader {
    top: 43%;
    height: 25%;
    width: 100%
}

.lb-cancel {
    display: block;
    width: 32px;
    height: 32px;
    margin: 0 auto;
    background: url(../img/LB_NAV/loading.gif) no-repeat
}

.lb-nav {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 10
}

.lb-container>.nav {
    left: 0
}

.lb-nav a {
    outline: 0;
    background-image: url(data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==)
}

.lb-next,
.lb-prev {
    height: 100%;
    cursor: pointer;
    display: block
}

.lb-nav a.lb-prev {
    width: 34%;
    left: 0;
    float: left;
    background: url(../img/LB_NAV/prev.png) left 48% no-repeat;
    filter: alpha(Opacity=0);
    opacity: 0;
    -webkit-transition: opacity .6s;
    -moz-transition: opacity .6s;
    -o-transition: opacity .6s;
    transition: opacity .6s
}

.lb-nav a.lb-prev:hover {
    filter: alpha(Opacity=100);
    opacity: 1
}

.lb-nav a.lb-next {
    width: 64%;
    right: 0;
    float: right;
    background: url(../img/LB_NAV/next.png) right 48% no-repeat;
    filter: alpha(Opacity=0);
    opacity: 0;
    -webkit-transition: opacity .6s;
    -moz-transition: opacity .6s;
    -o-transition: opacity .6s;
    transition: opacity .6s
}

.lb-nav a.lb-next:hover {
    filter: alpha(Opacity=100);
    opacity: 1
}

.lb-dataContainer {
    margin: 0 auto;
    padding-top: 5px;
    width: 100%;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px
}

.lb-dataContainer:after {
    content: "";
    display: table;
    clear: both
}

.lb-data {
    padding: 0 4px;
    color: #ccc
}

.lb-data .lb-details {
    width: 85%;
    float: left;
    text-align: left;
    line-height: 1.1em
}

.lb-data .lb-caption {
    font-size: 13px;
    font-weight: 700;
    line-height: 1em
}

.lb-data .lb-caption a {
    color: #4ae
}

.lb-data .lb-number {
    display: block;
    clear: left;
    padding-bottom: 1em;
    font-size: 12px;
    color: #999
}

.lb-data .lb-close {
    display: block;
    float: right;
    width: 30px;
    height: 30px;
    background: url(../img/LB_NAV/close.png) top right no-repeat;
    text-align: right;
    outline: 0;
    filter: alpha(Opacity=70);
    opacity: .7;
    -webkit-transition: opacity .2s;
    -moz-transition: opacity .2s;
    -o-transition: opacity .2s;
    transition: opacity .2s
}

.lb-data .lb-close:hover {
    cursor: pointer;
    filter: alpha(Opacity=100);
    opacity: 1
}

/* <-- Lightbox 2
--------------------------------------------------------------------------------------------------------------------------- */