/*!
Theme Name: VeganBelgrade
Theme URI: https://vizdata.rs
Author: VIZDATA team
Author URI: https://vizdata.rs
Description: VeganBelgrade WordPress template.
Version: 1.0
*/

:root {
    --neutral-100: rgba(255, 253, 245, 0.7);
    --neutral-200: #e2e4e6;
    --neutral-700: rgba(25,  31, 36, 0.7);
    --neutral-750: rgba(25,  31, 36, 0.85);
    --neutral-800: #191f24;

    --white: #fffdf5;
    --white-button: rgb(255, 253, 245);

    --orange: #ffaf0f;
	--light-orange: #FFF8EB;
	--dark-orange: #E09600;
    --green: #17ba99;
	--green-100: #C9F8EF;
    --green-rgb: 23, 186, 153;
	--dark-green: #129178;
    --pink: #ed9de2;
    --blue:#01a2d5;
    --blue-rgb: 1, 162, 213;

    --border-white: #e5e7eb;
    
}

/* Links */
a {
    text-decoration: none;
}

/* Base Styles */
body {
    font-family: 'DM Sans', Arial, Helvetica, sans-serif;
    color: #333;
    font-size: 17px;
    letter-spacing: -0.04em;
    background-color: var(--white);
}

/* Prevent body scroll when mobile menu is open */
body.mobile-menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100vh;
}

/* Backgrounds */
.bg-neutral-100 {
    background: var(--neutral-100)!important;
}

.bg-neutral-200 {
    background-color: var(--neutral-200)!important;
}

.bg-neutral-700 {
    background-color: var(--neutral-700);
}

.bg-neutral-750 {
    background-color: var(--neutral-750);
}

.bg-neutral-800 {
    background-color: var(--neutral-800);
}


.bg-green {
    background-color: var(--green)!important;
}

.bg-light-green {
    background: rgba(var(--green-rgb), 0.1)!important;
}

.bg-blue {
    background-color: var(--blue)!important;
}

.bg-light-blue {
    background: rgba(var(--blue-rgb), 0.1)!important;
}

.bg-orange {
    background-color: var(--orange)!important;
}

.bg-light-orange {
    background-color: var(--light-orange)!important;
}



.bg-pink {
    background-color: var(--pink)!important;
}

.bg-white {
    background-color: var(--white)!important;
}

.bg-whiter {
    background-color: #fff!important;
}

/* Text */

.text-neutral-100 {
    color: var(--neutral-100)!important;
}

.text-neutral-700 {
    color: var(--neutral-700)!important;
}

.text-neutral-750 {
    color: var(--neutral-750)!important;
}

.text-neutral-800 {
    color: var(--neutral-800)!important;
}

.text-green {
    color: var(--green)!important;
}

.text-green-100 {
	color: var(--green-100);
}

.text-dark-green {
	color: var(--dark-green)!important;
}

.text-orange {
    color: var(--orange)!important;
}

.text-dark-orange {
    color: var(--dark-orange)!important;
}

.text-blue {
    color: var(--blue)!important;
}

.text-white {
    color: var(--white)!important;
}

.text-whiter {
    color: #fff!important;
}

.fs-8 {
    font-size: 0.8rem!important;
}

.fs-9 {
    font-size: 0.9rem!important;
}

.fs-menu {
    font-size: 0.9rem!important;
}

@media (min-width: 567px) {
    .fs-menu {
        font-size: 1rem!important;
    }
}


.fw-300 {
    font-weight: 300!important;
}

.fw-400 {
    font-weight: 400!important;
}

.fw-500 {
    font-weight: 500!important;
}

.fw-600 {
    font-weight: 600!important;
}

.fw-700 {
    font-weight: 700!important;
}

.fw-800 {
    font-weight: 800!important;
}

/* Widths */
.w-20 {
    width: 20px;
    height: 20px;
}

.w-30 {
    width: 30px;
    height: 30px;
}

.mt-n5 {
    margin-top: -2rem;
}

/* Navbar */
#mainHeader {
    position: sticky !important;
    top: 0;
    z-index: 1000001;
    width: 100%;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;      
}

.navbar-dark .navbar-nav .nav-item {
    padding: 0.5rem 1.25rem;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: #fff!important;
}


a.nav-link {
	position: relative;
	color: var(--neutral-100)!important;
	padding: 0px!important;
}

