﻿:root {
    --accent: #ff7e0f;
    --warm: #60564e;
    --text: #565656;
    --muted: #6b6b6b;
    --shadow-warm: #938a7c1a;
    --footer-bg: #080808cf;
    --bg: #ffffff;
    --max-width: 1200px;
    --radius: 14px;
}

* {
    box-sizing: border-box;
}

@font-face {
    font-family: 'Beth Ellen';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('/Assets_v1/fonts/BethEllen-Regular.ttf') format('truetype');
}

body {
    margin: 0;
    font-family: "Segoe UI", Inter, system-ui, sans-serif;
    background: #fff;
    color: #111;
    line-height: 21px;
    -webkit-font-smoothing: antialiased;
    font-size: 16px;
}

a {
    color: inherit;
    text-decoration: none;
}

header.site-header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid var(--shadow-warm);
    z-index: 100;
}

.header-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 25px 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 8px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin:0;
}

@media (max-width: 1200px) {
    
    .brand {
        margin-left: 10px;
    }
}

.logo {
    width: 42px;
    height: 42px;
    background: var(--accent);
    color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
}

.site-title {
    color: var(--accent);
    font-weight: 800;
    font-size: 25px;
    cursor: pointer;
    font-family: 'Beth Ellen', cursive;
    user-select: none;
}

@media (max-width: 768px) {
    .site-title {
        font-size: 20px;
    }
}

.site-sub {
    font-size: 13px;
    color: var(--muted);
    margin-top: 10px;
}

nav.main-nav {
    display: flex;
    gap: 16px;
}

    nav.main-nav a {
        font-size: 14px;
        padding: 6px 10px;
        color: var(--warm);
        border-radius: 8px;
    }

        nav.main-nav a:hover {
            background: var(--shadow-warm);
        }

.mobile-controls {
    display: none;
}


.menu-btn {
    appearance: none;
    border: none;
    outline: none;
    background-color: transparent;
    cursor: pointer;
    box-shadow: none;
    padding: 0; 
    width: 32px; 
    height: 32px; 
    background-image: url(/Assets_v1/images/site/menu.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    margin-right: 5px;
}

    .menu-btn:active {
        background-color: transparent;
    }


@media (max-width: 768px) {
    nav.main-nav {
        display: none;
    }

    .mobile-controls {
        display: block;
    }
}

.hero {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 50px 20px 30px;
}

    .hero .subtitle {
        color: var(--warm);
        font-weight: 600;
        font-size: 14px;
        margin-bottom: 8px;
    }

h1.site-h1 {
    font-size: 36px;
    font-weight: 800;
    margin: 0 0 10px;
    color: var(--text);
    line-height: 30px;
}

p.lead {
    color: var(--muted);
    max-width: 700px;
    margin-bottom: 18px;
}

.search {
    display: flex;
    gap: 8px;
    margin-top: 6px;
    max-width: 500px;
}

    .search input[type="search"] {
        flex: 1;
        padding: 10px 12px;
        border: 1px solid var(--shadow-warm);
        border-radius: 10px;
        font-size: 15px;
        outline: none;
    }

        .search input[type="submit"] {
            background-color: var(--accent);
            color: #fff;
            padding: 10px 16px;
            border: none;
            border-radius: 10px;
            font-weight: 700;
            cursor: pointer;
        }

.any-section {
    max-width: var(--max-width);
    margin: 24px auto;
    padding: 0 20px;
}

.any-section h1 {
    font-size: 28px;
    font-weight: 800;
    margin: 0 0 10px;
    color: #565656;
    line-height: 30px;
}

section#sections {
    max-width: var(--max-width);
    margin: 30px auto;
    padding: 0 20px;
}

    section#sections h2 {
        font-size: 22px;
        font-weight: 700;
        color: var(--warm);
        margin-bottom: 18px;
    }

.sections-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 1024px) {
    .sections-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .sections-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .sections-grid {
        grid-template-columns: 1fr;
    }
}

.card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.04);
    border-radius: var(--radius);
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    padding: 18px 20px;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

    .card:hover {
        box-shadow: 0 8px 20px rgba(0,0,0,0.08);
        transform: translateY(-3px);
    }

.img-placeholder {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    margin-bottom: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .img-placeholder img {
        width: 100%; 
        height: 100%; 
    }

.svg-fill {
    filter: invert(58%) sepia(110%) saturate(446%) hue-rotate(-400deg) brightness(100%) contrast(100%);
    width: 25px !important;
    height: 25px !important;
}

.svg-fill-only {
    filter: invert(58%) sepia(110%) saturate(446%) hue-rotate(-400deg) brightness(100%) contrast(100%);    
}

.card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--warm);
    margin: 0 0 6px;
}

.card p {
    font-size: 14px;
    color: var(--muted);
    margin: 0;
}

.popular, .about {
    max-width: var(--max-width);
    margin: 40px auto;
    padding: 40px;
    border-radius: 12px;
    background: #f8f8f8;
}

    .about p {
        color: var(--text);
        font-weight: 600;
    }

    .about h3 {
        margin: 0;
        font-weight: 700;
        color: var(--text);
        font-size: 22px;
    }


footer.site-footer {
    background: var(--footer-bg);
    color: #ccc;
    padding: 30px 20px;
}

.footer-inner {    
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: space-around;
    align-content: flex-start;
}

.footer-col {
    max-width: 290px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    align-content: flex-start;
    line-height: 20px;
}

    .footer-col h4 {
        color: #fff;
        margin-bottom: 8px;
    }

.social {
    width: 30px;
    height: 30px;
    background-position: center;
    display: inline-block;
    background-size: cover
}


.year {
    display: contents;
}

.visually-hidden {
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    white-space: nowrap;
}

.breadcrumb-list {
    list-style: none;
    display: flex;
    gap: 5px;
    padding: 0;
    margin: 0 0 12px;
    font-size: 14px;
    color: var(--muted);
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
}

    .breadcrumb-list li {
        display: flex;
        align-items: center;
    }


    .breadcrumb-list li::after {
        content: "/";
        margin: 0 6px;
        color: rgba(0,0,0,0.2);
    }


    .breadcrumb-list li:last-child::after {
        content: "";
    }

.breadcrumb-list-home {
    height: 25px; 
    width: 25px;
    display: inline-block;
}

.breadcrumb-link {
    font-weight:700;
}

.loading-spinner {
    color: transparent !important;
    background-image: url('/Assets_v1/images/site/ripples.svg') !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    background-size: 24px 24px !important;
    cursor: progress !important;
    pointer-events: none;
    opacity: 0.85;
    text-indent: -9999px;
    font-size: 0;
}

.calc-sub {
    font-size: 1rem;
    line-height: normal;
    font-family: "Segoe UI", Inter, system-ui, sans-serif;
    font-weight: normal;
    margin-top: 0;
    color: var(--muted);
}

