/* ========== RESET & VARIABLES ========== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #c8a45a;
    --gold-light: #d4b76a;
    --gold-dark: #a8863a;
    --dark-bg: #1a1a1a;
    --darker-bg: #111111;
    --darkest-bg: #0a0a0a;
    --card-bg: #151515;
    --card-bg-hover: #1c1c1c;
    --text-light: #e8e8e8;
    --text-muted: #999999;
    --text-white: #ffffff;
    --border-subtle: rgba(200, 164, 90, 0.15);
    --border-gold: rgba(200, 164, 90, 0.3);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: var(--darkest-bg);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.6;
}

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

a:hover {
    color: var(--gold-light);
}

img {
    max-width: 100%;
    display: block;
}

/* ========== NAVIGATION ========== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    height: 70px;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-subtle);
}

.nav-logo {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    text-decoration: none;
    overflow: hidden;
}

.nav-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: invert(1);
}

.nav-logo-text {
    font-family: 'Oswald', sans-serif;
    font-size: 8px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--gold);
    text-align: center;
    line-height: 1.1;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    font-family: 'Oswald', sans-serif;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-white);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-socials {
    display: flex;
    gap: 15px;
}

.nav-socials a {
    color: var(--text-muted);
    font-size: 14px;
}

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

.nav-cta {
    font-family: 'Oswald', sans-serif;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-white);
    border: 1px solid var(--text-muted);
    padding: 8px 20px;
    transition: all 0.3s;
}

.nav-cta:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--gold);
    font-size: 24px;
    cursor: pointer;
}

/* ========== PAGE HEADER (for inner pages) ========== */
.page-header {
    margin-top: 70px;
    padding: 80px 40px 60px;
    text-align: center;
    background:
        radial-gradient(ellipse at 50% 80%, rgba(160, 100, 40, 0.12), transparent 70%),
        var(--darkest-bg);
    border-bottom: 1px solid var(--border-subtle);
}

.page-header h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 52px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-white);
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.page-header h1 .accent {
    color: var(--gold);
}

.page-header .subtitle {
    font-family: 'Lora', serif;
    font-style: italic;
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.page-header .breadcrumb {
    margin-top: 20px;
    font-family: 'Oswald', sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
}

.page-header .breadcrumb a {
    color: var(--gold);
}

.page-header .breadcrumb span {
    margin: 0 8px;
    color: var(--text-muted);
}

/* ========== HERO (home) ========== */
.hero {
    margin-top: 70px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
    background: var(--darkest-bg);
}

.hero-image {
    position: relative;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent 60%, rgba(10, 10, 10, 0.85));
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 50px;
}

.hero-title {
    font-family: 'Oswald', sans-serif;
    font-size: 68px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.05;
    color: var(--text-white);
    margin-bottom: 10px;
}

.hero-title .accent {
    font-family: 'Lora', serif;
    font-style: italic;
    font-size: 34px;
    font-weight: 400;
    color: var(--gold);
    text-transform: none;
    display: inline-block;
    margin: 0 10px;
}

.hero-star {
    color: var(--gold);
    font-size: 26px;
    margin-right: 8px;
}

.hero-info {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hero-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.hero-info-icon {
    color: var(--gold);
    font-size: 16px;
    margin-top: 3px;
    flex-shrink: 0;
}

.hero-info-text {
    font-family: 'Oswald', sans-serif;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1.6;
    color: var(--text-light);
}

.hero-info-text .highlight {
    color: var(--gold);
    font-weight: 600;
}

/* ========== SECTION: SINCE / TAGLINE ========== */
.section-since {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 400px;
    background: var(--darkest-bg);
}

.since-left {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
}

.since-box {
    text-align: center;
}

.since-line {
    width: 80px;
    height: 2px;
    background: var(--gold);
    margin: 0 auto 30px;
}

.since-title {
    font-family: 'Oswald', sans-serif;
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--gold);
    letter-spacing: 3px;
    line-height: 1.3;
}

.since-right {
    overflow: hidden;
}

.since-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ========== SECTION: PARTNERS / ABOUT ========== */
.section-partners {
    padding: 80px 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.partners-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    position: relative;
}

.partners-images .img-wrapper {
    overflow: hidden;
    border-radius: 2px;
}

.partners-images img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s;
}

.partners-images img:hover {
    transform: scale(1.05);
}

.partners-images .img-wide {
    grid-column: 1 / -1;
}

.partners-images .img-wide img {
    height: 200px;
}

.gold-bar {
    width: 200px;
    height: 12px;
    background: var(--gold);
    opacity: 0.4;
    margin-bottom: -6px;
    position: relative;
    z-index: 1;
}

.partners-content h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 25px;
    line-height: 1.2;
}