a.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px; /* Adjust to place the underline closer or further from the text */
    width: 100%;
    height: 1px; /* Adjust the thickness of the underline */
    background: var(--neutral-200); /* Adjust the underline color as needed */
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease; /* Adjust the duration of the transition */
}

a.nav-link:hover::after {
    transform: scaleX(1);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed; /* Change back to fixed */
    top: 0; /* Will be set by JavaScript */
    left: 0;
    width: 100%;
    height: 100vh; /* Will be set by JavaScript */
    background-color: var(--neutral-800);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mobile-menu-content {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

.mobile-nav-link {
    color: var(--white);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.mobile-nav-link:hover {
    color: var(--green);
}

#mobileMenuBtn.bg-neutral-100 {
    background-color: var(--neutral-100) !important;
    color: var(--neutral-800) !important;
}

/* Buttons */
.btn-white-button {
    background-color: var(--white-button);
    color: var(--neutral-800);
}

.btn-white-button:hover {
    background-color: var(--white-button);
    color: var(--neutral-800);
}

.btn-green-button {
    background-color: var(--green)!important;
    color: #ffffff;
}

.btn-green-button:hover {
    background: rgba(var(--green-rgb), 0.9)!important;
    color: #ffffff;
}

.btn-green {
    background-color: var(--green);
    color: var(--white);
}

.btn-orange {
    background-color: var(--orange);
    color: var(--white);
}

.btn-blue {
    background-color: var(--blue);
    color: var(--white);
}

.btn-outline-dark, .btn-outline-light {
    transition: all 0.4s ease;
}

.btn-outline-dark:hover {
    background-color: var(--neutral-800)!important;
    color: var(--white)!important;
}

.btn-outline-light {
    border-color: var(--white)!important;
    color: var(--white)!important;
}

.btn-outline-light:hover {
    background-color: var(--white)!important;
    color: var(--neutral-800)!important;
}


.btn-neutral-800 {
    background-color: var(--neutral-800);
    color: #fff;
    border: 2px solid var(--neutral-800);
    transition: all 0.4 ease;
}

.btn-neutral-800:hover {
    background-color: transparent;
    border: 2px solid var(--neutral-800)!important;
    color: var(--neutral-800)!important;
}

.btn-neutral-800:hover i {
    color: var(--neutral-800)!important;
}

/* Borders */
.border-green {
    border-color: var(--green)!important;
}

.border-orange {
    border-color: var(--orange)!important;
}

.border-blue {
    border-color: var(--blue)!important;
}

.border-neutral-200 {
    border-color: var(--neutral-200)!important;
}

.border-neutral-800 {
    border-color: var(--neutral-800)!important;
}

/* ANIMATIONS */
.animate-jump {
    transition: all 0.4s ease;
}
.animate-jump:hover {
	    transform: translateY(-5px);
}

/* Footer */
a.footer-link {
	position: relative;
	color: var(--neutral-100)!important;
}

a.footer-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px; /* Adjust to place the underline closer or further from the text */
    width: 100%;
    height: 1px; /* Adjust the thickness of the underline */
    background: var(--neutral-200); /* Adjust the underline color as needed */
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease; /* Adjust the duration of the transition */
}

a.footer-link:hover::after {
    transform: scaleX(1);
}

/* Guides */
#singlePost b, #singlePost strong {
	font-weight: 600!important;
}

#guideContent .table-responsive {
    border: 1px solid var(--neutral-800);
    border-radius: var(--bs-border-radius-sm);
    overflow: hidden;
}

#guideContent .table-responsive .table {
    margin-bottom: 0;
    border-collapse: collapse;
}

#guideContent .table-responsive .table > thead > tr > th {
    background-color: var(--neutral-800);
    color: #fff;
    border: none;
	font-size: 1rem;
}

#guideContent .table-responsive .table > tbody > tr:nth-child(odd) > td {
    background-color: #fff;
}

#guideContent .table-responsive .table > tbody > tr:nth-child(even) > td {
    background-color: var(--whiter);
}

#guideContent .table-responsive .table > tbody > tr > td {
    font-size: 0.9rem;
    color: var(--neutral-750);
    border-bottom: 1px solid var(--bs-border-color);
}

#guideContent .table-responsive .table > tbody > tr:last-child > td {
    border-bottom: none;
}

/* Stories */
.full-story p:last-child {
	margin-bottom: 0px;
}

/* Responsive classes */
@media (min-width: 992px) {
    #guideContent .table-responsive {
        max-width: 600px; /* adjust as needed */
    }
}