@import './fonts/fonts.css';

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
    --teal:          #07404c;
    --teal-mid:      #0a5a6b;
    --teal-light:    #13778e;
    --teal-pale:     #eaf4f6;
    --teal-faint:    #f3f9fa;
    --coral:         #f1513e;
    --coral-dark:    #d43d2b;
    --coral-pale:    #fff0ee;
    --cream:         #fdf9f5;
    --text:          #1c2b2d;
    --text-muted:    #5a7275;
    --border:        #dde8ea;
    --white:         #ffffff;
    --shadow-sm:     0 1px 4px rgba(7,64,76,.08);
    --shadow-md:     0 4px 20px rgba(7,64,76,.12);
    --shadow-lg:     0 8px 40px rgba(7,64,76,.15);
    --font-display:  'Bitter', Georgia, serif;
    --font-body:     'Mulish', 'Segoe UI', sans-serif;
    --radius:        6px;
    --radius-lg:     10px;
    --nav-h:         96px;
}

/* ============================================================
   BASE RESET / GLOBALS
   ============================================================ */
*,
*::before,
*::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    margin: 0;
    padding: 0;
}

/* Prevent layout shifts from unloaded fonts */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.25;
    color: var(--teal);
    margin-top: 0;
}

h1 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h2 { font-size: clamp(1.3rem, 2.4vw, 1.9rem); }
h3 { font-size: clamp(1.05rem, 1.8vw, 1.3rem); }

a {
    color: var(--teal);
    text-decoration: none;
    transition: color .18s ease;
}
a:hover { color: var(--coral); }

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

p { margin: 0 0 1rem; }

/* ============================================================
   LAYOUT HELPERS
   ============================================================ */
.container {
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.inner-wrapper {
    padding: 2.5rem 0 3.5rem;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -.75rem;
}

[class^="col-"] {
    padding: 0 .75rem;
    width: 100%;
}

@media (min-width: 992px) {
    .col-lg-3  { width: 25%;      flex: 0 0 25%; }
    .col-lg-4  { width: 33.333%;  flex: 0 0 33.333%; }
    .col-lg-5  { width: 41.667%;  flex: 0 0 41.667%; }
    .col-lg-7  { width: 58.333%;  flex: 0 0 58.333%; }
    .col-lg-8  { width: 66.667%;  flex: 0 0 66.667%; }
    .col-lg-9  { width: 75%;      flex: 0 0 75%; }
    .col-lg-12 { width: 100%;     flex: 0 0 100%; }
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    transition: box-shadow .2s ease;
}
.site-header.scrolled {
    box-shadow: var(--shadow-md);
}

/* Accent stripe */
.site-header::before {
    content: '';
    display: block;
    height: 4px;
    background: linear-gradient(90deg, var(--teal) 0%, var(--teal-light) 55%, var(--coral) 100%);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-h);
    gap: 1.5rem;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
}
.logo-wrapper img.logo {
    height: 80px;
    width: auto;
}

/* Nav */
.site-nav {
    display: flex;
    align-items: center;
    gap: .25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
.site-nav li a {
    display: block;
    padding: .45rem .85rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: .9rem;
    color: var(--text);
    border-radius: var(--radius);
    transition: background .15s, color .15s;
    letter-spacing: .01em;
    text-transform: uppercase;
}
.site-nav li a:hover,
.site-nav li a.active {
    color: var(--coral);
    background: var(--coral-pale);
}
.site-nav li a.active {
    color: var(--coral-dark);
}

/* Newsletter CTA in nav */
.site-nav li.nav-cta a {
    background: var(--coral);
    color: var(--white);
    border-radius: 999px;
    padding: .45rem 1.1rem;
}
.site-nav li.nav-cta a:hover {
    background: var(--coral-dark);
    color: var(--white);
}

/* Hamburger */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: .4rem;
    flex-direction: column;
    gap: 5px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--teal);
    border-radius: 2px;
    transition: transform .25s, opacity .25s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 991px) {
    .nav-toggle {
        display: flex;
    }
    .nav-collapse {
        position: absolute;
        top: calc(var(--nav-h) + 4px);
        left: 0;
        right: 0;
        background: var(--white);
        border-bottom: 2px solid var(--teal);
        box-shadow: var(--shadow-md);
        padding: .75rem 1.25rem 1.25rem;
        display: none;
    }
    .nav-collapse.open {
        display: block;
    }
    .site-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: .1rem;
    }
    .site-nav li { width: 100%; }
    .site-nav li a {
        width: 100%;
        padding: .65rem 1rem;
        font-size: 1rem;
    }
}

