:root {
    --brand-orange: #DD9B00;
    --brand-background: #ffffff;
    --brand-text-light: #111111;
    --brand-text-dark: #ffffff;
    --brand-button-color: #111111;
    --brand-button-hover: #555555;
    --disclaimer-background: #f8d7da;
    --disclaimer-text: #721c24;
    --disclaimer-hover: #a8323a;
    --promotion-background: #F0D47E;
    /*            --logo-path: url('assets/img/logo-dao-trn4blk-lg_coin_left.svg');*/
    /*            --logo-wide-path: url('assets/img/logo-dao-trn4blk-wide-lg_coin_left.svg');*/
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: 'Geologica';
    /* src: url('../assets/font/Geologica/Geologica-VariableFont_CRSV,SHRP,slnt,wght.ttf') format('truetype'); */
    src: url('../assets/font/avenir_next/AvenirNextLTPro-Regular.otf') format('truetype');
    font-weight: 300 700;
    /* Adjust based on available weights */
    font-stretch: normal;
    font-style: normal;
}

/* Update the body to use the new font */
html,
body {
    font-family: 'Geologica', Arial, sans-serif;
    font-weight: 300;
    /* Set default weight */
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    background-color: var(--brand-background);
    color: var(--brand-text-light);
    line-height: 1.3;
    letter-spacing: 0.5px;
}

.card-content-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    background-color: #fff;
    border-radius: 10px;
    /*            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);*/
    /*            padding: 20px;*/
    /*            margin: 20px 0;*/
    max-width: 100%;
}



.contact-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    margin: 20px auto;
    border-radius: 10px;
    max-width: 600px; /* Limits the width for better layout */
}

.contact-icon {
    margin-bottom: 15px; /* Adds spacing between the icon and text */
}

.contact-icon img {
    width: 60px; /* Scales icon for better visibility */
    height: auto;
    display: block;
}

.contact-text {
    font-size: 1.2rem; /* Ensure readability on all screen sizes */
    color: #111; /* Neutral text color */
    line-height: 1.6;
    margin: 0;
    word-wrap: break-word; /* Ensures long text wraps properly */
    white-space: normal;
}

.contact-text a {
    color: var(--brand-text-light); /* Use your brand color */
    text-decoration: none;
    font-weight: bold;
    font-size: 1.6rem;
}

.contact-text a:hover {
    text-decoration: underline;
    color: var(--brand-button-hover); /* A subtle hover effect for links */
}












.flyer {
width: 100%;
max-width: 600px;
display: flex;
flex-direction: column; /* Stacks everything vertically */
align-items: center; /* Centers horizontally */
justify-content: center; /* Centers vertically */
padding: 20px;
margin: auto; /* Ensures the flyer is centered on the page */
box-sizing: border-box; /* Includes padding in total width/height */
margin-bottom: 20px;
}
.flyer-wrapper {
display: flex;
flex-direction: column;
align-items: center; /* Centers text inside each section */
text-align: center; /* Ensures text content is centered */
width: 100%;
}
h1 {
color: #000; /* Warm brown for a natural feel */
text-align: center;
font-size: 2.5em;
margin-bottom: 20px;
}
h2 {
color: #000;  
text-align: center;
font-size: 2.2em;
margin-top: 2px;
}
h3 {
color: var(--brand-orange);
text-align: center;
font-size: 1.7em;
margin-top: 18px;
}
p {
font-size: 1.2em;
text-align: center; /* Centers paragraph text */
margin-top: 5px;
margin-bottom: 0px;
}










#promo-banner {
    background-color: var(--promotion-background);
    padding: 15px;
    text-align: center;
    border-radius: 5px;
    margin: 20px 0;
}

.promo-content p {
    font-size: 1.2rem;
    color: #333;
    margin: 0;
}

.promo-content button {
    background-color: #d99a00;
    /* Brand orange color */
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.promo-content button:hover {
    background-color: #b88000;
    /* Darker shade for hover effect */
}



.image-container {
    flex: 1;
    margin-right: 20px;
}

.image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.content-container {
    flex: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Align items to the top */
    align-items: flex-start; /* Align items to the left */
    text-align: left; /* Ensure text is aligned to the left */
    height: 100%;
}

.content-container h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.content-container p {
    font-size: 1.5rem;
    text-align: left;
    line-height: 1.6;
    margin-bottom: 15px;
}

.quote {
    font-style: italic;
    font-size: 1rem;
    margin-bottom: 20px;
    color: #555;
}

.cart-icon-wrapper {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 10px;
    position: relative;
    /* This will allow absolute positioning of the icon */
}

.cart-icon {
    display: flex;
    align-items: center;
    background-color: var(--brand-orange);
    /* Use your brand color */
    border-radius: 5px;
    padding: 5px 10px;
    color: white;
    /* Text color for the total */
}

.cart-icon img {
    height: 30px;
    /* Adjust the icon size */
    width: auto;
    margin-right: 5px;
    /* Space between icon and total */
}

#cart-total {
    font-size: 1rem;
    /* Adjust font size as needed */
}

