:root {
    --primary-color: #2c5aa0;
    /* Light Blue */
    --secondary-color: #ffffff;
    /* Pure White */
    --accent-color: #f8f9fa;
    /* Light Gray */
    --highlight-color: #4a90e2;
    /* Bright Blue */
    --text-color: #2c3e50;
    /* Dark Blue-Gray */
    --text-muted: #7f8c8d;
    /* Medium Gray */
    --gold-gradient: linear-gradient(135deg, #4a90e2 0%, #2c5aa0 50%, #4a90e2 100%);
    --bg-gradient: radial-gradient(circle at center, #ffffff 0%, #f0f4f8 100%);
    --card-bg: rgba(255, 255, 255, 0.9);
    --glass-border: rgba(44, 90, 160, 0.2);
    --transition-smooth: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Dark Theme */
[data-theme="dark"] {
    --primary-color: #4a90e2;
    --secondary-color: #1a1a1a;
    --accent-color: #2d2d2d;
    --highlight-color: #6ba3e5;
    --text-color: #e0e0e0;
    --text-muted: #a0a0a0;
    --gold-gradient: linear-gradient(135deg, #6ba3e5 0%, #4a90e2 50%, #6ba3e5 100%);
    --bg-gradient: radial-gradient(circle at center, #1a1a1a 0%, #0d0d0d 100%);
    --card-bg: rgba(45, 45, 45, 0.9);
    --glass-border: rgba(107, 163, 229, 0.2);
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: url('https://www.transparenttextures.com/patterns/cubes.png');
    opacity: 0.1;
    pointer-events: none;
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--bg-gradient);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

h1,
h2,
h3,
.logo {
    font-family: 'Playfair Display', serif;
}

.container {
    max-width: calc(100% - 40px);
    margin: 0 auto;
    padding: 0 20px;
}

/* Preloader */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--bg-gradient);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
}

.loader-content {
    text-align: center;
    position: relative;
}

.logo-text {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    letter-spacing: 5px;
    animation: logoFloat 3s ease-in-out infinite;
    text-shadow: 0 4px 20px rgba(44, 90, 160, 0.3);
}

.loader-bar {
    width: 250px;
    height: 4px;
    margin: 0 auto;
    background: var(--glass-border);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(44, 90, 160, 0.2);
}

.loader-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--highlight-color), var(--primary-color));
    animation: loading 2s ease-in-out infinite;
    border-radius: 2px;
}

.loader-dots {
    display: flex;
    gap: 8px;
    margin-top: 20px;
    justify-content: center;
}

.loader-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: dotPulse 1.5s ease-in-out infinite;
}

.loader-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.loader-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes loading {
    0% {
        left: -100%;
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
    100% {
        left: 100%;
        opacity: 0.5;
    }
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-10px) scale(1.05);
        opacity: 1;
    }
}

