body {
    /*font-family: 'Montserrat', sans-serif;*/
    font-family: Berthold Akzidenz Grotesk BE Light;
    /*background: var(--charcoal);*/
    /*color: var(--off-white);*/
    line-height: 1.6;
    /*overflow-x: hidden;*/
}
h1:focus-visible {
    outline: none;
    box-shadow: none;
}
h1:focus {
    outline: none;
}

#footer {
    background: #fff;
    color: #252b33;
    padding: 0.125rem 0 1.125rem 0;
    border-top: 1px solid #ecf3f5;
    font-size: 0.75rem;
    line-height: 1.25rem;
}

#footer .footer-copyright {
    padding: 0px 0px;
    color: #67727c;
}

#footer .footer-copyright .container {
    border-top: 1px solid #ceb198;
}

/* Additional styles for investments listing page */
.page-header {
    background: var(--charcoal);
    padding: 2rem 5%;
    border-bottom: 1px solid rgba(194, 174, 146, 0.2);
    position: relative;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg,
    transparent 0%,
    var(--gold-dark) 20%,
    var(--gold) 50%,
    var(--gold-light) 80%,
    transparent 100%);
}

.breadcrumb-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.breadcrumb {
    list-style: none;
    display: flex;
    gap: 1rem;
    margin: 0;
    padding: 0;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.breadcrumb-item {
    color: var(--grey);
}

.breadcrumb-item a {
    color: var(--grey);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--gold);
}

.breadcrumb-item + .breadcrumb-item::before {
    content: '›';
    margin-right: 1rem;
    color: var(--gold);
}

.page-title {
    font-family: 'Moneta-light', serif;
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--off-white);
    margin: 0;
}

/* Filter Tabs */
.filter-section {
    background: var(--charcoal);
    padding: 3rem 5% 4rem;
}

/*.filter-container {*/
/*    max-width: 1400px;*/
/*    margin: 0 auto;*/
/*}*/

.filter-label {
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2rem;
    text-align: center;
}

.filter-tabs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.filter-tab {
    background: linear-gradient(135deg, var(--charcoal-light) 0%, var(--charcoal-lighter) 100%);
    border: 1px solid rgba(194, 174, 146, 0.2);
    padding: 3rem 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.filter-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(194, 174, 146, 0.15), transparent);
    transition: left 0.6s ease;
}

.filter-tab:hover::before {
    left: 100%;
}

.filter-tab:hover {
    background: linear-gradient(135deg, rgba(194, 174, 146, 0.08) 0%, var(--charcoal-lighter) 100%);
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.filter-tab.active {
    background: linear-gradient(135deg, rgba(194, 174, 146, 0.15) 0%, rgba(194, 174, 146, 0.05) 100%);
    border-color: var(--gold);
    border-width: 2px;
    box-shadow: 0 10px 40px rgba(194, 174, 146, 0.2);
}

.filter-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(194, 174, 146, 0.1), transparent);
    transition: left 0.6s ease;
}

.filter-tab:hover::before {
    left: 100%;
}

.filter-tab:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.filter-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(194, 174, 146, 0.15), transparent);
    transition: left 0.6s ease;
}

.filter-tab:hover::before {
    left: 100%;
}

.filter-tab:hover {
    background: linear-gradient(135deg, rgba(194, 174, 146, 0.08) 0%, var(--charcoal-lighter) 100%);
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.filter-tab.active {
    background: linear-gradient(135deg, rgba(194, 174, 146, 0.15) 0%, rgba(194, 174, 146, 0.05) 100%);
    border-color: var(--gold);
    border-width: 2px;
    box-shadow: 0 10px 40px rgba(194, 174, 146, 0.2);
}

.filter-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--gold);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.filter-tab:hover .filter-icon,
.filter-tab.active .filter-icon {
    opacity: 1;
    transform: scale(1.1);
    color: var(--gold-light);
}

.filter-name {
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--off-white);
    font-weight: 400;
}

/* Add Investment Button */
.add-investment-wrapper {
    text-align: right;
    margin-top: 2rem;
}

/* Investment Cards Section */
.investments-section {
    background: var(--charcoal-light);
    padding: 4rem 5% 6rem;
}

.investments-container {
    max-width: 1400px;
    margin: 0 auto;
}

.investments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.investment-card {
    background: var(--charcoal-lighter);
    border: 1px solid rgba(194, 174, 146, 0.2);
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
}

