/* =========================================
   BASECAMP GLOBAL COLOR VARIABLES
   These define the site's reusable color palette
   based on the logo (charcoal, stone gray, lake blue)
   Using variables keeps styling consistent and scalable
========================================= */

:root {
    --basecamp-bg: #1f1f1f; /* Main background (charcoal lodge tone) */
    --basecamp-surface: #2b2b2b; /* Secondary panels / footer background */
    --basecamp-accent: #2c6e91; /* Accent color (lake blue from logo) */
    --basecamp-text: #f5f5f5; /* Primary readable text (snow white tone) */
    --basecamp-muted: #cfcfcf; /* Softer secondary text */
    --basecamp-border: #444444; /* Divider / border color */
}

/* Base font size for the entire site.
   Bootstrap uses rem units, so this affects overall scaling. */
html {
    font-size: 14px;
}

/* On tablets and larger screens, slightly increase base font size
   for improved readability and better layout balance. */
@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

/* Accessibility focus styling.
   Adds visible outlines when buttons, links, and form inputs are focused
   (important for keyboard navigation and usability). */
.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

/* Ensures the page always fills the full browser height.
   Helps keep footer positioning consistent. */
html {
    position: relative;
    min-height: 100%;
}

/* Adds spacing at the bottom so the footer doesn't overlap content.
   Matches default ASP.NET layout expectations. */
body {
    margin-bottom: 60px;
}

/* Placeholder image blocks used until real photos are added.
   Helps maintain layout structure during development. */
.placeholder-img {
    height: 300px;
    /* Dark neutral background to match lodge theme */
    background-color: #2b2b2b;
    /* Dashed border visually signals "temporary image area" */
    border: 2px dashed #666;
    /* Centers placeholder text vertically and horizontally */
    display: flex;
    align-items: center;
    justify-content: center;
    /* Light gray placeholder text color */
    color: #bbb;
    /* Slightly larger text for visibility */
    font-size: 20px;
}

/* Navbar site title styling ("BASECAMP")
   Adds spacing and emphasis for brand identity. */
.navbar-brand {
    letter-spacing: 2px;
    font-size: 1.4rem;
}

/* Overrides Bootstrap default navbar color
   to create a darker lodge-style header appearance. */
.navbar {
    background-color: #1f1f1f !important;
}

/* =========================================
   GLOBAL PAGE STYLING
   Applies Basecamp dark lodge theme site-wide
========================================= */

body {
    background-color: var(--basecamp-bg); /* Sets overall page background */
    color: var(--basecamp-text); /* Default text color */
}

/* Ensures all major sections inherit dark theme */
section {
    background-color: var(--basecamp-bg);
}

/* Footer styling using secondary surface tone */
footer {
    background-color: var(--basecamp-surface);
    border-top: 1px solid var(--basecamp-border);
}

/* Default link styling using accent blue */
a {
    color: var(--basecamp-accent);
}

    /* Slightly brighter hover color for better interaction feedback */
    a:hover {
        color: #4f8fb1;
    }

/* =========================================
   BUTTON STYLING
   Replaces Bootstrap's default outline-light
   with Basecamp lake-blue accent styling
========================================= */

.btn-outline-light {
    border-color: var(--basecamp-accent); /* Blue outline */
    color: var(--basecamp-accent); /* Blue text */
}

    /* When hovered, button fills with accent color */
    .btn-outline-light:hover {
        background-color: var(--basecamp-accent);
        color: white;
    }


/* =========================================
   NAVBAR STYLING
   Darkens header slightly beyond page background
   Creates layered "bar interior" depth effect
========================================= */

.navbar {
    background-color: #141414 !important; /* Deep charcoal header */
    border-bottom: 1px solid var(--basecamp-border);
}

/* =========================================
   HERO TYPOGRAPHY STYLING
   Makes homepage title feel like venue signage
========================================= */

.hero-section h1 {
    letter-spacing: 4px;
    font-size: 4rem;
    text-transform: uppercase;
}

.hero-section .lead {
    font-size: 1.3rem;
    color: var(--basecamp-muted);
}

/* =========================================
   HERO SECTION
   Large homepage intro area with dark overlay
   for readable text over future Basecamp photo
========================================= */

.hero-section {
    height: 50vh;
    background: linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.75)), url('/images/basecamp-hero.jpg');
    background-size: cover;
    background-position: center 20%;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

    /* =========================================
   HERO TYPOGRAPHY STYLING
   Makes homepage title feel like venue signage
========================================= */

    .hero-section h1 {
        letter-spacing: 4px;
        font-size: 4rem;
        text-transform: uppercase;
    }

    .hero-section .lead {
        font-size: 1.3rem;
        color: var(--basecamp-muted);
    }