.partners-content p {
    font-family: 'Lora', serif;
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.partners-content p strong {
    color: var(--text-light);
    font-style: italic;
}

/* ========== SECTION: MENU / RUBRIQUE LIST ========== */
.section-menu {
    padding: 80px 0;
    background: var(--darkest-bg);
}

.menu-title {
    font-family: 'Oswald', sans-serif;
    font-size: 42px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--gold);
    text-align: center;
    letter-spacing: 4px;
    margin-bottom: 50px;
}

.menu-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

.menu-category-nav {
    display: flex;
    gap: 0;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.menu-cat-link {
    font-family: 'Oswald', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    text-decoration: none;
    padding: 10px 20px;
    transition: color 0.3s;
    white-space: nowrap;
}

.menu-cat-link:hover,
.menu-cat-link.active {
    color: var(--text-white);
}

.menu-cat-link.active::before {
    content: '\2014';
    margin-right: 8px;
    color: var(--gold);
}

.menu-section {
    margin-bottom: 50px;
}

.menu-section-header {
    font-family: 'Lora', serif;
    font-style: italic;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-subtle);
}

.menu-item {
    margin-bottom: 20px;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 5px;
}

.menu-item-name {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold);
}

.menu-item-name a {
    color: var(--gold);
    text-decoration: none;
}

.menu-item-name a:hover {
    color: var(--text-white);
}

.menu-item-price {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: var(--text-light);
}

.menu-item-desc {
    font-family: 'Lora', serif;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.menu-item-desc em {
    color: var(--gold-light);
}

/* ========== CONTENT LAYOUT (inner pages) ========== */
.content-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 40px;
}

.content-section h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 25px;
    line-height: 1.2;
}

.content-section h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-white);
    letter-spacing: 1px;
    margin-bottom: 15px;
    margin-top: 35px;
}

.content-section p {
    font-family: 'Lora', serif;
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.content-section p strong {
    color: var(--text-light);
}

.content-section ul, .content-section ol {
    font-family: 'Lora', serif;
    font-size: 15px;
    line-height: 1.9;
    color: var(--text-muted);
    margin-bottom: 20px;
    padding-left: 25px;
}

.content-section li {
    margin-bottom: 8px;
}

.section-divider {
    height: 1px;
    background: var(--border-subtle);
    margin: 50px 0;
}

/* ========== CARD GRID ========== */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.card {
    background: var(--card-bg);
    border: 1px solid var(--border-subtle);
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s;
}

.card:hover {
    background: var(--card-bg-hover);
    border-color: var(--border-gold);
    transform: translateY(-3px);
}

.card-img {
    height: 180px;
    background:
        radial-gradient(ellipse at center, rgba(140, 90, 35, 0.15), transparent 70%),
        linear-gradient(135deg, #221a10 0%, #1a1408 100%);
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-body {
    padding: 25px;
}

.card-body h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold);
    margin-bottom: 10px;
    margin-top: 0;
}

.card-body p {
    font-family: 'Lora', serif;
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.card-link {
    font-family: 'Oswald', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.card-link::after {
    content: '\2192';
    transition: transform 0.3s;
}

.card:hover .card-link::after {
    transform: translateX(4px);
}

/* ========== ARTICLE CARDS (alt style) ========== */
.article-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 30px;
}

.article-card {
    display: grid;
    grid-template-columns: 250px 1fr;
    background: var(--card-bg);
    border: 1px solid var(--border-subtle);
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s;
}

.article-card:hover {
    background: var(--card-bg-hover);
    border-color: var(--border-gold);
}

.article-card .card-img {
    height: 100%;
    min-height: 160px;
}

.article-card .card-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* ========== MAP SECTION ========== */
.map-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px;
}

.map-filters {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.filter-btn {
    font-family: 'Oswald', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    background: var(--card-bg);
    border: 1px solid var(--border-subtle);
    padding: 10px 20px;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 2px;
}

.filter-btn:hover,
.filter-btn.active {
    color: var(--darkest-bg);
    background: var(--gold);
    border-color: var(--gold);
}

#map {
    width: 100%;
    height: 500px;
    border-radius: 4px;
    border: 1px solid var(--border-subtle);
    background: var(--card-bg);
}

.map-list {
    margin-top: 40px;
}

/* ========== FICHE / DETAIL ========== */
.fiche-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.fiche-info-table {
    width: 100%;
    border-collapse: collapse;
}

.fiche-info-table tr {
    border-bottom: 1px solid var(--border-subtle);
}

.fiche-info-table td {
    padding: 12px 0;
    font-family: 'Lora', serif;
    font-size: 14px;
    color: var(--text-muted);
}

.fiche-info-table td:first-child {
    font-family: 'Oswald', sans-serif;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold);
    width: 160px;
}