.investment-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.investment-card:hover::after {
    opacity: 1;
}

.investment-card:hover {
    border-color: var(--gold);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.investment-header {
    background: linear-gradient(135deg, rgba(194, 174, 146, 0.08) 0%, transparent 100%);
    padding: 2rem;
    border-bottom: 1px solid rgba(194, 174, 146, 0.2);
}

.investment-card:hover .investment-header {
    background: linear-gradient(135deg, rgba(194, 174, 146, 0.15) 0%, transparent 100%);
}

.investment-card:hover {
    border-color: var(--gold);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.investment-header {
    background: linear-gradient(135deg, rgba(194, 174, 146, 0.1) 0%, transparent 100%);
    padding: 2rem;
    border-bottom: 1px solid rgba(194, 174, 146, 0.2);
}

.investment-title {
    font-family: 'Moneta-bold', serif;
    /*font-size: 1.4rem;*/
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--off-white);
    /*margin-bottom: 1.5rem;*/
    margin-bottom: auto;
}

.investment-details {
    padding: 2rem;
}

.investment-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(194, 174, 146, 0.1);
}

.investment-row:last-child {
    border-bottom: none;
}

.detail-label {
    font-size: 0.85rem;
    color: var(--grey);
    letter-spacing: 1px;
}

.detail-value {
    font-family: 'Moneta-regular', serif;
    font-size: 1rem;
    color: var(--off-white);
    font-weight: 500;
}

.investment-row:last-child .detail-value {
    color: var(--gold);
    font-weight: 600;
    font-size: 1.1rem;
}

.investment-footer {
    padding: 1.5rem 2rem;
    background: rgba(194, 174, 146, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
}

.more-options {
    background: none;
    border: none;
    color: var(--gold);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: transform 0.3s ease;
}

.more-options:hover {
    transform: scale(1.3);
}

/* FAQ/Questions Section */
.faq-section {
    background: var(--charcoal);
    padding: 6rem 5%;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-title {
    font-family: 'Moneta-bold', serif;
    font-size: 1.5rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--off-white);
    margin-bottom: 3rem;
    text-align: center;
}

.accordion {
    background: var(--charcoal-lighter);
    border: 1px solid rgba(194, 174, 146, 0.2);
    margin-bottom: 1rem;
}

.accordion-header {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.accordion-header:hover {
    background: rgba(194, 174, 146, 0.05);
    border-left-color: var(--gold);
}

.accordion-header.active {
    background: rgba(194, 174, 146, 0.1);
    border-left-color: var(--gold-light);
}

.accordion-icon {
    color: var(--gold);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.accordion-question {
    font-size: 0.95rem;
    color: var(--off-white);
    letter-spacing: 0.5px;
    margin: 0;
}

.accordion-header.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 2rem;
}

.accordion-body.active {
    max-height: 500px;
    padding: 1.5rem 2rem 2rem;
}

.accordion-answer {
    color: var(--grey);
    line-height: 1.8;
    font-size: 0.9rem;
}

.input-light {
    border-bottom-width: 1px;
    border-color: #03252f;
    --tw-bg-opacity: 1;
    /* background-color: rgb(3 37 47 / var(--tw-bg-opacity)) !important; */
    padding-top: 0rem;
    padding-bottom: .5rem;
    font-family: Berthold Akzidenz Grotesk BE Light !important;
    font-size: 0.8rem;
    line-height: 1.2rem;
    font-weight: 300;
    text-transform: none !important;
    letter-spacing: 0px;
    --tw-text-opacity: 1;
    --bs-bg-opacity: 1;
}
*, :after, :before {
    box-sizing: border-box;
    border: 0 solid;
}



/* Responsive */
@media (max-width: 1024px) {
    .filter-tabs {
        grid-template-columns: repeat(2, 1fr);
    }

    .investments-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .filter-tabs {
        grid-template-columns: 1fr;
    }

    .breadcrumb-container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .investments-grid {
        grid-template-columns: 1fr;
    }
}

/* Loading animation */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.loading-card {
    background: linear-gradient(
            90deg,
            var(--charcoal-lighter) 0%,
            rgba(194, 174, 146, 0.1) 50%,
            var(--charcoal-lighter) 100%
    );
    background-size: 1000px 100%;
    animation: shimmer 2s infinite;
}

/*@media screen and (min-width: 600px) {*/
/*    #footer {*/
/*        padding-bottom: 0.125rem !important;*/
/*    }*/
/*}*/