@import "spinner.css";

/* ===== Default (Light Theme) ===== */
:root {
    --brand-color: #800000; /* Primary brand color Maroon (#800000);*/
    --brand-accent: #FFD700; /* Accent (Gold) */
    --brand-bg: #FFFFFF; /* Background */
    --brand-text: #1A1A1A; /* Primary text */
    --brand-muted: #F5F5F5; /* Section background */
    --brand-border: black; /* Borders / dividers */
    --hover-color: #c30000;
    --bs-btn-bg: var(--brand-color) !important;
    --bs-btn-border-color: var(--border-color) !important;
    --bs-btn-color: #fff !important; /* text color */
}

/* ===== Dark Theme ===== */
[data-bs-theme="dark"] {
    --brand-color: #db005e; /* Primary brand color */
    --brand-accent: #FFD700; /* Accent stays gold */
    --brand-bg: #121212; /* Background */
    --brand-text: #EAEAEA; /* Light text */
    --brand-muted: #1E1E1E; /* Section background */
    --brand-border: white; /* Borders / dividers */
    --hover-color: #c30000;
    --brand-border-color: green;
    --bs-btn-bg: red !important;
    --bs-btn-border-color: darkred !important;
    --bs-btn-color: #fff !important;
}


[data-bs-theme="light"] .divider-line {
    background: linear-gradient(90deg, rgb(255 255 255) 12%, var(--brand-color) 50%, rgb(255 255 255) 89%);
}

[data-bs-theme="dark"] .divider-line {
    background: linear-gradient(90deg, rgb(33 37 41) 12%, #fc4080 50%, rgb(33 37 41) 89%);
}

/***************************/
/* ===== Base Styles ===== */
/***************************/
html {
    /*font-family: Roboto, 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;*/
    /*font-size: 14px;*/
    position: relative;
    min-height: 100%;
    color: var(--brand-text);
}

body {
    margin-bottom: 80px;
    color: var(--text-color);
}

h1 {
    font-size: 1.6em;
    font-weight: bold;
    padding: 0px 28px;
}

h2 {
    font-size: 1.5em;
}

h3 {
    font-size: 1.3em;
}

h4 {
    font-size: 1.1em;
}

main {
    margin-top: 20px;
}

.container {
    min-height: 600px;
}

.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus {
    box-shadow: none !important;
}

.form-check-input[type=checkbox] {
    border: solid 1px #808080 !important;
}

.form-check-input:checked {
    background-color: darkred !important;
    border-color: #808080 !important;
}

.btn-primary {
    background-color: var(--brand-color) !important;
    border-color: var(--hover-color) !important;
    color: #fff !important;
}

    .btn-primary:hover {
        background-color: var(--hover-color) !important;
        border-color: var(--hover-color) !important;
        color: #fff !important;
    }


/* ===== Brand ===== */
div.brand {
    display: block;
    float: left;
}

#spanIndian {
    font-family: 'Comforter';
    font-size: 1.7em;
    font-weight: bold;
    margin-top: 6px;
    margin-right: 5px;
    color: var(--brand-color);
}

#spanMusic {
    font-family: 'DM Serif Display', serif;
    font-size: 1.7em;
    font-weight: 600;
}

#spanRedDot {
    font-weight: 800;
    font-size: 30px;
    margin-left: -25px;
    margin-top: -15px;
    color: orangered; /*var(--brand-color);*/
}


/* ===== Forms      */
.theme-changer-form {
    margin-top: -32px;
    z-index: 1;
    position: relative;
    font-size: 0.9em;
    margin-right: 13px;
}

.form-search {
    width: 115%;
    margin-left: 16%;
    margin-top: 20px;
}

.highlight {
    color: var(--brand-color);
}

.divider-line {
    height: 1px;
}


.text-indian-red {
    color: #cc3333; /* A rich Indian Red for accents */
}

.bg-indian-gold {
    background-color: #ffc400; /* A soft gold for accents */
}

.shadow-custom {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}


/* ===== quote ===== */

.blockquote {
    color: var(--brand-color);
}

