/* ============================================================
   AlegeCazino.ro — Main Stylesheet
   Professional editorial/business event portal
   ============================================================ */

/* ---- CSS Custom Properties ---- */
:root {
    /* Brand colors */
    --navy: #1a2744;
    --navy-dark: #0f1a2e;
    --navy-light: #2a3f66;
    --gold: #c9a84c;
    --gold-light: #dfc576;
    --gold-dark: #a68b3a;
    --burgundy: #7a3b4e;
    --burgundy-light: #9c5068;
    --green-muted: #4a7c6f;

    /* Neutrals */
    --white: #ffffff;
    --off-white: #f8f9fa;
    --light-gray: #eef0f3;
    --gray: #c5c9d1;
    --medium-gray: #8a919e;
    --dark-gray: #4a5568;
    --charcoal: #2d3748;
    --black: #1a202c;

    /* Functional */
    --body-bg: #ffffff;
    --text-color: #2d3748;
    --text-muted: #718096;
    --heading-color: #1a2744;
    --link-color: #1a2744;
    --link-hover: #c9a84c;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-card: 0 2px 8px rgba(26,39,68,0.06);

    /* Typography */
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;

    /* Spacing */
    --section-py: 5rem;
    --container-max: 1200px;
    --radius: 8px;
    --radius-lg: 12px;
    --transition: 0.25s ease;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
    background: var(--body-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: var(--link-color);
    text-decoration: none;
    transition: color var(--transition);
}
a:hover { color: var(--link-hover); }

ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--heading-color);
    line-height: 1.3;
    font-weight: 700;
}

h1 { font-size: 2.5rem; margin-bottom: 1rem; }
h2 { font-size: 2rem; margin-bottom: 0.8rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.6rem; }
h4 { font-size: 1.25rem; margin-bottom: 0.5rem; }

p { margin-bottom: 1rem; }

/* ---- Utilities ---- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 0;
    padding: 0.5rem 1rem;
    background: var(--navy);
    color: var(--white);
    z-index: 9999;
}
.skip-link:focus { top: 0; }

.section-title {
    text-align: center;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-divider {
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 1rem auto 2rem;
    border: none;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    line-height: 1.4;
}

.btn--primary {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}
.btn--primary:hover {
    background: var(--navy-light);
    border-color: var(--navy-light);
    color: var(--white);
}

.btn--gold {
    background: var(--gold);
    color: var(--navy-dark);
    border-color: var(--gold);
}
.btn--gold:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    color: var(--white);
}

.btn--outline {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
}
.btn--outline:hover {
    background: var(--navy);
    color: var(--white);
}

.btn--outline-white {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}
.btn--outline-white:hover {
    background: var(--white);
    color: var(--navy);
}

.btn--sm { padding: 0.5rem 1.25rem; font-size: 0.875rem; }
.btn--lg { padding: 1rem 2.25rem; font-size: 1.05rem; }

/* ---- Cookie Bar ---- */
.cookie-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--navy-dark);
    color: var(--white);
    z-index: 9998;
    padding: 1rem 0;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}
.cookie-bar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}
.cookie-bar__inner p { margin: 0; font-size: 0.9rem; }
.cookie-bar__inner a { color: var(--gold-light); text-decoration: underline; }

/* ---- Top Bar ---- */
.topbar {
    background: var(--navy-dark);
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem;
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.topbar__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.topbar__links { display: flex; gap: 1.25rem; }
.topbar__links a {
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem;
}
.topbar__links a:hover { color: var(--gold-light); }

/* ---- Header / Navigation ---- */
.header {
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1.5rem;
    max-width: var(--container-max);
    margin: 0 auto;
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    flex-shrink: 0;
}

.header__logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: var(--gold);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    border-radius: var(--radius);
    letter-spacing: -0.5px;
}

.header__logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.header__logo-text strong {
    font-size: 1.2rem;
    color: var(--navy);
}
.header__logo-tld {
    color: var(--gold);
    font-weight: 700;
}
.header__logo-text small {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
.nav-list > li > a {
    display: block;
    padding: 0.5rem 0.9rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--charcoal);
    border-radius: var(--radius);
    transition: all var(--transition);
}
.nav-list > li > a:hover,
.nav-list > li > a.active {
    color: var(--navy);
    background: var(--off-white);
}
.nav-list > li > a.active {
    font-weight: 600;
}

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all var(--transition);
    z-index: 100;
}
.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown li a {
    display: block;
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
    color: var(--dark-gray);
}
.dropdown li a:hover {
    background: var(--off-white);
    color: var(--navy);
}

/* Hamburger */
.header__hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}
.header__hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: all var(--transition);
}
.header__hamburger.is-open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.header__hamburger.is-open span:nth-child(2) { opacity: 0; }
.header__hamburger.is-open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---- Hero Section ---- */
.hero {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
    color: var(--white);
    padding: 5rem 0 6rem;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='1.5'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.hero__inner {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: rgba(201,168,76,0.15);
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold-light);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero h1 {
    font-size: 2.75rem;
    color: var(--white);
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.hero__subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 2rem;
    line-height: 1.7;
    max-width: 650px;
}

.hero__buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero__stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.hero__stat {
    text-align: left;
}
.hero__stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}
.hero__stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    margin-top: 0.25rem;
}

