/* ======================================= */
/* COLOR VARIABLES                         */
/* ======================================= */
:root {
    --maroon: #5a0a0a;
    --maroon-dark: #430707;
    --gold: #d4af37;
    --white: #ffffff;
    --overlay: rgba(0,0,0,0.55);
    --font-main: "Inter", Arial, sans-serif;
    --font-serif: "Playfair Display", Georgia, serif;
}

/* ======================================= */
/* GLOBAL RESET                            */
/* ======================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background: #111;
    color: var(--white);
    line-height: 1.5;
}

a {
    color: var(--gold);
    text-decoration: none;
}

/* ======================================= */
/* HEADER                                   */
/* ======================================= */
/* ----------- HEADER BASE ----------- */
.site-header {
    width: 100%;
    background: #5a0a0a;
    padding: 12px 5% 18px;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ---------- ROW 1 ---------- */
.header-row1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    height: 70px;
    width: auto;
}

.habanos-photo {
    height: 70px;
    width: auto;
    border-radius: 6px;
    object-fit: cover;
}

/* ---------- ROW 2 ---------- */
.header-row2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* nav links */
.site-nav {
    display: flex;
    gap: 40px;
}

.site-nav a {
    color: white;
    font-size: 1.1rem;
    text-decoration: none;
}

.site-nav a.active {
    color: #d4af37;
    font-weight: 600;
    text-decoration: underline;
}

/* visit link on the RIGHT */
.visit-link {
    color: #d4af37;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
}

.visit-link:hover {
    text-decoration: underline;
}


/* ======================================= */
/* HERO SECTION – FINAL FIX               */
/* ======================================= */

.hero {
    position: relative;
    height: 65vh;

    /* layout for the content */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    overflow: hidden;
}

/* BACKGROUND IMAGE + GRAYSCALE (ONLY BEHIND CONTENT) */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image: url("/img/background.jpg?v=2");
    background-size: cover;
    background-position: center 35%;

    /* this ONLY affects the background now, not the button */
    filter: grayscale(100%) brightness(0.85) contrast(1.15);

    z-index: 0;
}

/* MAROON TINT OVERLAY */
.hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(90, 10, 10, 0.55); /* maroon tint */
    z-index: 1;
}

/* CONTENT BLOCK */
.hero__content {
    position: relative;
    z-index: 2;
    max-width: 520px;

    /* move up a bit to cover the cigar label */
    transform: translateY(-35px);
}

.hero h1 {
    font-family: var(--font-serif);
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.hero__subtitle {
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: 18px;
}

/* GOLD BUTTON – NOW WON'T BE GREYSCALED */
.hero__button {
    display: inline-block;
    padding: 12px 26px;
    background-color: #d4af37;  /* rich gold */
    color: #000000;
    border-radius: 6px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
    cursor: pointer;

    /* helps visually block the label behind it */
    box-shadow: 0 0 18px rgba(0, 0, 0, 0.45);
}

.hero__button:hover {
    opacity: 0.9;
}




   

      
  
/* ======================================= */
/* MENU SECTION (ACCORDION)                 */
/* ======================================= */
.menu-section {
    padding: 60px 5%;
    background: var(--maroon);
}

.menu-section h2 {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.menu-section p {
    margin-bottom: 20px;
    color: #f2dede;
}

.brand-accordion {
    max-width: 800px;
    margin: auto;
}

/* Brand toggle button */
.brand-toggle {
    width: 100%;
    background: var(--maroon-dark);
    color: var(--white);
    padding: 16px;
    font-size: 1.15rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: none;
    cursor: pointer;
    margin-bottom: 6px;
    transition: color 0.2s ease;
}

/* GOLD WHEN ACTIVE */
.brand-toggle.active {
    color: var(--gold);
}

/* Chevron rotation */
.brand-toggle__chevron {
    transition: transform 0.2s ease;
}

.brand-toggle.active .brand-toggle__chevron {
    transform: rotate(90deg);
}

/* Dropdown (panel) */
.brand-panel {
    background: var(--maroon-dark);
    padding: 14px 20px;
    border-left: 2px solid var(--gold);
    margin-bottom: 12px;
}

.cigar-list {
    list-style: none;
}

.cigar-item {
    padding: 8px 0;
    color: var(--white);
    font-size: 1rem;
    transition: color 0.2s ease;
}

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

/* ===== GALLERY SECTION ===== */
/* ===== GALLERY SECTION ===== */
.gallery-section {
    text-align: center;
    padding: 40px 0 10px 0;   /* remove huge spacing */
}

/* Horizontal scroller UNDER title */
.gallery-scroll {
    margin-top: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    display: block;
    padding-bottom: 10px;

    scrollbar-width: none;       /* Firefox hide scrollbar */
}
.gallery-scroll::-webkit-scrollbar {
    display: none;               /* Chrome hide scrollbar */
}

/* small clean thumbnails */
.gallery-item {
    display: inline-block;
    margin-right: 10px;
}

/* adjust size DOWN dramatically */
.gallery-item img {
    width: 280px;       /* <-- small thumbnail width */
    height: 180px;       /* <-- small thumbnail height */
    object-fit: cover;
    border-radius: 6px;

    display: block;
}



/* ======================================= */
/* ABOUT & CONTACT SECTIONS                 */
/* ======================================= */
.about-section,
.contact-section {
    padding: 60px 5%;
}

.about-section h2,
.contact-section h2 {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.contact-block h3 {
    color: var(--gold);
}

.contact-disclaimer {
    margin-top: 20px;
    color: #bbb;
}

/* ======================================= */
/* AGE GATE                                 */
/* ======================================= */
.age-gate {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.age-gate__card {
    background: #222;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 2px solid var(--gold);
}

.age-gate__actions button {
    margin: 12px;
    padding: 10px 22px;
    background: var(--maroon);
    border: 1px solid var(--gold);
    color: var(--white);
    cursor: pointer;
    transition: 0.2s;
}

.age-gate__actions button:hover {
    background: var(--gold);
    color: #000;
}

/* ======================================= */
/* FOOTER                                   */
/* ======================================= */
.site-footer {
    background: #000;
    color: var(--gold);
    text-align: center;
    padding: 18px;
    margin-top: 60px;
}
/* FORCE LOGO SIZE */
.site-logo {
    height: 65px;
    width: 300px;
    
}

.site-nav a.active {
    color: #d4af37 !important; /* Gold */
    font-weight: 600;
}

.site-nav a {
    text-decoration: underline;
    text-underline-offset: 4px;
}
.site-nav a:hover {
    color: var(--gold);
}

