:root {
    --navy: #0d223f;            /* replaces maroon */
    --navy-dark: #081628;       /* replaces maroon-dark */
    --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;
}

html, body {
    height: 100%;
    background-color: #000;    /* EVERYTHING under footer = BLACK */
}

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

/* ======================================= */
/* HEADER                                   */
/* ======================================= */
.site-header {
    width: 100%;
    background: var(--navy);
    padding: 10px 5% 14px;
    color: var(--white);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

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

/* Make sure header images NEVER stretch full-width */
.header-row1 img {
    max-height: 70px;
    width: auto;
}

/* Explicit sizing */
.site-logo {
    height: 70px;
    width: auto;
}

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

/* ROW 2: NAV BAR */
.header-row2 {
    display: flex;
    justify-content: flex-start;
    margin-top: 4px;
}

.site-nav {
    display: flex;
    gap: 36px;
    flex-wrap: wrap;
}

.site-nav a {
    color: var(--white);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    padding-bottom: 2px;
    font-size: 1rem;
}

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

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

/* MOBILE TWEAKS */
@media (max-width: 768px) {
    .header-row1 {
        flex-direction: row;
        align-items: center;
    }

    .header-row1 img {
        max-height: 55px;
    }

    .site-nav {
        gap: 18px;
        font-size: 0.9rem;
    }
}

/* ======================================= */
/* MENU SECTION (BRAND / COUNTRY LIST)     */
/* ======================================= */
.menu-section {
    padding: 60px 5%;
    background: var(--navy);
}

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

.menu-section h1,
.menu-section p {
    text-align: center;
}

.menu-section p {
    margin-bottom: 40px;
    color: #9fc4ff;
}

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

.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;
}

.brand-toggle:hover,
.brand-toggle.active {
    color: var(--gold);
}

.brand-toggle__chevron {
    transition: transform 0.2s ease;
}

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

.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);
    transition: color 0.2s ease;
}

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

/* ======================================= */
/* FOOTER                                   */
/* ======================================= */
.site-footer {
    background: #000;
    color: var(--gold);
    text-align: center;
    padding: 18px;
    margin-top: 0;
    border-top: 2px solid #111;
}

/* ======================================= */
/* COUNTRY LAYOUT                           */
/* ======================================= */
.country-container {
    margin-top: 40px;
}

.country-section {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    margin: 32px 0;
}

.country-label {
    position: relative;
    min-width: 140px;
    text-align: right;
    padding-right: 16px;
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--gold);
}

.country-label::after {
    content: "]";
    position: absolute;
    right: 0;
    top: -4px;
    font-size: 2.4rem;
    line-height: 1;
    color: var(--gold);
}

.country-accordion {
    flex: 1;
}

.brand-item + .brand-item {
    margin-top: 6px;
}

@media (max-width: 768px) {
    .country-section {
        flex-direction: column;
        align-items: stretch;
    }

    .country-label {
        text-align: left;
        padding-right: 0;
        margin-bottom: 8px;
    }

    .country-label::after {
        content: "";
    }
}

/* ======================================= */
/* HERO                                      */
/* ======================================= */
.hero {
    position: relative;
    height: 65vh;
    background-image: url("/img/hero.jpg");
    background-size: cover;
    background-position: center;
    filter: grayscale(100%) brightness(0.85) contrast(1.15);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;

    /* converted maroon overlay → navy overlay */
    background: rgba(13, 34, 63, 0.55);

    z-index: 2;
}