/* ---- Section Spacing ---- */
.section {
    padding: var(--section-py) 0;
}
.section--gray {
    background: var(--off-white);
}
.section--navy {
    background: var(--navy);
    color: var(--white);
}
.section--navy h2, .section--navy h3 { color: var(--white); }
.section--navy .section-subtitle { color: rgba(255,255,255,0.7); }

/* ---- Event Cards ---- */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 1.5rem;
}

.event-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    transition: all var(--transition);
    position: relative;
}
.event-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.event-card__badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 0.75rem;
}
.badge-conference { background: #eef2ff; color: #4338ca; }
.badge-expo { background: #fef3c7; color: #92400e; }
.badge-poker { background: #fee2e2; color: #991b1b; }
.badge-forum { background: #e0f2fe; color: #075985; }
.badge-affiliate { background: #ecfdf5; color: #065f46; }
.badge-default { background: var(--light-gray); color: var(--dark-gray); }

.event-card__title {
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}
.event-card__title a {
    color: var(--heading-color);
}
.event-card__title a:hover {
    color: var(--gold-dark);
}

.event-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}
.event-card__meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}
.event-card__meta svg { flex-shrink: 0; color: var(--gold); }

.event-card__desc {
    font-size: 0.9rem;
    color: var(--dark-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.event-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}
.event-card__organizer {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ---- Category Cards ---- */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.25rem;
}

.category-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all var(--transition);
    text-decoration: none;
    display: block;
}
.category-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}
.category-card__icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}
.category-card__name {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 0.25rem;
}
.category-card:hover .category-card__name { color: var(--gold-dark); }
.category-card__count {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ---- City Cards ---- */
.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.25rem;
}

.city-card {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    color: var(--white);
    text-decoration: none;
    display: block;
    transition: all var(--transition);
}
.city-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}
.city-card__name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}
.city-card__country {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 0.5rem;
}
.city-card__events {
    display: inline-block;
    padding: 0.2rem 0.75rem;
    background: rgba(201,168,76,0.2);
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gold-light);
}

/* ---- Article Cards ---- */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.article-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    transition: all var(--transition);
}
.article-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
}

.article-card__category {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.article-card__title {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}
.article-card__title a {
    color: var(--heading-color);
}
.article-card__title a:hover { color: var(--gold-dark); }

.article-card__date {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.article-card__excerpt {
    font-size: 0.9rem;
    color: var(--dark-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.article-card__link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--navy);
}
.article-card__link:hover { color: var(--gold); }

/* ---- Why Section (Features grid) ---- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    text-align: center;
    padding: 2rem 1.5rem;
}
.feature-item__icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: var(--gold);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
}
.feature-item__title {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.feature-item__text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ---- FAQ Section ---- */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    margin-bottom: 0.75rem;
    overflow: hidden;
    background: var(--white);
}
.faq-item__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--heading-color);
    cursor: pointer;
    text-align: left;
    transition: background var(--transition);
}
.faq-item__question:hover { background: var(--off-white); }
.faq-item__question::after {
    content: '+';
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--gold);
    flex-shrink: 0;
    margin-left: 1rem;
    transition: transform var(--transition);
}
.faq-item.is-open .faq-item__question::after {
    content: '−';
}
.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.faq-item.is-open .faq-item__answer {
    max-height: 500px;
}
.faq-item__answer-inner {
    padding: 0 1.5rem 1.25rem;
    font-size: 0.95rem;
    color: var(--dark-gray);
    line-height: 1.7;
}

/* ---- Newsletter CTA ---- */
.newsletter-cta {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
    padding: 4rem 0;
}
.newsletter-cta__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}
.newsletter-cta__text h2 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}
.newsletter-cta__text p {
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    margin-bottom: 0;
}

/* ---- Page Header (for internal pages) ---- */
.page-header {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
    color: var(--white);
    padding: 3rem 0;
    position: relative;
}
.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}
.page-header h1 {
    color: var(--white);
    font-size: 2.25rem;
    margin-bottom: 0.5rem;
}
.page-header p {
    color: rgba(255,255,255,0.75);
    font-size: 1.05rem;
    max-width: 650px;
    margin-bottom: 0;
}

/* Breadcrumbs */
.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}
.breadcrumbs a { color: rgba(255,255,255,0.6); }
.breadcrumbs a:hover { color: var(--gold-light); }
.breadcrumbs span { color: rgba(255,255,255,0.4); }
.breadcrumbs .current { color: rgba(255,255,255,0.9); }

/* ---- Filters Bar ---- */
.filters-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1.5rem 0;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}
.filter-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    margin-bottom: 0.35rem;
}
.filter-group select {
    padding: 0.5rem 2rem 0.5rem 0.75rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--text-color);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238a919e' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
}
.filter-group select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}

