:root {
    --bs-primary: #d97706;
    --bs-primary-rgb: 217, 119, 6;
    --bs-secondary: #1e293b;
    --bs-secondary-rgb: 30, 41, 59;
    --bs-dark: #0f172a;
    --bs-dark-rgb: 15, 23, 42;
}

body {
    font-family: "Inter", sans-serif;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    min-height: 100vh;
    color: #f1f5f9;
}

.font-serif {
    font-family: ui-serif, Georgia, Cambria, Times New Roman, Times, serif;
}

.bg-gradient-dark {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
}

.bg-slate-800 {
    background-color: rgba(30, 41, 59, 0.8);
}

.bg-slate-900 {
    background-color: rgba(15, 23, 42, 0.9);
}

.bg-amber {
    background-color: #fde68a;
}

.text-amber {
    color: #fde68a;
}

.border-amber {
    border-color: #fde68a !important;
}

.btn-amber {
    background-color: #d97706;
    border-color: #d97706;
    color: white;
}

.btn-amber:hover {
    background-color: #b45309;
    border-color: #b45309;
    color: white;
}

.btn-outline-amber {
    color: #fde68a;
    border-color: #fde68a;
}

.btn-outline-amber:hover {
    background-color: #fde68a;
    border-color: #fde68a;
    color: #0f172a;
}

.navbar-nav {
    column-gap: 10px;
}

.navbar-dark .navbar-nav .nav-link {
    color: #f1f5f9;
    font-weight: 600;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: #fde68a;
}

.navbar-dark .navbar-nav .nav-item {
    width: fit-content;
}

.card-dark {
    background-color: rgba(30, 41, 59, 0.3);
    border: 1px solid rgba(148, 163, 184, 0.2);
    color: #f1f5f9;
}

.big-top-space {
    padding-top: 135px;
}

.top-space {
    padding-top: 70px;
}

.hero-section {
    padding: 70px 0;
    text-align: center;
}

.masonic-symbol {
    font-size: 8rem;
    color: #fde68a;
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.3);
}

.fade-in {
    animation: fadeIn 1s ease-out;
}

.header-logo-text,
.header-footer-text {
    margin-left: 10px;
}

.action-hrefs {
    text-decoration: none;
    color: inherit;
}

.action-hrefs:hover {
    text-decoration: underline;
}

.item-active-header {
    border-bottom: 1px solid #fde68a;
}

.overlay-header {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 9999px;
    background-image: linear-gradient(
        to right,
        rgb(120 53 15 / 0.15),
        rgb(120 53 15 / 0.15)
    );
    filter: blur(64px);
    transform: translateY(-50%);
}

.index-active {
    position: relative;
    z-index: 10;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fw-600 {
    font-weight: 600;
}

.blockquote {
    font-style: italic;
}

.custom-text {
    font-size: 17px;
    opacity: 0.75;
}

.hover-scale:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
    border-color: #fde68a;
}

.form-control:focus {
    border-color: #fde68a;
    box-shadow: 0 0 0 0.2rem rgba(251, 191, 36, 0.25);
}

.accordion .accordion-item:hover {
    opacity: 0.8;
}

.accordion .accordion-item:not(:last-child) {
    margin-bottom: 15px;
}

.accordion-button:not(.collapsed) {
    background-color: transparent !important;
    color: #fde68a !important;
    border: 1px solid !important;
}

.accordion-button:focus {
    border-color: #fde68a !important;
    border: 1px solid !important;
    box-shadow: none !important;
}

.accordion-button {
    border: 1px solid !important;
    border-radius: 15px !important;
    padding: 1.5rem !important;
    box-shadow: none !important;
}

.accordion-collapse {
    margin-top: 5px;
    border-radius: 15px;
}

.accordion-collapse .accordion-body {
    border-radius: 15px;
    color: #fde68a !important;
    border: 1px solid rgba(148, 163, 184, 0.2);
}

.accordion-button:after {
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>") !important;
}

.lang-dropdown {
    min-width: -webkit-fill-available;
}

.board-btn.active {
    background-color: #fde68a !important;
    border-color: #fde68a !important;
    color: #0f172a !important;
}

/* notifications */

.notification-section {
    position: fixed;
    top: 20px;
    right: 20px;
    width: fit-content;
    z-index: 10000000;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    row-gap: 5px;
    opacity: .97;
}

.notification .status {
    padding: 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 8px;
}

.notification .status.success {
    background-color: #66CC99;
}

.notification .status.warning {
    background-color: #FFCC33;
}

.notification .status.error {
    background-color: #CC3333;
}

.notification .text-notification {
    color: white;
    font-size: 14px;
}

.notification i::before {
    color: white;
    font-size: 20px;
}

/* notifications */

@media(max-width: 991px) {
    .navbar-nav {
        align-items: flex-end;
    }
}
