@font-face {
    font-family: 'Typrighter';
    src: url('../fonts/Typrighter-V2.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Tavern';
    src: url('../fonts/ProperTavern-Sans.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TavernStamp';
    src: url('../fonts/ProperTavern-SansStamp.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}





body{
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    background-color: #FFFFFF;
}

#header{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items:center;
    justify-content: space-around;
    width: 100%;
    height: auto;
    padding-top: 16px;
    padding-bottom: 24px;
    background-color: #FFFFFF;
    box-shadow: 0 0 10px rgba(0, 38, 76, 0.5);
}

#logoBox{
    display: flex;
    width: 200px;
    height: 128px;
    background-image: url(../img/CT_logoFull.svg);
    background-repeat: no-repeat;
}

#tagBox{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 80%;
    max-width: 400px;
    height: auto;
    padding-top: 16px;
}

.tagline{
    display: flex;
    width: auto;
    height: auto;
    padding: 0px;
    color: #005DB9;
    font-size: medium;
    font-family: 'Typrighter';
    text-align: center;
}



.fullHspace8{
    display: block;
    width: 100%;
    height: 8px;
    margin-top: 0px;
    margin-bottom: 0px;
}

.fullHspace16{
    display: block;
    width: 100%;
    height: 8px;
    margin-top: 4px;
    margin-bottom: 4px;
}

.fullHspace24{
    display: block;
    width: 100%;
    height: 8px;
    margin-top: 8px;
    margin-bottom: 8px;
}

.fullHspace48{
    display: block;
    width: 100%;
    height: 32px;
    margin-top: 8px;
    margin-bottom: 8px;
}

#nav{
    display: flex;
    width: 100%;
    max-width: 800px;
    height: auto;
    justify-content: center;
}

#tabBox{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: space-evenly;
    width: 100%;
    height: auto;
}

#tabBox a{
    text-decoration: none;
}

#tabShirt{
    width: 160px;
    height: auto;
    padding: 16px 32px;
    background-color: #2752AE;
    color: white;
    text-align: center;
    border-radius: 8px;
}

#tabShirt:hover{
    background-color: deepskyblue;
}

#tabStick{
    width: 160px;
    height: auto;
    padding: 16px 32px;
    background-color: #2752AE;
    color: white;
    text-align: center;
    border-radius: 8px;
}

#tabStick:hover{
    background-color: deepskyblue;
}

#mainCanvas{
    width: 95%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px;
    padding: 0;
    background-color: white;
}


/* START OF COLOR SWATCHES*/

.color-swatches-container {
    display: flex; /* Arranges swatches in a row */
    gap: 8px; /* Adds space between swatches */
    flex-direction: row;
    flex-wrap: wrap;
}

.color-swatch {
    width: 20px;
    height: 20px;
    border: 1px solid #ccc;
    cursor: pointer; /* Indicates interactivity */
    border-radius: 12px; /* Optional: adds rounded corners */
}

/* Individual color styles */
.black {
    /*background-image: url('../img/icons/color_blk.svg');
    background-repeat: no-repeat;
    background-size: contain;*/
    background-color: #000000;
}

.white {
        /*background-image: url('../img/icons/color_wht.svg');
    background-repeat: no-repeat;
    background-size: contain;*/
    background-color: #FFFFFF;
}

.gray {
    /*background-image: url('../img/icons/color_gry.svg');
    background-repeat: no-repeat;
    background-size: contain;*/
    background-color: #CAC9C7;
}

.navy {
    /*background-image: url('../img/icons/color_nvy.svg');
    background-repeat: no-repeat;
    background-size: contain;*/
    background-color: #171D2D;
}

.blue {
    /*background-image: url('../img/icons/color_blu.svg');
    background-repeat: no-repeat;
    background-size: contain;*/
    background-color: #2752AE;
}

.red {
    /*background-image: url('../img/icons/color_red.svg');
    background-repeat: no-repeat;
    background-size: contain;*/
    background-color: #B52824;
}

.purple {
    /*background-image: url('../img/icons/color_prp.svg');
    background-repeat: no-repeat;
    background-size: contain;*/
    background-color: #3D2863;
}

.orange {
  /*background-image: url('../img/icons/color_org.svg');
  background-repeat: no-repeat;
  background-size: contain;*/
  background-color: #E67D46;
}

/* END OF COLOR SWATCHES */




#footer{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    background-color: #FFFFFF;
    margin-top: 16px;
    box-shadow: 0 0 10px rgba(0, 38, 76, 0.5);
}

#copyright{
    display: block;
    width: auto;
    height: auto;
    font-family: Arial, Helvetica, sans-serif;
    font-size: .75em;
    color: black;
}

#beefSoc{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: flex-end;
    gap: 32px;
    width: 95%;
}

#beefs{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    width: 90%;
    max-width: 224px;
    height: auto;
    margin: 0;
}

#noAI{
    display: flex;
    width: 80px;
}

#first{
    display: flex;
    width: 80px;
}

#socials{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 16px;
    width: 90%;
    max-width: 240px;
    height: auto;
    margin: 0;
}

#mast{
    display: block;
    width: 40px;
    height: 40px;
    background-image: url(../img/mastodon.svg);
}

#blue{
    display: block;
    width: 40px;
    height: 40px;
    background-image: url(../img/bluesky.svg);
}

#inst{
    display: block;
    width: 40px;
    height: 40px;
    background-image: url(../img/instagram.svg);
}