html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 0px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

.site-header {
    font-family: "Alef", "Rubik", sans-serif;
}

/* Top dark bar */
.top-bar {
    background: linear-gradient(to right, #111c3b, #1c2e50);
    color: #ffffff;
    font-size: 0.9rem;
    direction: ltr;
}

.top-bar-inner {
    padding-top: 6px;
    padding-bottom: 6px;
}

.social-icon {
    opacity: 0.8;
    font-weight: 600;
}
.social-icon:hover {
    opacity: 1;
}

.top-icon {
    font-size: 0.9rem;
}

/* Main white nav bar */
.main-nav {
    background-color: #ffffff;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.main-nav-inner {
    padding-top: 16px;
    padding-bottom: 16px;
    gap: 24px;
}

/* Logo */
.nav-logo img {
    height: 40px;
    object-fit: contain;
}

/* Menu (center) */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
    flex: 1;
    justify-content: center;
}

.nav-link {
    font-size: 1.05rem;
    text-decoration: none;
    color: #1c2e50;
    font-weight: 600;
    position: relative;
    padding-bottom: 4px;
}

.nav-link:hover {
    color: red;
}

.nav-link.active {
    color: red;
}

/* CTA button (left) */
.nav-cta {
    display: flex;
    justify-content: flex-start;
}

.cta-button {
    background-color: red;
    color: #ffffff;
    text-decoration: none;
    padding: 10px 26px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(40,182,148,0.4);
    white-space: nowrap;
}

.cta-button:hover {
    filter: brightness(1.05);
}

.admin-rtl select {
    direction: ltr !important;
    text-align: right !important;
}

.admin-rtl select option {
    direction: rtl !important;
    text-align: right !important;
}

.site-footer {
    background:black;          /* dark blue */
    color: #f5f5f5;
    padding: 3rem 0;
    font-size: 0.95rem;
}

.footer-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 3rem;
}

.footer-columns {
    display: flex;
    gap: 4rem;
}

.footer-col-title {
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #ffffff;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.4rem;
}

.footer-links a {
    color: #d8e3ea;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-right {
    text-align: left;
}

.footer-logo img {
    max-height: 60px;
}

.footer-contact a {
    color: #d8e3ea;
    text-decoration: none;
}

.footer-social a {
    color: #d8e3ea;
    text-decoration: none;
    margin-right: 0.5rem;
}