/* Override Bootstrap nav from base – mainMenuWrapper compatibility */
.mainMenuWrapper {
    display: none !important;
}

/* ============================================================
   HOME HERO / INTRO
   ============================================================ */
.page-hero {
    background: var(--teal);
    padding: 3rem 0 2.5rem;
    position: relative;
    overflow: hidden;
}
.page-hero::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 40px;
    background: var(--white);
    clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero h1 {
    color: var(--white);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    margin-bottom: .75rem;
}
.page-hero .hero-body {
    color: rgba(255,255,255,.8);
    font-size: 1.05rem;
    max-width: 560px;
}
.page-hero .hero-body p { color: inherit; }

/* Category page header */
.category-header {
    background: var(--teal-faint);
    border-bottom: 2px solid var(--border);
    padding: 2rem 0 1.5rem;
}
.category-header h1 {
    margin-bottom: .4rem;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
}
.category-header .intro-text {
    color: var(--text-muted);
    font-size: 1.02rem;
    max-width: 620px;
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb-bar {
    background: var(--teal-faint);
    border-bottom: 1px solid var(--border);
    padding: .55rem 0;
    font-size: .82rem;
    color: var(--text-muted);
}
.breadcrumb-bar a {
    color: var(--teal-mid);
    font-weight: 500;
}
.breadcrumb-bar a:hover { color: var(--coral); }

/* ============================================================
   CATEGORY SECTIONS (HOME)
   ============================================================ */
.cat-section {
    padding: 3rem 0 2rem;
    border-bottom: 1px solid var(--border);
}
.cat-section:last-child { border-bottom: none; }
.cat-section:nth-child(even) {
    background: var(--teal-faint);
}

.section-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: .5rem;
    margin-bottom: 1.75rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}
.section-head h2 {
    margin: 0;
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    display: flex;
    align-items: center;
    gap: .6rem;
}
.section-head h2 .cat-badge {
    display: inline-flex;
    align-items: center;
    background: var(--coral);
    color: var(--white);
    font-family: var(--font-body);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    padding: .25em .65em;
    border-radius: 999px;
    line-height: 1;
}
.section-head .see-all {
    font-size: .875rem;
    font-weight: 600;
    color: var(--teal-mid);
    white-space: nowrap;
    border: 1.5px solid var(--teal-mid);
    padding: .35rem .85rem;
    border-radius: 999px;
    transition: background .15s, color .15s;
}
.section-head .see-all:hover {
    background: var(--teal);
    border-color: var(--teal);
    color: var(--white);
}

/* ============================================================
   ARTICLE CARDS — shared styles
   ============================================================ */
.article-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 100%;
    transition: box-shadow .2s ease, transform .2s ease;
    text-decoration: none;
    color: inherit;
}
.article-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
    color: inherit;
}

.article-card .card-img {
    overflow: hidden;
    flex-shrink: 0;
    background: var(--teal-pale);
}
.article-card .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
    display: block;
}
.article-card:hover .card-img img {
    transform: scale(1.04);
}

.article-card .card-body {
    padding: 1.1rem 1.15rem 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: .45rem;
}

.article-card .card-date {
    font-size: .78rem;
    color: var(--text-muted);
    font-weight: 500;
}

.article-card h3,
.article-card h2 {
    font-size: 1.05rem;
    line-height: 1.35;
    margin: 0;
    color: var(--teal);
    transition: color .18s;
}
.article-card:hover h3,
.article-card:hover h2 {
    color: var(--coral);
}