@keyframes dotPulse {
    0%, 100% {
        transform: scale(0.8);
        opacity: 0.5;
        background: var(--primary-color);
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
        background: var(--highlight-color);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(0.98);
    }

    50% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Navigation */
nav {
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

@media (max-width: 768px) {
    nav {
        flex-direction: column;
        padding: 20px 0;
    }
}

.logo {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 6px;
    text-transform: uppercase;
    position: relative;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.logo:hover {
    letter-spacing: 10px;
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.6rem;
        letter-spacing: 4px;
    }
}

.logo span {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: italic;
}

.search-bar {
    position: relative;
    max-width: 300px;
    width: 100%;
}

.search-bar i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.search-bar input {
    width: 100%;
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    padding: 12px 15px 12px 45px;
    border-radius: 25px;
    color: var(--text-color);
    outline: none;
    transition: var(--transition-smooth);
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
}

.search-bar:focus-within i {
    color: var(--primary-color);
}

.search-bar input:focus {
    border-color: var(--primary-color);
    background: var(--card-bg);
    box-shadow: 0 0 20px rgba(44, 90, 160, 0.2);
}

/* Theme Toggle Styles */
.theme-toggle {
    position: relative;
    width: 60px;
    height: 30px;
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    cursor: pointer;
    transition: var(--transition-smooth);
    margin-left: 20px;
}

.theme-toggle-slider {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 22px;
    height: 22px;
    background: var(--primary-color);
    border-radius: 50%;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
}

[data-theme="dark"] .theme-toggle-slider {
    transform: translateX(15px);
}

.nav-controls {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Hero */
.hero {
    padding: 60px 0;
    text-align: center;
}

.badge {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(44, 90, 160, 0.1);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    margin-bottom: 25px;
    background: linear-gradient(to right, var(--text-color) 20%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    line-height: 1.1;
}

.hero-ornament {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.hero-ornament span {
    width: 60px;
    height: 1px;
    background: var(--gold-gradient);
}

.hero-ornament i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.hero p {
    color: var(--text-muted);
    font-size: 1.2rem;
    max-width: 650px;
    margin: 0 auto;
    font-style: italic;
    line-height: 1.8;
}

/* Categories */
.categories {
    margin-bottom: 60px;
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    padding: 15px 0;
    border-bottom: 1px solid var(--glass-border);
}

.categories::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gold-gradient);
    opacity: 0.3;
}

.category-wrapper {
    display: flex;
    justify-content: center;
    gap: 12px;
    overflow-x: auto;
    padding: 10px 0 20px 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.category-wrapper::-webkit-scrollbar {
    display: none;
}

@media (max-width: 1024px) {
    .category-wrapper {
        justify-content: flex-start;
        padding-left: 20px;
        padding-right: 20px;
        margin-left: -20px;
        margin-right: -20px;
    }
}

.cat-btn {
    padding: 12px 28px;
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-color);
    border-radius: 25px;
    cursor: pointer;
    white-space: nowrap;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.cat-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--highlight-color);
    z-index: -1;
    transform: translateY(100%);
    transition: var(--transition-smooth);
}

.cat-btn:hover::before,
.cat-btn.active::before {
transform: translateY(0);
}

.cat-btn.active,
.cat-btn:hover {
color: #ffffff;
background: var(--primary-color);
border-color: var(--primary-color);
box-shadow: 0 5px 15px rgba(44, 90, 160, 0.3);
transform: translateY(-2px);
}

[data-theme="dark"] .cat-btn.active,
[data-theme="dark"] .cat-btn:hover {
    color: #ffffff;
    background: var(--highlight-color);
    border-color: var(--highlight-color);
    box-shadow: 0 5px 20px rgba(107, 163, 229, 0.4);
    transform: translateY(-2px);
}

/* Add a gold underline for active state */
.cat-btn.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    height: 2px;
    background: var(--primary-color);
}

.cat-btn .icon {
    font-size: 1.2rem;
    transition: var(--transition-bounce);
}

.cat-btn:hover .icon {
    transform: rotate(360deg) scale(1.2);
}

/* Menu Grid */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

@media (max-width: 480px) {
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

.menu-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition-smooth);
    animation: fadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) backwards;
    position: relative;
}

.menu-card::before {
    content: '';
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    pointer-events: none;
    transition: var(--transition-smooth);
}

.menu-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 0 30px 60px rgba(44, 90, 160, 0.2);
}

.menu-card:hover::before {
    inset: 8px;
    border-color: rgba(212, 175, 55, 0.3);
}

/* Image Gallery */
.image-gallery {
    position: relative;
    width: 100%;
    height: 100%;
    aspect-ratio: 16/9; /* Standard food photography ratio */
}

.main-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 12px;
    position: relative;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.image-thumbnails {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    padding: 6px;
    background: rgba(0, 0, 0, 0.85);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    max-width: calc(100% - 40px);
    overflow-x: auto;
    justify-content: center;
}

.thumbnail {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    flex-shrink: 0;
    position: relative;
}

.thumbnail::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(44, 90, 160, 0.3) 50%, transparent 100%);
    transition: opacity 0.3s ease;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(44, 90, 160, 0.3);
}

