/* ===== Dreamreelz Media — Minimal Luxe Neutrals + Gold/Black Theme ===== */
:root {
    --gold: #C8A951;
    --gold-2: #E2B76E;
    --rich-black: #111111;
    --ink: #2b1010;
    --off-white: #F8F7F5;
    --grey-dull: #35363f;
}

/* Typography */
body {
    font-family: "Poppins",system-ui,Segoe UI,Roboto,Helvetica,Arial;
    color: var(--ink);
    background-color: var(--off-white);
}

h1,
h2,
h3,
.brand-text {
    font-family: "Montserrat",system-ui,Segoe UI,Roboto,Helvetica,Arial;
}

/* Navbar / Brand */
.navbar {
    background: rgba(248,247,245,.85)!important;
}

.backdrop-blur {
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.navbar .nav-link {
    font-weight: 500;
}

.navbar .nav-link:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* Brand logo + caption */
.brand-logo {
    height: 64px;

    /* You can increase/decrease this */
    width: auto;
    object-fit: contain;
}

.brand-text {
    font-weight: 700;
    letter-spacing: .5px;
    color: var(--ink);
    font-size: 1.25rem;
}

/* Space below sticky nav */
.nav-spacer {
    height: 80px;
}

/* Buttons */
.btn-gold {
    --bs-btn-color: #0e0e0e;
    --bs-btn-bg: var(--gold);
    --bs-btn-border-color: var(--gold);
    --bs-btn-hover-bg: var(--gold-2);
    --bs-btn-hover-border-color: var(--gold-2);
}

/* Eyebrow text */
.eyebrow {
    text-transform: uppercase;
    letter-spacing: .16em;
    font-weight: 600;
    font-size: .75rem;
    color: #7b776f;
}

/* Hero background */
.bg-hero {
    background: radial-gradient(800px 400px at 100% 0%, rgba(200,169,81,.12), transparent),
    linear-gradient(180deg, var(--off-white), #fff);
}

/* Responsive tweaks */
@media (max-width: 576px){
    .brand-logo {
        height: 50px;
    }

    .brand-text {
        font-size: 1.1rem;
    }

    .nav-spacer {
        height: 68px;
    }
}

/* About Section */
#about {
    background-color: var(--off-white);
    scroll-margin-top: 80px;

    /* smooth scroll anchor spacing */
}

.about-img img {
    transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.about-img img:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* ============================
   Showcase Carousel — Clickable cards with overlay captions
============================ */
.showcase-card {
    position: relative;
    display: block;
    border-radius: 16px;
    overflow: hidden;
    background: #f3f2ef;
    box-shadow: 0 6px 18px rgba(0,0,0,.06);
    text-decoration: none;
    transition: transform .3s ease;
}

.showcase-card:hover {
    transform: translateY(-4px);
}

/* Image layer */
.img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
    z-index: 0;
}

.showcase-card:hover .img-cover {
    transform: scale(1.05);
}

/* Gradient overlay (for legibility) */
.showcase-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.55), rgba(0,0,0,.05) 60%, transparent);
    opacity: .85;
    transition: opacity .35s ease;
    pointer-events: none;
    z-index: 1;
}

.showcase-card:hover::before {
    opacity: 1;
}

/* Caption text container */
.showcase-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 14px 16px 18px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #fff;
    z-index: 2;
    text-shadow: 0 1px 3px rgba(0,0,0,.45);
}

/* Alignment variants */
.showcase-caption.caption-left {
    align-items: flex-start;
    text-align: left;
}

.showcase-caption.caption-center {
    align-items: center;
    text-align: center;
}

/* Title and metadata */
.cap-title {
    font-family: "Montserrat", system-ui, Arial;
    font-weight: 700;
    letter-spacing: .3px;
    font-size: 1.05rem;
    line-height: 1.2;
    margin-bottom: 0.25rem;
}

.cap-meta {
    opacity: .9;
    font-size: .85rem;
}

/* Indicator dots in gold */
.carousel-indicators [data-bs-target] {
    background-color: var(--gold);
}

/* Mobile tweaks */
@media (max-width: 768px) {
    .cap-title {
        font-size: 0.95rem;
        line-height: 1.1;
    }

    .cap-meta {
        font-size: 0.8rem;
    }

    .showcase-caption {
        padding: 10px 12px 14px;
    }
}

/* ============================
   Footer / Contact
============================ */
.footer-section {
    background: var(--rich-black);
    color: #eee;
    font-size: 0.95rem;
}

.footer-section .text-gold {
    color: var(--gold);
}

.footer-logo {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.footer-section a:hover {
    color: var(--gold-2);
}

.footer-section .form-control {
    background-color: #1c1c1c;
    border: 1px solid #333;
    color: #fff;
}

.footer-section .form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 0.25rem rgba(200,169,81,.25);
}

.footer-section .btn-gold {
    background-color: var(--gold);
    border: none;
    color: #111;
    font-weight: 600;
    transition: all .3s ease;
}

.footer-section .btn-gold:hover {
    background-color: var(--gold-2);
    color: #000;
}

/* Smooth scroll for back-to-top */
html {
    scroll-behavior: smooth;
}

/* Back-to-top button */
.back-to-top {
    position: fixed;
    right: 16px;
    bottom: 16px;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: var(--gold);
    color: #111;
    border: none;
    display: grid;
    place-items: center;
    box-shadow: 0 10px 25px rgba(0,0,0,.2);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s;
    z-index: 1050;

    /* above most UI */
}

.back-to-top:hover {
    background: var(--gold-2);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Footer tweaks */
.footer-section {
    background: var(--rich-black);
    color: #eee;
    font-size: .95rem;
}

.footer-section .text-gold {
    color: var(--gold);
}

.footer-logo {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.footer-section a:hover {
    color: var(--gold-2);
}

.footer-section .form-control {
    background-color: #1c1c1c;
    border: 1px solid #333;
    color: #fff;
}

.footer-section .form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 0.25rem rgba(200,169,81,.25);
}

.footer-section .btn-gold {
    background-color: var(--gold);
    border: none;
    color: #111;
    font-weight: 600;
    transition: all .3s ease;
}

.footer-section .btn-gold:hover {
    background-color: var(--gold-2);
    color: #000;
}
