/* =========================================================
   SRI THIRIPURASUNDARI THIRUVARUL TRUST
   COMMON SITE STYLES
   ========================================================= */


/* =========================================================
   ROOT VARIABLES
   ========================================================= */

:root {
    --header-height: 82px;

    --brand-color: #7b2d00;
    --brand-dark: #4d1b00;
    --accent-color: #d88900;
}


/* =========================================================
   BODY
   ========================================================= */

body {
    margin: 0;
    padding-top: var(--header-height);
    background: #fffaf3;
}


/* =========================================================
   FIXED HEADER
   ========================================================= */

.site-header {
    position: fixed;

    top: 0;
    left: 0;
    right: 0;

    height: var(--header-height);

    z-index: 1030;

    background: #ffffff;

    border-bottom: 1px solid #ead9c7;

    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}


/* =========================================================
   HEADER INNER
   ========================================================= */

.header-inner {
    height: 100%;

    display: flex;

    align-items: center;
}


/* =========================================================
   LOGO
   ========================================================= */

.site-logo {
    width: 68px;
    height: 68px;

    object-fit: contain;

    flex-shrink: 0;
}


/* =========================================================
   SITE BRANDING
   ========================================================= */

.site-brand {
    margin-left: 12px;

    line-height: 1.1;

    text-decoration: none;

    color: var(--brand-dark);
}


/* =========================================================
   SITE TITLE
   ========================================================= */

.site-name {
    font-size: 20px;

    font-weight: 700;

    letter-spacing: 0.2px;

    white-space: nowrap;
}


/* =========================================================
   SITE TAGLINE
   ========================================================= */

.site-tagline {
    margin-top: 5px;

    font-size: 12px;

    font-weight: 500;

    color: #866b52;

    white-space: nowrap;
}


/* =========================================================
   DESKTOP NAVIGATION
   ========================================================= */

.desktop-navigation {
    margin-left: auto;
}


.desktop-navigation .nav-link {
    color: #4d2b18;

    font-size: 14px;

    font-weight: 600;

    padding: 8px 12px !important;

    border-radius: 5px;

    transition: 0.2s;
}


.desktop-navigation .nav-link:hover,
.desktop-navigation .nav-link.active {
    color: #ffffff;

    background: var(--brand-color);
}


/* =========================================================
   MOBILE MENU BUTTON
   ========================================================= */

.mobile-menu-button {
    margin-left: auto;

    border: 1px solid #cdb49c;

    color: var(--brand-color);

    background: #fffaf5;

    width: 44px;
    height: 40px;

    border-radius: 6px;
}


.mobile-menu-button:hover {
    background: #f5e7d8;
}


/* =========================================================
   OFFCANVAS
   ========================================================= */

.offcanvas {
    width: 290px !important;
}


.offcanvas-header {
    border-bottom: 1px solid #ead9c7;

    background: #fffaf3;
}


.offcanvas-title {
    color: var(--brand-dark);

    font-weight: 700;
}


/* =========================================================
   MOBILE NAVIGATION
   ========================================================= */

.mobile-nav .nav-link {
    color: #4d2b18;

    padding: 12px 15px;

    border-bottom: 1px solid #f0e4d7;

    font-weight: 600;
}


.mobile-nav .nav-link:hover,
.mobile-nav .nav-link.active {
    color: #ffffff;

    background: var(--brand-color);
}


/* =========================================================
   LANGUAGE SWITCHER
   ========================================================= */

.language-switcher {
    display: flex;

    align-items: center;

    gap: 7px;

    margin-left: 14px;

    white-space: nowrap;
}


.language-switcher a,
.mobile-language-switcher a {
    color: #6b4a35;

    text-decoration: none;

    font-size: 13px;

    font-weight: 600;
}


.language-switcher a:hover,
.language-switcher a.active,
.mobile-language-switcher a:hover,
.mobile-language-switcher a.active {
    color: #b66a00;
}


.language-switcher span,
.mobile-language-switcher span {
    color: #c9b29d;
}


.mobile-language-switcher {
    padding: 13px 15px;

    text-align: center;

    border-bottom: 1px solid #f0e4d7;
}


/* =========================================================
   LANGUAGE FONTS
   ========================================================= */

:lang(ta) {
    font-family: "Noto Sans Tamil", sans-serif;
}


:lang(en) {
    font-family: inherit;
}


/* =========================================================
   TABLET / MOBILE
   ========================================================= */

@media (max-width: 991.98px) {

    :root {
        --header-height: 78px;
    }


    .site-logo {
        width: 68px;
        height: 68px;
    }


    .site-name {
        font-size: 17px;
    }


    .site-tagline {
        font-size: 10px;

        margin-top: 4px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 575.98px) {

    .site-brand {
        margin-left: 8px;
    }


    .site-name {
        font-size: 15px;
    }


    .site-tagline {
        font-size: 9px;
    }

}