/* ======================================= */
/* COLOR VARIABLES                         */
/* ======================================= */
:root {
    /* Rose Hall navy palette */
   --navy: #0d223f;        /* exact logo background */
    --navy-dark: #081628; /* deeper shadow navy */

    --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: var(--navy-dark);
    color: var(--white);
    line-height: 1.5;
}

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

/* ======================================= */
/* HEADER                                   */
/* ======================================= */
/* ----------- HEADER BASE ----------- */
.site-header {
    width: 100%;
    background: var(--navy);
    padding: 12px 5% 18px;
    color: var(--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 / feature image on the right of logo */
.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: var(--white);
    font-size: 1.1rem;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.site-nav a.active {
    color: var(--gold) !important;
    font-weight: 600;
}

.site-nav a:hover {
    color: var(--gold);
}

/* visit link on the RIGHT */
.visit-link {
    color: var(--gold);
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
}

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

/* ======================================= */
/* HERO SECTION – with grayscale BG        */
/* ======================================= */

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

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    overflow: hidden;
}

/* BACKGROUND IMAGE ONLY */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;

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

    filter: grayscale(100%) brightness(0.85) contrast(1.15);

    z-index: 0;
}

/* NAVY TINT OVERLAY */
.hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(8, 22, 40, 0.55); /* navy tint */
    z-index: 1;
}

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

    /* move up slightly to cover label */
    transform: translateY(-35px);
}

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

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

/* GOLD BUTTON */
.hero__button {
    display: inline-block;
    padding: 12px 26px;
    background-color: var(--gold);
    color: #000000;
    border-radius: 6px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
    cursor: pointer;
    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(--navy);
}

.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(--navy-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(--navy-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 (HORIZONTAL SCROLL)      */
/* ======================================= */
.gallery-section {
    text-align: center;
    padding: 40px 0 10px 0;
}

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

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

    scrollbar-width: none;
}
.gallery-scroll::-webkit-scrollbar {
    display: none;
}

/* each thumbnail */
.gallery-item {
    display: inline-block;
    margin-right: 10px;
}

.gallery-item img {
    width: 280px;
    height: 180px;
    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 – HORIZONTAL ROW */
.contact-grid {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-top: 20px;
}

.contact-block {
    flex: 1 1 0;
    min-width: 0;
}

/* optional: center text on small screens */
@media (max-width: 768px) {
    .contact-grid {
        flex-direction: column;
        gap: 20px;
    }
}

/* contact headings */
.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(--navy);
    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;
}
