.text-gold-dark {
    color: #b68900;
}

.text-gold-dark {
    color: #c59e57 !important;
}

.custom-backdrop {
    background-color: rgba(0, 0, 0, 0.5)
}

.hero {
    background-color: #541414;
    /* background-image: url('/assets/bg-hero.jpg'); */
    /* Optional */
    background-size: cover;
    background-position: center;
    height: 100vh;
    position: relative;
}

.hero-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 2rem;
}

.hero-box {
    background-color: rgba(0, 0, 0, 0.75);
    padding: 3rem 2rem;
    border-radius: 16px;
    max-width: 720px;
    width: 100%;
    text-align: center;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

/*
    CSS for index
*/

.big-input .q-field__control {
    font-size: 1.2rem;
    /* Larger input text */
    height: 3rem;
    /* Taller input box */
    padding: 0.5rem 0.75rem;
}

.big-input .q-field__label {
    font-size: 1rem;
    /* Bigger label */
    color: #f5f5f5;
}

.big-input input {
    font-size: 1.2rem !important;
    /* Bigger date text */
}

/* testimonials carousel */

.testimonial-slide {
    position: relative;
    background-size: cover;
    background-position: center;
}

.testimonial-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .55), rgba(0, 0, 0, .75));
    z-index: 0;
    /* keep it behind controls */
    pointer-events: none;
    /* do not intercept clicks */
}

.testimonial-content {
    max-width: 920px;
    z-index: 1;
}

.testimonial-quote {
    margin: 0;
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.6;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .8), 0 0 2px rgba(0, 0, 0, .5);
}

@media (min-width: 1024px) {
    .testimonial-quote {
        font-size: 1.5rem;
    }
}

/* about */

.profile-card {
    /* darker base, readable on your theme */
    box-shadow: 0 8px 28px rgba(0, 0, 0, .35);
    border-color: rgba(255, 255, 255, 0.08);
}

.img-taste {
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .55), 0 0 14px rgba(255, 255, 255, .12);
    transition: transform .3s ease, box-shadow .3s ease;
}

.profile-card:hover .img-taste {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, .6), 0 0 18px rgba(255, 255, 255, .18);
}

.name-glow {
    color: #b68900;
    /* brand gold */
    text-shadow: 0 0 8px rgba(255, 255, 255, .16);
    letter-spacing: .2px;
}

/* thin accent lines per person */
.accent-1 {
    height: 2px;
    background: linear-gradient(90deg, #b68900, rgba(255, 255, 255, .08));
}

.accent-2 {
    height: 2px;
    background: linear-gradient(90deg, #ad6cd4, rgba(255, 255, 255, .08));
}

.accent-3 {
    height: 2px;
    background: linear-gradient(90deg, #ff6b6b, rgba(255, 255, 255, .08));
}

/* TEMP: helps debug layout — remove once you see content */
.debug-outline {
    outline: 1px dashed rgba(255, 255, 255, .15);
}

/* .bg-twitter {
    background-color: #1DA1F2;
}

.bg-patreon {
    background-color: #FF424D;
}

.bg-sstar {
    background-color: #1B1F23;
}

.bg-rule34 {
    background-color: #2C2F33;
}

.bg-rule34video {
    background-color: #4B0082;
} */