.right-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.price {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--brand-button-color);
}

.quantity-container {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
}

.quantity-container button {
    background-color: #f5f5f5;
    border: none;
    color: #333;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background-color 0.3s ease;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
}

.quantity-container button:hover {
    background-color: #ddd;
}

.quantity-container input {
    width: 60px;
    text-align: center;
    border: none;
    padding: 1px 1px;
    font-size: 1.2rem;
}

.add-to-cart-btn {
    background-color: var(--brand-button-color);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.add-to-cart-btn:hover {
    background-color: var(--brand-button-hover);
}

/* Responsive Design */
@media (max-width: 768px) {
    .card-content-wrapper {
        flex-direction: column;
    }

    .image-container {
        margin-bottom: 20px;
    }

    .right-panel {
        width: 100%;
        align-items: flex-start;
    }
}

.page-grid {
    display: grid;
    grid-template-rows: auto auto auto 1fr;
    grid-template-columns: 1fr;
    height: 100vh;
}

.wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.inner-content {
    max-width: 1440px;
    width: 100%;
    padding: 20px;
    margin: 0 auto;
    box-sizing: border-box;
}

.header-wrapper {
    grid-row: 1 / span 1;
    /*            border-top: 6px solid var(--brand-orange);*/
}

.header {
    display: flex;
    justify-content: center;
    align-items: center;
}


.logo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 300px;
    width: 100%;
}

.logo-wrapper a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

.logo-wrapper a img {
    max-height: 100%;
    width: auto;
}

.logo-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 100%;
}

.logo-nav a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

.logo-nav a img {
    max-height: 100%;
    width: auto;
}

strong {
    font-weight: 500;
}

.hide-lg-screen {
    display: none;
}

.hide-sm-screen {
    display: block;
}





.banner-wrapper {
    grid-row: 2 / span 1;
    padding-top: 0px !important;
    padding-bottom: 0px !important;
}

.disclaimer {
    background-color: var(--disclaimer-background);
    color: var(--disclaimer-text);
    padding: 10px 20px;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    margin: 0 auto;
    box-sizing: border-box;
}

.disclaimer .acknowledge-btn {
    background-color: var(--disclaimer-text);
    color: white;
    border: none;
    padding: 5px 10px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    align-self: flex-end;
    margin-top: 10px;
}

.disclaimer .acknowledge-btn:hover {
    background-color: var(--disclaimer-hover);
}















.navbar-wrapper {
    grid-row: 3 / span 1;
}

.navbar {
    display: flex;
    justify-content: center;
}

nav {
    display: flex;
    gap: 25px;
}

.nav-btn {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    margin-top: 10px;
    background-color: transparent;
    color: var(--brand-orange);
    border: none;
    border-bottom: 2px solid transparent;
    padding-bottom: 5px;
    cursor: pointer;
    font-size: 22px;
    text-align: center;
}

.nav-btn:hover {
    border-bottom: 2px solid var(--brand-orange);
}

.nav-btn:focus,
.read-more-btn:focus {
    outline: 2px solid var(--brand-orange);
    outline-offset: 2px;
}












.content-wrapper {
    grid-row: 4 / span 1;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.content-wrapper::-webkit-scrollbar {
    display: none;
}

.content {
    max-width: 1440px;
    width: 100%;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: flex-start;
    box-sizing: border-box;
}













.card {
    background-color: var(--brand-text-dark);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: left;
    /*            border-top: 3px solid var(--brand-orange);*/
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-sizing: border-box;
    flex-shrink: 1;
}

.card .content-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
}

.card .text-content {
    text-align: left;
    margin-top: 0;
    flex-grow: 0;
    align-self: flex-start;
}

.card .card-image {
    float: left;
    margin-right: 20px;
    width: 100%;
    max-width: 250px;
    min-width: 100px;
    height: auto;
}

.card .card-video {
    float: left;
    margin-right: 20px;
    width: 100%;
    max-width: 250px;
    min-width: 150px;
    height: auto;
    overflow: hidden;
    border-radius: 50%;
}

.card .rumble-video {
    float: left;
    margin-right: 20px;
    width: 100%;
    max-width: 450px;
    min-width: 250px;
    height: auto;
    overflow: hidden;
}