.article-card .card-excerpt {
    font-size: .88rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ============================================================
   ARTICLE LIST — MODE: GRID (default)
   ============================================================ */
.article-list { margin: 0; }

.al-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
}
@media (min-width: 640px) {
    .al-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 992px) {
    .al-grid { grid-template-columns: repeat(3, 1fr); }
}

.al-grid .article-card .card-img {
    aspect-ratio: 3 / 2;
}

/* ============================================================
   ARTICLE LIST — MODE: FEATURED
   First item is large hero, 2 stacked in right col, rest 3-col
   ============================================================ */
.al-featured {
    display: grid;
    gap: 1.5rem;
    grid-template-areas: 'hero side';
    grid-template-columns: 1fr;
}
@media (min-width: 768px) {
    .al-featured {
        grid-template-columns: 5fr 3fr;
        grid-template-rows: auto;
    }
}

.al-featured-hero {
    grid-area: hero;
}
.al-featured-side {
    grid-area: side;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Extra articles below featured block */
.al-featured-rest {
    margin-top: 1.5rem;
}

.al-featured .article-card.card-hero .card-img {
    aspect-ratio: 16 / 9;
}
.al-featured .article-card.card-hero h3,
.al-featured .article-card.card-hero h2 {
    font-size: 1.3rem;
    line-height: 1.3;
}
.al-featured .article-card.card-hero .card-excerpt {
    -webkit-line-clamp: 4;
}

.al-featured .article-card.card-side .card-img {
    aspect-ratio: 16 / 7;
}
.al-featured .article-card.card-side {
    flex-direction: row;
    min-height: 0;
}
.al-featured .article-card.card-side .card-img {
    width: 120px;
    min-width: 120px;
    aspect-ratio: 4 / 3;
}
.al-featured .article-card.card-side .card-body {
    padding: .85rem 1rem;
}
.al-featured .article-card.card-side h3,
.al-featured .article-card.card-side h2 {
    font-size: .97rem;
}
.al-featured .article-card.card-side .card-excerpt {
    -webkit-line-clamp: 2;
    font-size: .83rem;
}

@media (max-width: 767px) {
    .al-featured {
        grid-template-areas:
            'hero'
            'side';
        grid-template-columns: 1fr;
    }
    .al-featured .article-card.card-side {
        flex-direction: row;
    }
}

/* ============================================================
   ARTICLE LIST — MODE: COMPACT
   2 items per row, horizontal thumb+text
   ============================================================ */
.al-compact {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
}
@media (min-width: 640px) {
    .al-compact { grid-template-columns: repeat(2, 1fr); }
}

.al-compact .article-card {
    flex-direction: row;
}
.al-compact .article-card .card-img {
    width: 130px;
    min-width: 130px;
    aspect-ratio: 3 / 2;
    flex-shrink: 0;
}
.al-compact .article-card .card-body {
    padding: .9rem 1rem;
    gap: .35rem;
}
.al-compact .article-card h3,
.al-compact .article-card h2 {
    font-size: .97rem;
}
.al-compact .article-card .card-excerpt {
    -webkit-line-clamp: 2;
    font-size: .83rem;
}

/* ============================================================
   SIDEBAR
   ============================================================ */
.sidebar {
    padding-left: 0;
}
@media (min-width: 992px) {
    .sidebar {
        padding-left: 1.5rem;
        border-left: 1px solid var(--border);
    }
}

.sidebar-widget {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.sidebar-widget-head {
    background: var(--teal);
    padding: .75rem 1.1rem;
}
.sidebar-widget-head h4 {
    margin: 0;
    color: var(--white);
    font-size: .9rem;
    letter-spacing: .03em;
    text-transform: uppercase;
    font-family: var(--font-body);
    font-weight: 700;
}
.sidebar-widget-body {
    padding: 1.1rem;
}

/* Newsletter widget */
.sidebar-newsletter {
    background: var(--teal);
    border-color: var(--teal);
    border-radius: var(--radius-lg);
    padding: 1.4rem 1.2rem 1.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}
.sidebar-newsletter::before {
    content: '';
    position: absolute;
    top: -20px; right: -20px;
    width: 90px; height: 90px;
    background: rgba(241,81,62,.2);
    border-radius: 50%;
}
.sidebar-newsletter::after {
    content: '';
    position: absolute;
    bottom: -15px; left: -15px;
    width: 60px; height: 60px;
    background: rgba(255,255,255,.07);
    border-radius: 50%;
}
.sidebar-newsletter .nl-icon {
    font-size: 1.8rem;
    margin-bottom: .5rem;
    position: relative;
    z-index: 1;
}
.sidebar-newsletter h4 {
    color: var(--white);
    font-size: 1.05rem;
    margin-bottom: .4rem;
    position: relative;
    z-index: 1;
}
.sidebar-newsletter p {
    color: rgba(255,255,255,.75);
    font-size: .88rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}
.sidebar-newsletter .btn-nl {
    display: inline-block;
    background: var(--coral);
    color: var(--white);
    font-weight: 700;
    font-size: .9rem;
    padding: .6rem 1.4rem;
    border-radius: 999px;
    text-decoration: none;
    position: relative;
    z-index: 1;
    transition: background .15s, transform .15s;
}
.sidebar-newsletter .btn-nl:hover {
    background: var(--coral-dark);
    color: var(--white);
    transform: translateY(-1px);
}

/* Category list widget */
.sidebar-categories li {
    list-style: none;
    border-bottom: 1px solid var(--border);
}
.sidebar-categories li:last-child { border-bottom: none; }
.sidebar-categories li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .6rem 0;
    font-weight: 500;
    font-size: .9rem;
    color: var(--teal);
}
.sidebar-categories li a::after {
    content: '→';
    font-size: .9rem;
    color: var(--text-muted);
    transition: transform .15s, color .15s;
}
.sidebar-categories li a:hover {
    color: var(--coral);
}
.sidebar-categories li a:hover::after {
    transform: translateX(3px);
    color: var(--coral);
}
.sidebar-categories {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination-wrap {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
}
.pagination {
    display: flex;
    align-items: center;
    gap: .35rem;
    list-style: none;
    padding: 0;
    margin: 0;
}
.pagination .page-item .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 .55rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-size: .875rem;
    font-weight: 600;
    color: var(--teal);
    background: var(--white);
    text-decoration: none;
    transition: background .15s, border-color .15s, color .15s;
}
.pagination .page-item .page-link:hover {
    background: var(--teal-pale);
    border-color: var(--teal);
}
.pagination .page-item.active .page-link {
    background: var(--teal);
    border-color: var(--teal);
    color: var(--white);
}
.pagination .page-item.disabled .page-link {
    opacity: .4;
    pointer-events: none;
}

/* ============================================================
   ARTICLE DETAIL PAGE
   ============================================================ */
.article-wrapper {
    padding: 2.5rem 0 3rem;
}

.article-main h1 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    margin-bottom: .75rem;
    line-height: 1.2;
}

