﻿/* THEME */
:root {
    --font-family: 'Montserrat',sans-serif;
    --accent: #C19A46; /* gold */
    --text: #111;
    --muted: #8A8A8A;
    --bg: #fff;
    --menu-title-size: clamp(1.2rem, 3.6vw, 2.2rem);
    --submenu-size: .95rem;
    --padX: clamp(24px,5vw,80px);
    --anim: 320ms ease;
    --bs-body-font-size: 0.9rem;
    --small-line-height: 1.1;
    --lareg-line-height: 1.4;
    --XL-Title: 4rem;
    --L-Title: 3rem;
    --Title: 1.6rem;
    --Normal-Text: 1.1rem;
    --Small-Text: 0.9rem;
    --ActionLink: 0.9rem;
    --LargActionLink: 1.15rem;
}


@media(max-width:600px) {
    :root {
        --font-family: 'Montserrat',sans-serif;
        --accent: #C19A46; /* gold */
        --text: #111;
        --muted: #8A8A8A;
        --bg: #fff;
        --menu-title-size: clamp(1.2rem, 3.6vw, 2.2rem);
        --submenu-size: .95rem;
        --padX: clamp(24px,5vw,80px);
        --anim: 320ms ease;
        --bs-body-font-size: 0.9rem;
        --small-line-height: 1.1;
        --lareg-line-height: 1.4;
        --XL-Title: 4rem;
        --L-Title: 2.5rem;
        --Title: 1.5rem;
        --Normal-Text: 1rem;
        --Small-Text: 0.9rem;
        --ActionLink: 0.9rem;
    }
}
/* ============================================================
   ys-container
   A custom full-width container with Bootstrap breakpoints but
   WITHOUT any padding or margin.
   ============================================================ */
p {
    margin-top: 0rem;
    margin-bottom: 0rem;
}
ol, ul {
    padding-left: 1.1rem;
}
dl, ol, ul {
    margin-top: 0;
    margin-bottom: 0.0rem;
}
.ys-normal-content {
    font-size: var(--Normal-Text);
    /*letter-spacing: 1.1px;*/
    line-height: var(--lareg-line-height);
}
.ys-Title {

    font-size: var(--Title);
    font-weight: 600;
}
.ys-large-title {

}
.ys-container {
    width: 100%;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 0 !important;
    /* Same responsive max-width breakpoints as Bootstrap .container */
    max-width: 100%;
}
.med-part {
    padding-left: 0 !important;
    padding-right: 0 !important;
}
@media (min-width: 576px) {
    .ys-container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .ys-container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .ys-container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .ys-container {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .ys-container {
        max-width: 1320px;
    }
}

.footer-links li {
    display: flex;
    align-items: center; /* Vertical alignment of text with icon */
    gap: 8px; /* Space between icon and text */
    margin-bottom: 8px;
    font-weight:500;
}

    .footer-links li i {
        font-size: 1.2rem; /* Adjust icon size (increase to 1.5rem if needed) */
        line-height: 1; /* Remove any extra icon spacing */
    }
.container {
    padding-left: 25px !important;
    padding-right: 25px !important;
}
/* Section Header (outside background box) */
.section-header {
    padding: 0px 0 10px;
}

    .section-header h5 {
        font-size: var(--Normal-Text);
        font-weight: 400;
        color: #666;
        margin: 0;
    }

    .section-header h2 {
        font-size: var(--Title);
        font-weight: 600;
        margin-top: 5px;
        color: #111;
    }

/* ===== iOS Safari Real Viewport Height Fix ===== */

.slick-prev{
    background-color:transparent!important;
}
.slick-next {
    background-color: transparent !important;
}
/* Root reset */
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    -webkit-text-size-adjust: 100%;
    user-select: none !important;
    background-color:#fff;
}
*:focus-visible {
    border: none;
    outline: none;
    border: none;
}
/* Remove focus outlines from all elements */
*:focus {
    border:none;
    outline: none ;
    box-shadow: none ;
}


a {
    text-decoration: none !important;
}

    a:hover {
        text-decoration: none;
    }

#blazor-error-ui {
    display: none !important;
}
/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600;700&display=swap');



* {
    box-sizing: border-box
}

html, body {
    height: 100%
}
body, h1, h2, h3, h4, h5, h6, p, div, span, a, button {
    font-family: var(--font-family);
    letter-spacing: 0px;
}
body {
    margin: 0;
    font-family: var(--font-family);
    color: var(--text)
}

    body.no-scroll {
        overflow: hidden
    }

/* ✅ Global Reset + Font */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
}



/* Scroll Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.9s ease;
}

.reveal-show {
    opacity: 1;
    transform: translateY(0);
}




/* ===== FOOTER ===== */
.site-footer {
    background-color: #fff;
    color: black;
    /*padding: 60px var(--padX) 30px;*/
    font-family: var(--font-family);
}

/* Desktop Columns */
.footer-columns {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 20px;
}
.footer-columns2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* Footer Titles */
.footer-title {
    background: none;
    border: none;
    width: 100%;
    font-size: 1.2rem;
    color: dimgray;
    font-weight: 400;
    text-align: left;
    padding: 0;
    margin-bottom: 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-links a {
        color: black;
        text-decoration: underline!important;
        transition: color 0.3s ease;
    }

        .footer-links a:hover {
            color: var(--accent);
        }

/* Bottom Bar */
.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 0.9rem;
}

    .footer-bottom a {
        color: #bfbfbf;
    }

        .footer-bottom a:hover {
            color: var(--accent);
        }
/*.footer-links li {
    list-style: none;
    margin-bottom: 8px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

.footer-links i {
    font-size: 16px;
}
*/
/* Mobile Accordion */
@media (max-width: 992px) {
    .footer-columns {
        grid-template-columns: 1fr;
    }

    .footer-links {
        display: none;
    }

    .footer-title .footer-icon {
        display: inline-block;
    }
    .ys-mob-footer {
        /*align-items: center !important;
        justify-content: center !important;*/
    }
}
/* Hide + icons on desktop */
/* Footer links default hidden on mobile */
/* Hide all footer links by default on mobile */
.footer-links {
    display: none;
}

    /* Show only if open */
    .footer-links.open {
        display: block;
    }

/* On desktop: always visible, hide + icons */
@media (min-width: 992px) {
    .footer-links {
        display: block !important;
    }

    .footer-icon {
        display: none !important;
    }

}