/*
.youtube-container {
    display: flex;
    justify-content: left;
    align-items: left;
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
}
*/

.youtube-video {

    float: right;
    width: 100%;
    max-width: 480px;
    aspect-ratio: 16/9;
    margin-left: 20px;
    margin-bottom: 20px;
    height: auto;
    position: relative;
    overflow: hidden;
}

.youtube-video iframe {
    aspect-ratio: 16/9;
    position: relative;
    width: 100%;
    height: auto;
    border: 0;
}

.card .read-more-btn {
    background-color: transparent;
    color: var(--brand-orange);
    border: none;
    cursor: pointer;
    text-align: center;
    align-self: flex-end;

    font-size: 14px;
}

video::-internal-media-controls {
    display: none !important;
    /* Hide browser's default controls */
}


.card h3 {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-weight: 00;
    font-size: 26px;
    color: var(--brand-orange);
    margin-bottom: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
}


.card p {
    font-size: 20px;
    color: var(--brand-text-light);
    margin-bottom: 10px;
}

.width-1 {
    min-width: 300px;
    max-width: calc(100% - 0px);
    flex: 1 1 calc(100% - 0px);
}

.width-2 {
    flex: 1 1 calc(45% - 0px);
    box-sizing: border-box;
    min-width: 600px;
}

.width-3 {
    width: 33.33%;
}

.width-4 {
    flex: 1 1 calc(20% - 0px);
    box-sizing: border-box;
    min-width: 250px;
}



.section-title {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    color: var(--brand-orange);
    width: 100%;
    text-align: left;
    margin: 40px 0 -10px;
}





/* Button styles for 'Read More' */
.card .view-btn {
    background-color: transparent;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s ease;
}

.card .view-btn:hover {
    background-color: var(--brand-button-hover);
}






.quote p {
    /*
    color: #4A8DB3;
    color: #AACBE3;
    color: #87CEFA;
    color: #3E5E74;
    color: #739FB7;
    color: #6D6A75;
    color: #D1D1D6;
*/
    color: #B0B0B5;
    font-style: italic;
    font-size: 18px;
}




a.theme-link {
    color: var(--brand-orange);
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
}

a.theme-link:hover {
    text-decoration: underline;
}




.view-btn:hover {
    background-color: #d88b47;
}

.full-width-block {
    color: var(--brand-orange);
    width: 100%;
    text-align: left;
    margin: 40px 0 8px;
}

.full-width-block h2,
.full-width-block h3 {
    font-size: 28px;
    font-weight: bold;
}




@media (max-width: 1440px) {
    .logo {
        height: 100px;
    }

    .logo-wrapper {
        height: 150px;
    }

    .navbar-spacer {
        min-height: 120px;
    }
}

@media (max-width: 1280px) {
    .logo {
        height: 100px;
    }

    .navbar-spacer {
        min-height: 70px;
    }

    .section-title {
        font-family: 'Roboto', sans-serif;
        font-weight: 300;
        color: var(--brand-orange);
        width: 100%;
        text-align: left;
        margin: 0px 0 -10px;
    }

}

@media (max-width: 1024px) {

    .logo-nav {
        height: 150px;
    }

    .hide-lg-screen {
        display: block;
    }

    .hide-sm-screen {
        display: none;
    }

    .section-title {
        margin-top: 0px;
    }

    .card .card-image {
        width: 200px;
        min-width: 100px;
        background-color: red;
    }           
    .inner-content {
        padding: 0px;
    }    

}

@media (max-width: 768px) {


    .logo-nav {
        height: 150px;
    }

    .card .card-image {
        width: 200px;
        min-width: 80px;
    }


    .contact-text {
        font-size: 1.0rem;
        line-height: 1.5;
    }
    
    .contact-text a {
        font-size: 1.2rem;
    }


    .card .rumble-video {
        margin-bottom: 30px;
    }

    .content {
        gap: 20px;
    }


    .youtube-video {

        float: none;
        width: 100%;
        max-width: 768px;
        margin-left: 0px;
    }
}


@media (max-width: 668px) {


    .logo-nav {
        height: 150px;
    }

    .card .card-image {
        width: 150px;
        min-width: 80px;
    }

    .width-2 {
        min-width: 360px;
    }
}

@media (max-width: 480px) {
    .logo-nav {
        height: 150px;
    }

    .card .video-container {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .card .card-video {
        float: none;
        align-self: center;
        max-width: 80%;
        height: auto;
        margin: 30px;
    }

    .width-2 {
        min-width: 300px;
    }
}