/* =========================================
   CONTENT PANEL STYLING
   Gives homepage sections a lodge-style card surface
========================================= */

.content-panel {
    background-color: var(--basecamp-surface);
    border: 1px solid var(--basecamp-border);
    border-radius: 8px;
    padding: 40px;
    margin-bottom: 40px;
}
/* =========================================
   CONTENT PANEL STYLING
   Gives homepage feature sections a lodge-style card surface
========================================= */

.content-panel {
    background-color: var(--basecamp-surface);
    border: 1px solid var(--basecamp-border);
    border-radius: 10px;
    padding: 40px;
    margin-bottom: 40px;
}

    /* Adds a little breathing room between image and text on mobile */
    .content-panel .col-md-6 {
        padding: 20px;
    }

    /* Makes section headings feel more branded */
    .content-panel h2 {
        letter-spacing: 1px;
        text-transform: uppercase;
        margin-bottom: 15px;
    }

    /* Softens paragraph text inside panels */
    .content-panel p {
        color: var(--basecamp-muted);
        font-size: 1.05rem;
    }

/* =========================================
   HOMEPAGE FEATURE PANEL POLISH
   Makes homepage sections feel more custom,
   clickable, and ready for real photography
========================================= */

.content-panel {
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

    .content-panel:hover {
        transform: translateY(-4px);
        border-color: var(--basecamp-accent);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
    }

    .content-panel h2 {
        color: var(--basecamp-text);
    }

    .content-panel p {
        max-width: 520px;
    }

/* Gives placeholder photo blocks a more polished photo-frame feel */
.placeholder-img {
    border-radius: 8px;
    min-height: 320px;
    background: linear-gradient(rgba(0,0,0,.2), rgba(0,0,0,.35)), var(--basecamp-surface);
}

/* Makes buttons feel more substantial and venue-like */
.btn-outline-light {
    padding: 10px 22px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

/* Adds a subtle intro area above the feature panels */
.home-intro {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 50px auto;
}

    .home-intro h2 {
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 15px;
    }

    .home-intro p {
        color: var(--basecamp-muted);
        font-size: 1.1rem;
    }

/* =========================================
   REMOVE LINK UNDERLINE FROM CLICKABLE PANELS
   Keeps panels looking like cards instead of hyperlinks
========================================= */

.content-panel-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

    .content-panel-link:hover {
        text-decoration: none;
        color: inherit;
    }

    /* Prevent underline inside headings and text within panels */
    .content-panel-link h2,
    .content-panel-link p,
    .content-panel-link span {
        text-decoration: none;
    }

/* =========================================
   PANEL DEPTH EFFECT
   Separates content panels from textured background
========================================= */

.content-panel {
    backdrop-filter: blur(2px);
}

/* =========================================
   GLOBAL BACKGROUND TEXTURE LAYER
   Adds subtle lodge-style depth behind content
========================================= */

body {
    background-color: var(--basecamp-bg);
    background-image: radial-gradient(rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 4px 4px;
}

/* =========================================
   HOURS DISPLAY STYLING
   Improves readability of operating hours
========================================= */

.hours-block strong {
    color: var(--basecamp-text);
    letter-spacing: 1px;
}

.hours-block {
    margin-top: 15px;
    color: var(--basecamp-muted);
}

.contact-page .section-eyebrow {
    color: var(--basecamp-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: .75rem;
}

.contact-card {
    background: rgba(20, 20, 20, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: 2rem;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

    .contact-card a:not(.btn) {
        color: var(--basecamp-gold);
        text-decoration: none;
    }

        .contact-card a:not(.btn):hover {
            text-decoration: underline;
        }

        .contact-card a:hover {
            text-decoration: underline;
        }

.contact-lead {
    color: #d6d6d6;
}

.location-photo-placeholder {
    width: 100%;
    height: 420px;
    background: linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.75)), #2b2b2b;
    border: 2px dashed rgba(255,255,255,.25);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cfcfcf;
    font-size: 1.2rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 18px 40px rgba(0,0,0,.35);
}

.contact-info-card {
    min-height: 374px;
}

.site-logo {
    width: 42px;
    height: 42px;
    object-fit: contain;
}
.casino-photo-placeholder {
    width: 100%;
    height: 360px;
    background: linear-gradient(rgba(0,0,0,.5), rgba(0,0,0,.75)), #2b2b2b;
    border: 2px dashed rgba(255,255,255,.25);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cfcfcf;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 18px 40px rgba(0,0,0,.35);
}
.food-photo-placeholder {
    width: 100%;
    height: 360px;
    background: linear-gradient(rgba(0,0,0,.5), rgba(0,0,0,.75)), #2b2b2b;
    border: 2px dashed rgba(255,255,255,.25);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cfcfcf;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 18px 40px rgba(0,0,0,.35);
}
.hotel-carousel {
    border-radius: 18px;
    overflow: hidden;
    background: rgba(20, 20, 20, 0.9);
    border: 1px solid rgba(255,255,255,.12);
}

.hotel-carousel-placeholder {
    height: 380px;
    background: linear-gradient(rgba(0,0,0,.5), rgba(0,0,0,.75)), #2b2b2b;
    border: 2px dashed rgba(255,255,255,.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cfcfcf;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hotel-carousel-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

.events-photo-placeholder {
    width: 100%;
    height: 360px;
    background: linear-gradient(rgba(0,0,0,.5), rgba(0,0,0,.75)), #2b2b2b;
    border: 2px dashed rgba(255,255,255,.25);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cfcfcf;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 18px 40px rgba(0,0,0,.35);
}

.upcoming-events-card {
    min-height: 360px;
}

.event-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.event-date {
    min-width: 70px;
    text-align: center;
    font-weight: bold;
    color: var(--basecamp-gold);
}

.event-details h3 {
    font-size: 1rem;
    margin-bottom: .25rem;
}

.event-details small {
    color: #cfcfcf;
}
.gallery-placeholder {
    height: 280px;
    background: linear-gradient(rgba(0,0,0,.5), rgba(0,0,0,.75)), #2b2b2b;
    border: 2px dashed rgba(255,255,255,.25);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cfcfcf;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 18px 40px rgba(0,0,0,.35);
    transition: transform .2s ease;
}

    .gallery-placeholder:hover {
        transform: translateY(-4px);
    }

.casino-page-img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 18px;
}

.home-section-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 18px;
    transition: transform .25s ease;
}

.content-panel:hover .home-section-img {
    transform: scale(1.02);
}

.site-footer {
    background: linear-gradient(rgba(0,0,0,.88), rgba(0,0,0,.95)), #141414;
    border-top: 1px solid rgba(255,255,255,.12);
    margin-top: 4rem;
}

.footer-logo {
    width: 58px;
    height: 58px;
    object-fit: contain;
}

.footer-muted {
    color: #cfcfcf;
}

.footer-heading {
    color: var(--basecamp-gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

    .footer-links li {
        margin-bottom: .45rem;
    }

.site-footer a {
    color: #f8f9fa;
    text-decoration: none;
}

    .site-footer a:hover {
        color: var(--basecamp-gold);
        text-decoration: underline;
    }

.footer-divider {
    border-color: rgba(255,255,255,.15);
    margin: 2rem 0 1rem;
}

.footer-bottom {
    color: #aaa;
    font-size: .9rem;
}
.home-section-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 18px;
    transition: transform .25s ease;
}

.content-panel:hover .home-section-img {
    transform: scale(1.02);
}
/* =========================================
   GALLERY CAROUSEL FIX
========================================= */

.gallery-page .gallery-card {
    position: relative !important;
    width: 100% !important;
    height: 280px !important;
    border-radius: 18px !important;
    overflow: hidden !important;
    background: #111 !important;
    box-shadow: 0 18px 40px rgba(0,0,0,.35) !important;
}

    .gallery-page .gallery-card .carousel,
    .gallery-page .gallery-card .carousel-inner,
    .gallery-page .gallery-card .carousel-item {
        width: 100% !important;
        height: 280px !important;
    }

.gallery-page .gallery-card-img {
    width: 100% !important;
    height: 280px !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
}

.gallery-page .gallery-card-label {
    position: absolute !important;
    left: 0;
    right: 0;
    bottom: 0;
    padding: .85rem 1rem;
    background: linear-gradient(rgba(0,0,0,0), rgba(0,0,0,.9));
    color: #fff;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 10;
}

.gallery-page .gallery-card .carousel-control-prev,
.gallery-page .gallery-card .carousel-control-next {
    z-index: 11;
}
.location-photo-img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    object-position: center 30%;
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(0,0,0,.35);
}
.brewpub-logo-img {
    width: 100%;
    height: 360px;
    object-fit: contain;
    object-position: center;
    background-color: #111;
    padding: 24px;
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(0,0,0,.35);
}

@media (max-width: 768px) {
    .brewpub-logo-img {
        height: 260px;
        padding: 18px;
    }
}