/* ---- Event Single Page ---- */
.event-single { padding: 3rem 0; }

.event-single__grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 3rem;
}

.event-single__content h2 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--light-gray);
}
.event-single__content h2:first-child { margin-top: 0; }

.event-single__content p,
.event-single__content li {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--dark-gray);
}

.event-single__content ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}
.event-single__content ul li { margin-bottom: 0.5rem; }

/* Sidebar */
.event-sidebar {
    position: sticky;
    top: 100px;
}
.sidebar-card {
    background: var(--off-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    margin-bottom: 1.5rem;
}
.sidebar-card h3 {
    font-family: var(--font-body);
    font-size: 1.05rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--gold);
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
}
.info-row:last-child { border-bottom: none; }
.info-row__label { color: var(--text-muted); font-weight: 500; }
.info-row__value { color: var(--heading-color); font-weight: 600; text-align: right; }

/* Speakers */
.speakers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.25rem;
    margin-top: 1rem;
}
.speaker-card {
    background: var(--off-white);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
}
.speaker-card__avatar {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
}
.speaker-card__name {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}
.speaker-card__role {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}
.speaker-card__topic {
    font-size: 0.85rem;
    font-style: italic;
    color: var(--dark-gray);
}

/* Related events */
.related-events { margin-top: 3rem; }

/* ---- Article Single ---- */
.article-single { padding: 3rem 0; }
.article-single__header {
    max-width: 800px;
    margin-bottom: 2rem;
}
.article-single__category {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
}
.article-single__meta {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 0.75rem;
}

.article-content {
    max-width: 800px;
}
.article-content h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}
.article-content p {
    font-size: 1.05rem;
    line-height: 1.85;
    margin-bottom: 1.25rem;
}
.article-content strong {
    color: var(--heading-color);
}

/* ---- Contact Form ---- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.form-group {
    margin-bottom: 1.25rem;
}
.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
    color: var(--heading-color);
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--text-color);
    transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
.form-group textarea { min-height: 150px; resize: vertical; }

.contact-info-block {
    margin-bottom: 2rem;
}
.contact-info-block h3 {
    font-family: var(--font-body);
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}
.contact-info-block p {
    font-size: 0.95rem;
    color: var(--dark-gray);
}

/* ---- Legal Page Content ---- */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 0;
}
.legal-content h2 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 0.75rem;
}
.legal-content h3 {
    font-size: 1.2rem;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
}
.legal-content p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}
.legal-content ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}
.legal-content ul li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

/* ---- 404 Page ---- */
.error-page {
    text-align: center;
    padding: 6rem 0;
}
.error-page__code {
    font-family: var(--font-heading);
    font-size: 8rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 1rem;
}
.error-page h1 { font-size: 2rem; margin-bottom: 1rem; }
.error-page p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ---- Trust / Info Block ---- */
.trust-block {
    background: var(--off-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-top: 2rem;
}
.trust-block p {
    font-size: 0.9rem;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}
.trust-block p:last-child { margin-bottom: 0; }
.trust-block strong { color: var(--heading-color); }

/* ---- Footer ---- */
.footer {
    background: var(--navy-dark);
    color: rgba(255,255,255,0.7);
    padding: 4rem 0 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2.5rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}
.footer__logo strong {
    font-size: 1.1rem;
    color: var(--white);
}
.footer__about {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}
.footer__disclaimer {
    font-size: 0.8rem;
    padding: 0.75rem;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius);
    border-left: 3px solid var(--gold);
    line-height: 1.6;
}

.footer__col h3 {
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer__links li { margin-bottom: 0.5rem; }
.footer__links a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    transition: color var(--transition);
}
.footer__links a:hover { color: var(--gold-light); }

.footer__bottom {
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.8rem;
}
.footer__bottom p { margin-bottom: 0.5rem; }
.footer__legal-notice {
    max-width: 700px;
    margin: 0 auto;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.6;
}

/* ---- About Page ---- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}
.about-values {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}
.value-card {
    background: var(--off-white);
    border-radius: var(--radius-lg);
    padding: 2rem;
}
.value-card__icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}
.value-card h3 {
    font-family: var(--font-body);
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}
.value-card p {
    font-size: 0.9rem;
    color: var(--dark-gray);
}

/* ---- City / Category Page ---- */
.page-intro {
    padding: 2.5rem 0;
    max-width: 800px;
}
.page-intro p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--dark-gray);
}

.venue-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
    margin-bottom: 2rem;
}
.venue-tag {
    display: inline-block;
    padding: 0.35rem 1rem;
    background: var(--off-white);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--dark-gray);
}

.seo-content {
    padding: 3rem 0;
    border-top: 1px solid var(--border-color);
}
.seo-content p {
    max-width: 800px;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--dark-gray);
}

/* ---- No Results ---- */
.no-results {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-muted);
}
.no-results h3 { color: var(--heading-color); margin-bottom: 0.5rem; }