.thumbnail:hover::before,
.thumbnail.active::before {
    opacity: 1;
}

/* Responsive adjustments for image gallery */
@media (max-width: 768px) {
    .image-gallery {
        aspect-ratio: 4/3;
    }
    
    .thumbnail {
        width: 45px;
        height: 45px;
        border-radius: 6px;
    }
    
    .image-thumbnails {
        gap: 4px;
        padding: 4px;
        bottom: 8px;
    }
}

@media (max-width: 480px) {
    .image-gallery {
        aspect-ratio: 1/1;
    }
    
    .thumbnail {
        width: 35px;
        height: 35px;
        border-radius: 5px;
    }
    
    .image-thumbnails {
        gap: 3px;
        padding: 3px;
        bottom: 6px;
    }
}

.card-img {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.card-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--secondary-color), transparent);
    opacity: 0.6;
    pointer-events: none;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.menu-card:hover .card-img img {
    transform: scale(1.15) rotate(2deg);
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(44, 90, 160, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.card-img:hover .overlay {
    opacity: 1;
}

.view-btn {
    padding: 12px 30px;
    background: #ffffff;
    border: 2px solid var(--primary-color);
    border-radius: 25px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transform: translateY(20px);
    transition: var(--transition-smooth);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(44, 90, 160, 0.3);
}

.card-img:hover .view-btn {
    transform: translateY(0);
    background: var(--primary-color);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(44, 90, 160, 0.4);
}

.card-content {
    padding: 25px;
}

.tags {
    margin-bottom: 12px;
}

.tag {
    font-size: 0.7rem;
    padding: 3px 10px;
    background: rgba(44, 90, 160, 0.1);
    color: var(--primary-color);
    border-radius: 5px;
    margin-right: 5px;
    text-transform: uppercase;
}

.card-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.description {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
}

.order-btn {
    background: none;
    border: 1px solid var(--glass-border);
    color: var(--text-muted);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.order-btn:hover {
    color: #ff4757;
    border-color: #ff4757;
    background: rgba(255, 71, 87, 0.1);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(44, 90, 160, 0.1);
    backdrop-filter: blur(10px);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal-content {
    background: var(--accent-color);
    max-width: 900px;
    width: 100%;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    animation: modalIn 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid var(--glass-border);
    margin: 20px;
}

.modal-content::before {
    content: '';
    position: absolute;
    inset: 15px;
    border: 1px solid rgba(44, 90, 160, 0.1);
    pointer-events: none;
    z-index: 5;
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(50px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.close-modal {
    position: absolute;
    right: 25px;
    top: 25px;
    font-size: 2rem;
    color: var(--text-color);
    cursor: pointer;
    z-index: 10;
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.modal-gallery {
    display: flex;
    flex-direction: column;
    height: 100%;
    /* aspect-ratio: 1; */
}

.modal-main-image {
    flex: 1;
    overflow: hidden;
    aspect-ratio: 1;
    min-height: 0;
}

.modal-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.modal-thumbnails {
    display: flex;
    gap: 8px;
    padding: 5px 0 23px;
    overflow-x: auto;
    justify-content: center;
}

.modal-thumbnail {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    flex-shrink: 0;
    aspect-ratio: 1;
}

.modal-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.modal-thumbnail:hover,
.modal-thumbnail.active {
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.modal-img img {
width: 100%;
height: 100%;
object-fit: cover;
}

.modal-info {
padding: 40px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
height: 100%;
overflow-y: auto;
}

.modal-header {
text-align: center;
margin-bottom: 25px;
}

.modal-header h2 {
font-size: 2.5rem;
margin-bottom: 15px;
color: var(--text-color);
}

.modal-meta {
display: flex;
justify-content: center;
align-items: center;
gap: 15px;
margin-bottom: 20px;
flex-wrap: wrap;
}

.modal-meta .price {
display: block;
font-size: 2rem;
margin-bottom: 0;
color: var(--primary-color);
font-weight: 700;
}

.category-tag {
background: rgba(44, 90, 160, 0.1);
color: var(--primary-color);
padding: 5px 15px;
border-radius: 20px;
font-size: 0.8rem;
text-transform: uppercase;
letter-spacing: 1px;
border: 1px solid var(--primary-color);
}

.modal-description {
text-align: left;
margin-bottom: 25px;
width: 100%;
max-width: 400px;
}

.modal-description h3 {
font-size: 1.2rem;
margin-bottom: 10px;
color: var(--text-color);
font-weight: 600;
}

.modal-desc {
color: var(--text-color);
font-size: 1rem;
line-height: 1.6;
margin: 0;
padding: 15px;
background: rgba(44, 90, 160, 0.05);
border-radius: 10px;
border-left: 3px solid var(--primary-color);
}

.modal-tags {
text-align: left;
margin-bottom: 25px;
width: 100%;
max-width: 400px;
}

.modal-tags h3 {
font-size: 1.2rem;
margin-bottom: 10px;
color: var(--text-color);
font-weight: 600;
}

.tag-list {
display: flex;
flex-wrap: wrap;
gap: 8px;
}

.modal-tag {
background: rgba(44, 90, 160, 0.1);
color: var(--primary-color);
padding: 4px 12px;
border-radius: 15px;
font-size: 0.8rem;
text-transform: uppercase;
letter-spacing: 0.5px;
border: 1px solid rgba(44, 90, 160, 0.3);
transition: all 0.3s ease;
}

.modal-tag:hover {
background: rgba(44, 90, 160, 0.2);
transform: translateY(-2px);
}

.modal-ornament {
    margin-top: 30px;
    height: 2px;
    background: var(--gold-gradient);
    width: 100px;
    position: relative;
}

.modal-ornament::after {
    content: '◈';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: var(--accent-color);
    padding: 0 10px;
    color: var(--primary-color);
    font-size: 1.2rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-ornament span {
        width: 30px;
    }

    .modal-content {
        max-width: 95vw;
        margin: 10px;
        max-height: 95vh;
        border-radius: 12px;
    }

    .modal {
        padding: 10px;
    }

    .modal-body {
        grid-template-columns: 1fr;
        overflow-y: auto;
    }

    .modal-img {
        height: 250px;
    }

    .modal-info {
        padding: 30px 20px;
    }

    .modal-info h2 {
        font-size: 1.8rem;
    }

    .close-modal {
        right: 15px;
        top: 15px;
        font-size: 1.5rem;
    }

    .modal-header h2 {
        font-size: 2rem;
    }

    .modal-meta .price {
        font-size: 1.5rem;
    }

    .modal-description,
    .modal-tags {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        line-height: 1.2;
    }

    .cat-btn {
        padding: 10px 20px;
        font-size: 0.75rem;
    }

    .modal-content {
        max-width: 98vw;
        margin: 5px;
        max-height: 98vh;
        border-radius: 10px;
    }

    .modal {
        padding: 5px;
    }

    .modal-info {
        padding: 20px 15px;
    }

    .close-modal {
        right: 10px;
        top: 10px;
        font-size: 1.2rem;
    }

    .modal-header h2 {
        font-size: 1.6rem;
    }

    .modal-meta .price {
        font-size: 1.3rem;
    }

    .modal-description h3,
    .modal-tags h3 {
        font-size: 1.1rem;
    }

    .modal-desc {
        font-size: 0.9rem;
        padding: 12px;
    }

    .modal-thumbnail {
        width: 50px;
        height: 50px;
    }

    .modal-img {
        height: 200px;
    }
}

/* Footer */
footer {
    padding: 40px 0;
    border-top: 1px solid var(--glass-border);
    text-align: center;
}

.socials {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.socials a {
    color: var(--text-muted);
    font-size: 1.2rem;
    transition: var(--transition);
}

.socials a:hover {
    color: var(--primary-color);
}