/* ========== NEWSLETTER / CTA BAND ========== */
.cta-band {
    background:
        radial-gradient(ellipse at 50% 50%, rgba(160, 100, 40, 0.15), transparent 70%),
        var(--darker-bg);
    padding: 60px 40px;
    text-align: center;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.cta-band h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-white);
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.cta-band p {
    font-family: 'Lora', serif;
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-form {
    display: flex;
    gap: 0;
    max-width: 450px;
    margin: 0 auto;
}

.cta-form input {
    flex: 1;
    padding: 14px 20px;
    background: var(--card-bg);
    border: 1px solid var(--border-subtle);
    color: var(--text-light);
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    outline: none;
    border-radius: 2px 0 0 2px;
}

.cta-form input::placeholder {
    color: var(--text-muted);
}

.cta-form input:focus {
    border-color: var(--gold);
}

.cta-form button {
    font-family: 'Oswald', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--darkest-bg);
    background: var(--gold);
    border: 1px solid var(--gold);
    padding: 14px 25px;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 0 2px 2px 0;
}

.cta-form button:hover {
    background: var(--gold-light);
}

/* ========== FOOTER ========== */
footer {
    background: var(--darker-bg);
    border-top: 1px solid var(--border-subtle);
    padding: 60px 40px 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto 40px;
}

.footer-col h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 20px;
}

.footer-col p,
.footer-col a {
    font-family: 'Lora', serif;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
    text-decoration: none;
}

.footer-col a:hover {
    color: var(--gold);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(200, 164, 90, 0.1);
}

.footer-bottom p {
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 1px;
}

/* ========== PLACEHOLDER IMAGES ========== */
.placeholder-hero {
    width: 100%;
    height: 100%;
    min-height: 500px;
    background:
        radial-gradient(ellipse at 40% 50%, rgba(160, 100, 40, 0.3), transparent 70%),
        linear-gradient(160deg, #2a1f15 0%, #1a1208 40%, #0f0d0a 100%);
}

.placeholder-since {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background:
        radial-gradient(ellipse at 60% 50%, rgba(120, 80, 30, 0.25), transparent 70%),
        linear-gradient(200deg, #2a2015 0%, #1a1510 50%, #0f0d0a 100%);
}

.placeholder-food {
    width: 100%;
    height: 250px;
    background:
        radial-gradient(ellipse at center, rgba(140, 90, 35, 0.2), transparent 70%),
        linear-gradient(135deg, #221a10 0%, #1a1408 100%);
}

.img-wide .placeholder-food {
    height: 200px;
}

/* ========== TABS (for sub-sections) ========== */
.tabs {
    display: flex;
    gap: 0;
    border-bottom: 1px solid var(--border-subtle);
    margin-bottom: 40px;
}

.tab {
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    padding: 15px 25px;
    cursor: pointer;
    border: none;
    background: none;
    transition: all 0.3s;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
}

.tab:hover {
    color: var(--text-light);
}

.tab.active {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* ========== CONTACT FORM ========== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    background: var(--card-bg);
    border: 1px solid var(--border-subtle);
    color: var(--text-light);
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    outline: none;
    border-radius: 2px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--gold);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.btn-gold {
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--darkest-bg);
    background: var(--gold);
    border: 1px solid var(--gold);
    padding: 14px 35px;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 2px;
}

.btn-gold:hover {
    background: var(--gold-light);
}

.btn-outline {
    font-family: 'Oswald', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    background: transparent;
    border: 1px solid var(--gold);
    padding: 12px 30px;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 2px;
    display: inline-block;
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--darkest-bg);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
    nav {
        padding: 0 20px;
    }

    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    .hero {
        grid-template-columns: 1fr;
    }

    .hero-image {
        height: 300px;
    }

    .hero-title {
        font-size: 44px;
    }

    .hero-content {
        padding: 40px 30px;
    }

    .page-header {
        padding: 60px 20px 40px;
    }

    .page-header h1 {
        font-size: 36px;
    }

    .section-since {
        grid-template-columns: 1fr;
    }

    .since-left {
        padding: 40px;
    }

    .since-right {
        height: 280px;
    }

    .section-partners {
        grid-template-columns: 1fr;
        padding: 40px 30px;
    }

    .content-section {
        padding: 40px 20px;
    }

    .fiche-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .article-card {
        grid-template-columns: 1fr;
    }

    .article-card .card-img {
        height: 200px;
    }

    .menu-category-nav {
        flex-direction: column;
        gap: 5px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .card-grid {
        grid-template-columns: 1fr;
    }

    .tabs {
        flex-wrap: wrap;
    }
}