.article-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .6rem;
    margin-bottom: 1.25rem;
    font-size: .85rem;
    color: var(--text-muted);
}
.article-meta .meta-cat {
    background: var(--coral);
    color: var(--white);
    font-weight: 700;
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .07em;
    padding: .25em .7em;
    border-radius: 999px;
    text-decoration: none;
}
.article-meta .meta-cat:hover {
    background: var(--coral-dark);
    color: var(--white);
}

.article-main .article-image {
    margin-bottom: 1.75rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--teal-pale);
    aspect-ratio: 16 / 7;
}
.article-main .article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.article-main .article-date {
    font-size: .82rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}
.article-main .article-date .modified-date {
    opacity: .75;
}

.article-main .article-content {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text);
}
.article-content h2 {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    font-size: clamp(1.1rem, 2vw, 1.5rem);
}
.article-content h3 {
    margin-top: 1.5rem;
    font-size: clamp(1rem, 1.6vw, 1.2rem);
}
.article-content ul,
.article-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}
.article-content li { margin-bottom: .3rem; }
.article-content a {
    color: var(--teal-mid);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.article-content a:hover { color: var(--coral); }
.article-content blockquote {
    border-left: 3px solid var(--coral);
    margin: 1.5rem 0;
    padding: .75rem 1.25rem;
    background: var(--coral-pale);
    border-radius: 0 var(--radius) var(--radius) 0;
    color: var(--text);
    font-style: italic;
}
.article-content strong { color: var(--teal); }
.article-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.25rem;
    font-size: .9rem;
}
.article-content table th,
.article-content table td {
    border: 1px solid var(--border);
    padding: .55rem .75rem;
    text-align: left;
}
.article-content table th {
    background: var(--teal-faint);
    font-weight: 600;
    color: var(--teal);
}

