:root {
    /* Colors */
    --pastel-black: #000000;
    --pastel-white: #ffffff;
    --pastel-dark: #1E1E1E;
    --pastel-blue: #b8d8e3;
    --pastel-pink: #f8d7e0;
    --pastel-purple: #d9d2e9;
    --pastel-dark-purple: #5a5a8a;
    --pastel-green: #c9e4ca;
    --pastel-yellow: #f9efc7;
    /* General */
    --bg-color: #fcfcfc;
    --fore-color: #000000;
    --font-family: Arial, sans-serif;
    /* Navbar */
    --navbar-bg-color: #fcfcfc;
    --heading-color: #5f687b;
}

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: 60px;
    /*font-family: sans-serif;*/
}



.navbar {
    padding: 0;
    /*border-bottom: none !important;*/ /* Alt çizgiyi kaldır */
    /*box-shadow: none !important;*/ /* Alt gölgeyi kaldır */
}

.navbar-brand {
    color: #000000 !important;
    color: rgba(26, 28, 35, var(--text-opacity)) !important;
    font-size: 24px;
    font-weight: 700;
}

.navbar-brand-img{
    width: 24px;
    height: 24px;
}

.nav-item a {
    font-size: 1.125rem;
    font-weight: 500;
}

.nav-item button {
    font-size: 1.125rem;
    font-weight: 500;
}

.nav-item form button.nav-link {
    color: inherit;
    background: none;
    border: none;
    cursor: pointer;
}

/*--------------------------------------------------------------
# Cookie Popup
--------------------------------------------------------------*/
/* Cookie popup alt banner */
.cookie-popup-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #f8f9fa;
    box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.cookie-popup-banner p {
    margin: 0;
    font-size: 14px;
    color: #333;
}

.cookie-popup-banner a {
    color: #007bff;
    text-decoration: none;
}

.cookie-popup-banner a:hover {
    text-decoration: underline;
}

.cookie-popup-buttons {
    display: flex;
    gap: 10px;
}

.cookie-popup-buttons button {
    padding: 8px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}

.cookie-accept-btn {
    background-color: #28a745;
    color: #fff;
}

.cookie-details-btn {
    background-color: #007bff;
    color: #fff;
}

/*--------------------------------------------------------------
# Article
--------------------------------------------------------------*/
.article {
    /* font-family: Poppins,sans-serif; */
}

.article h1 {
    color: var(--heading-color);
    /* font-family: Poppins,sans-serif; */
}

.article h2 {
    color: var(--heading-color);
    /* font-family: Poppins,sans-serif; */
    font-size: 22px;
}

.article p {
    font-size: 14px;
}
