:root {
    --header-background: #fb8b24;
    --dark-red: #9a031e;
    --white: #fff;
    --menu-button: #ce5524;
    --main-menu: #9a031e;
}

body {
    min-height: 100vh;
}

@font-face {
    font-family: 'Suryodaya';
    src: url('<?= base_url("assets/fonts/Suryodaya.ttf"); ?>') format('truetype');
}


/* .header-container { */
/* Wraps top-menu and main-menu */
/* } */

.container-fluid {
    padding-left: 60px;
    padding-right: 60px;
}

.top-menu {
    background-color: var(--header-background);
    /* Orangish Golden */
    color: var(--white);
    padding: 10px 0;
}

.nav-link:hover {
    background-color: #520000;
}

.navbar {
    padding: 0;
}

.navbar-brand img {
    max-width: 248px;
    /* Increased size */
}

#navbarResponsive{
    background-color: var(--dark-red);
}

.social-links a {
    color: var(--white);
    margin: 0 5px;
    font-size: 18px;
}

.language-switcher {
    color: var(--white);
    font-size: 16px;
}

.public-dashboard {
    color: var(--white);
    font-size: 16px;
}

.public-dashboard i {
    margin-right: 5px;
}

.search-bar {
    position: relative;
    width: 100%;
}

.search-bar input {
    width: 100%;
    padding-left: 35px;
}

.search-bar .search-icon {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    color: #aaa;
}

.sign-in-btn {
    background-color: var(--menu-button);
    /* Dark orange */
    color: var(--white);
    border-radius: 50px;
    padding: 5px 15px;
    display: flex;
    align-items: center;
    text-decoration: none;
    margin-left: 15px;
}

.sign-in-btn i {
    margin-left: 10px;
}

.main-menu {
    background-color: var(--main-menu);
    /* Dark Red */
    height: 45px;
}

.main-menu .nav-link {
    color: var(--white) !important;
}

.first-row {
    gap: 20px;
    justify-content: end;
}


hr {
    border: 1px solid #898989;
    opacity: .4;
    /* margin: 0 45px; */
}
a{
    color: white;
    text-decoration: none;
}

.login{
    color: blue;
}

.custom-btn{
    background-color: #9a031e !important;
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border: none;
    outline: none;
    /* Remove browser default outline */
    box-shadow: none;
    color: var(--white);
}

.btn-primary, .btn-outline-primary {
    background-color: #9a031e !important;
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border: none;
    outline: none;
    /* Remove browser default outline */
    box-shadow: none;
    color: var(--white);
    /* Remove focus shadow */
}

.btn-primary:hover , .btn-outline-primary:hover {
    background-color: #fb8b24 !important;
    color: #181818 !important;
}

.btn-primary:hover svg path {
    transition: .1s ease-in-out;
    fill: black;
    /* Change SVG color on hover */
}

.btn-primary:focus,
.btn-primary:active,
.btn-primary:focus-visible {
    outline: none !important;
    /* Prevent browser's default blue outline */
    box-shadow: none !important;
    /* Prevent focus shadow */
}

.heading {
    font-size: 2rem;
    font-weight: 700;
    color: #9a031e;
}

.divider {
    width: 20% !important;
    margin-bottom: 20px !important;
}

.footer {
    background-color: var(--dark-red);

    color: white;
    padding: 40px 0;
}

.footer h5 {
    color: var(--white);
    font-weight: bold;
}

.footer a {
    color: var(--white);
    text-decoration: none;
}

.footer a:hover {
    color: var(--header-background);
    text-decoration: none;
}

.footer .temple-name {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.footer .social-icons a {
    color: var(--white);
    margin-right: 15px;
    font-size: 1.2rem;
}

.footer .social-icons a:hover {
    color: var(--header-background);
}


@media (max-width: 767px) {
    .development-card {
        width: 100%; /* Make cards full width on small screens */
    }
}

@media (min-width: 768px) {
    .development-card {
        width: 30%; /* Keep them side by side on larger screens */
    }
}
