﻿/* Shared/_Layout */
.nav-menu li {
            position: relative;
            transition: all 0.3s ease-in-out;
        }
        .scrollable {
            overflow-x: scroll;
            white-space: nowrap;
        }
        .name-surname {
            color: #fff;
            font-weight: bold;
            margin-left: auto;
        }
        .nav-menu li:before {
            content: "";
            position: absolute;
            width: 100%;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #ffc107;
            visibility: hidden;
            transform: scaleX(0);
            transition: all 0.3s ease-in-out;
        }
        .nav-menu li:hover:before {
            visibility: visible;
            transform: scaleX(1);
        }
        .nav-menu li.active a {
            font-weight: bold;
        }
        .separator {
            color: red;
        }
        .footer {
            background-color: #343a40;
            color: #ffffff;
            padding: 3rem 0;
            position: relative;
            margin-top: 4rem;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 2rem;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
            margin: 1rem;
        }
            .footer-section h5 {
                color: #ffc107;
                margin-bottom: 1.5rem;
                font-weight: 600;
                position: relative;
                padding-bottom: 0.5rem;
            }
                .footer-section h5::after {
                    content: '';
                    position: absolute;
                    left: 0;
                    bottom: 0;
                    width: 50px;
                    height: 2px;
                    background: #ffc107;
                }
        .footer-links {
            list-style: none;
            padding: 0;
        }
            .footer-links li {
                margin-bottom: 0.75rem;
            }
            .footer-links a {
                color: #ffffff;
                text-decoration: none;
                transition: color 0.3s ease;
            }
                .footer-links a:hover {
                    color: #ffc107;
                }
        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }
            .social-links a {
                color: #ffffff;
                background-color: rgba(255, 255, 255, 0.1);
                width: 36px;
                height: 36px;
                display: flex;
                align-items: center;
                justify-content: center;
                border-radius: 50%;
                transition: all 0.3s ease;
            }
                .social-links a:hover {
                    background-color: #ffc107;
                    color: #343a40;
                    transform: translateY(-3px);
                }
        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
            .footer-bottom p {
                margin: 0;
                color: #ffffff;
                font-size: 0.9rem;
            }
        body {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        .main-content {
            flex: 1;
        }
        .footer-section p {
            line-height: 1.6;
            margin-bottom: 1.5rem;
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.9);
        }