/* Related articles section */
.related-articles {
    padding: 2rem 0;
    border-top: 2px solid var(--border);
    margin-top: 1rem;
}
.related-articles .section-head {
    margin-bottom: 1.5rem;
}

/* ============================================================
   CATEGORY PAGE
   ============================================================ */
.category-intro {
    margin-bottom: 1.75rem;
}
.category-intro p { color: var(--text-muted); }

/* ============================================================
   PAGE (generic, impressum etc)
   ============================================================ */
.page-content {
    padding: 2.5rem 0 3rem;
}
.page-content h1 {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border);
}
.page-body {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text);
}
.page-body h2 { margin-top: 1.75rem; }
.page-body a {
    color: var(--teal-mid);
    text-decoration: underline;
}
.page-body a:hover { color: var(--coral); }

/* ============================================================
   NEWSLETTER CONFIRMATION PAGE
   ============================================================ */
.confirmation-page {
    text-align: center;
    padding: 4rem 0;
}
.confirmation-icon {
    width: 70px;
    height: 70px;
    background: var(--teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 1.8rem;
}
.confirmation-page h1 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    margin-bottom: .75rem;
}
.confirmation-page p {
    max-width: 500px;
    margin: 0 auto 1.5rem;
    color: var(--text-muted);
}
.btn-back {
    display: inline-block;
    background: var(--coral);
    color: var(--white);
    font-weight: 700;
    padding: .7rem 1.75rem;
    border-radius: 999px;
    text-decoration: none;
    transition: background .15s, transform .15s;
}
.btn-back:hover {
    background: var(--coral-dark);
    color: var(--white);
    transform: translateY(-1px);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--teal);
    color: rgba(255,255,255,.75);
    padding: 2.5rem 0 0;
    margin-top: 2rem;
    font-size: .875rem;
}
.footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-brand .logo-footer {
    height: 36px;
    width: auto;
    margin-bottom: .75rem;
    filter: brightness(0) invert(1);
}
.footer-brand .tagline {
    color: rgba(255,255,255,.6);
    font-size: .85rem;
    margin: 0;
}
.footer-nav-group {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}
.footer-nav-group a {
    color: rgba(255,255,255,.65);
    font-size: .875rem;
    transition: color .15s;
}
.footer-nav-group a:hover {
    color: var(--coral);
}
.footer-bottom {
    padding: 1rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    border-top: 1px solid rgba(255,255,255,.08);
    flex-wrap: wrap;
}
.footer-bottom p {
    color: rgba(255,255,255,.4);
    font-size: .8rem;
    margin: 0;
}

/* ============================================================
   COOKIE ICON (keep base positioning)
   ============================================================ */
.cookieicon {
    width: 50px;
    height: 50px;
    background-color: var(--teal);
    cursor: pointer;
    position: fixed;
    left: 10px;
    bottom: 10px;
    mask-image: url('/themes/base/assets/cookie.png');
    mask-size: contain;
    mask-repeat: no-repeat;
    z-index: 200;
}

/* ============================================================
   UTILITY
   ============================================================ */
.text-muted { color: var(--text-muted); }
.text-coral { color: var(--coral); }
.mt-0 { margin-top: 0 !important; }

/* Bootstrap override: hide base mainMenuWrapper,
   we render our own .site-header via custom mainmenu.php */
.navbar, .mainMenuWrapper { display: none !important; }