.quote-title {
    color: var(--brand-color) !important;
    font-size: 1.3em;
    font-weight: bold;
    font-style: italic;
}

    .quote-title::before {
        content: open-quote;
        font-size: 1.5rem;
        left: -5rem;
        top: -2rem;
        color: #808080;
    }

    .quote-title::after {
        content: close-quote;
        font-size: 1.5rem;
        right: -5rem;
        bottom: 1rem;
        color: #808080;
    }


.quote-desc {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: #808080;
}

.quote-author {
    font-size: 1.1rem;
    color: #adb5bd;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    margin-bottom: 5px;
}

.of-the-day-name {
    font-weight: bold;
    color: var(--brand-color);
}

    .of-the-day-name:hover {
        color: var(--border-color);
    }

.of-the-day-card {
    min-height: 300px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

/* ===== card ===== */

.card-body {
    padding: .5rem 1rem;
}

.card-title {
    margin-bottom: .2rem;
}


/***************************/
/* === Dropdown Styles === */
/***************************/
#languageSelector {
    margin-top: -20px !important;
    margin-left: 166px !important;
}

.language-selector-custom-dropdown {
    border: none !important;
    height: 25px !important;
    line-height: 25px !important;
    padding: 0 12px !important; /* Adjust horizontal padding as needed */
    margin-top: -20px !important;
}

.dropdown-item.active {
    background-color: var(--brand-color) !important;
}

.dropdown-toggle {
    background: none !important;
}

.dropdown-toggle-search-in-ddl {
    border-radius: 5px 0px 0px 5px !important;
    margin-left: -15px;
}

.dropdown-toggle-search-btn {
    border-radius: 0px 5px 5px 0px !important;
}

.language-selector-dropdown {
    margin-top: -20px !important;
    width: 75px;
    float: right;
    background: transparent;
}

    .language-selector-dropdown:hover {
        background: yellow;
    }

/*---------------------------------------*/
/*Ensure the parent link takes full width*/
/*---------------------------------------*/
.dropdown-submenu {
    position: relative;
}

    .dropdown-submenu > .dropdown-menu {
        top: 0;
        left: 100%;
        margin-top: -0.25rem;
    }

    .dropdown-submenu > .dropdown-toggle {
        position: relative;
        padding-right: 1.5rem; /*leave space for arrow */
    }

        /*Move Bootstrap's default arrow to the right*/
        .dropdown-submenu > .dropdown-toggle::after {
            position: absolute;
            right: 10px; /*distance from right edge */
            top: 50%;
            transform: translateY(-50%);
            margin-left: 0; /* remove default spacing */
            /*color: var(--border-color) !important;*/
        }

/***************************/
/* footer */
/***************************/
footer {
    font-size: 0.8rem;
    height: 50px;
    bottom: 0px;
    width: 99%;
    padding: 10px 0px;
    vertical-align: middle;
}

    footer a {
        font-size: 0.9em;
        text-decoration: none;
    }

        footer a:hover {
            color: var(--brand-color) !important;
        }

a.footer-link {

}

    a.footer-link::after {
        content: "\25E6";
        margin: 0px 5px;
    }

    .social-icon-btn {
        font-size: 2.5rem;
        margin: 0px 10px;
    }

.social-media-header > a {
    font-size: 1.5rem;
    margin: 0px 5px;
}

.social-media-footer > a {
    font-size: 2.5rem;
    margin: 0px 5px;
}

    .social-media-footer > a#yt,
    .social-media-header > a#yt {
        color: red;
    }

    .social-media-footer > a#fb,
    .social-media-header > a#fb {
        color: blue;
    } 

    .social-media-footer > a#insta,
    .social-media-header > a#insta {
        color: black;
    }


.center-div {
    display: flex;
    justify-content: center; /* center horizontally */
    align-items: center; /* center vertically */
    height: 200px; /* set a height for the div */
    border: 1px solid #ccc; /* just for visualization */
}
/***************************/
/* === Mobile Devices === */
/***************************/
@import "responsive.css";