/* === Base Typography === */
body {
    background: url('../../images/bar_view.jpg') center center / cover no-repeat fixed;
    background-size: auto;
    
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    overflow-x: hidden;
    filter: brightness(1.2);
        background-color: #0b0b0b;
        color: #e6e6e6;
        font-family: 'Inter', sans-serif;
    
}
.responsive-bg {
    background-image: url('../../images/bar_view.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover; /* or try 'contain' */
    background-size: auto;
}
@media (max-width: 768px) {
    .responsive-bg {
        background-size: contain; /* Shrinks it to fit inside */
        background-position: center;
    }
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    color: #f1c232;
    font-weight: 300;
}

h2 {
    color: #d4af37;
    font-family: 'Inter', sans-serif;
    font-weight: 100;
    font-size: 2.8rem;
    margin-bottom: 2rem;
    letter-spacing: 1px;
    text-shadow: 0 0 15px rgba(212, 175, 55, 1);
}

/* === Hero Section === */
.hero {
    position: relative;
    min-height: 100vh;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 2rem;
    max-width: 800px;
    margin: auto;
}

.hero h1 {
    font-weight: 300;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 12px rgba(0, 0, 0, 0.5);
}

.hero p.lead {
    color: #f1c232;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.6;
}

/* === Buttons === */
.btn-gold {
    background: linear-gradient(45deg, #d4af37, #ffdf00);
    color: #121212;
    font-weight: 100;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 30px;
    transition: background 0.3s ease, transform 0.2s ease;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px;
    margin-top: 1.5rem;
}
.btn-gold-sm {
    background: linear-gradient(45deg, #d4af37, #ffdf00);
    color: #121212;
    font-weight: 100;
    border: none;
    padding: 0.5rem 2rem;
    border-radius: 15px;
    transition: background 0.3s ease, transform 0.2s ease;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px;
    margin-top: .5rem;
}
.btn-gold-sm:hover {
    background: linear-gradient(45deg, #ffdf00, #f8c800);
    transform: scale(1.05);
    color: #121212;
}

.btn-gold:hover {
    background: linear-gradient(45deg, #ffdf00, #f8c800);
    transform: scale(1.05);
    color: #121212;
}

/* === Sections === */
.section-title {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 300;
}

.section-subtitle {
    max-width: 800px;
    margin: 0 auto 2.5rem;
    color: #ccc;
    text-align: center;
    font-size: 1.05rem;
    font-weight: 300;
}

.membership-section {
    background: #111;
    padding: 4rem 0;
    text-align: center;
}

.membership-card {
    max-width: 700px;
    margin: 0 auto;
    background: #1b1b1b;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,.35);
}

.newsletter-wrap {
    background: #111;
    padding: 4rem 0;
    text-align: center;
}

.cta-last {
    background: #0e0e0e;
    padding: 3rem 0 4rem;
    text-align: center;
    color: #ccc;
}

/* === Cards === */
.dark-card,
.link-card,
.event-card {
    background: rgba(9, 9, 9, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding-top: 1.5rem;
}

.dark-card:hover,
.link-card:hover,
.event-card:hover {
    transform: scale(1.01);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.6);
}

.dark-card h3,
.link-card h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 300;
    margin-bottom: 1rem;
    color: #f1c232;
}

.dark-card p {
    color: #bbb;
    font-size: 0.95rem;
}

.link-card {
    text-align: center;
    text-decoration: none;
    color: #fff;
}

/* === Forms === */
.form-label {
    color: #ffdf80;
    font-weight: 100;
    font-family: 'Inter', sans-serif;
}

.form-control,
.form-select,
textarea {
    background-color: #1a1a1a;
    border: 1px solid rgba(212, 175, 55, 0.5);
    color: #fff;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 100;
}

.form-control:focus,
.form-select:focus,
textarea:focus {
    background-color: #222;
    border-color: #ffd700;
    font-weight: 300;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
}

.newsletter-form .form-control {
    background: #1a1a1a;
    border: 1px solid rgba(212,175,55,.4);
    color: #fff;
    height: 50px;
    border-radius: 50px;
    padding: 0 1.2rem;
}

/* === Alerts === */
.alert-success {
    background-color: rgba(0, 40, 0, 0.6);
    color: #d4af37;
    border: 1px solid #d4af37;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
}

/* === Images === */
.image-showcase img {
    width: 100%;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.image-showcase img:hover {
    transform: scale(1.02);
}

/* === Navbar === */
.navbar {
    background-color: transparent;
    border-bottom: 1px solid rgba(241, 194, 50, 0.2);
}

.navbar-brand, .nav-link {
    color: #f1c232 !important;
    font-weight: 300;
}

.navbar-brand:hover, .nav-link:hover {
    color: #ffd966 !important;
}

/* === Tables & Modals === */
.card {
    background-color: #1a1a1a;
    border: 1px solid rgba(241, 194, 50, 0.2);
    color: #e6e6e6;
}

.table {
    color: #e6e6e6;
}

.table thead {
    background-color: rgb(68, 65, 65);
}

.modal-content {
    background-color: #1a1a1a;
    color: #e6e6e6;
}

/* === Overlay === */
.gold-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
    pointer-events: none;
}

.modal-body {
    max-height: 70vh;
    overflow-y: auto;
}
