/* Grundlegende Einstellungen */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #D4AF37;
    --gold-dark: #b8941f;
    --black: #111111;
    --black-light: #1a1a1a;
    --white: #ffffff;
    --gray-light: #f8f8f8;
    --gray: #666666;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Farb-Utility Klasse */
.gold {
    color: var(--gold);
}

/* ===== NAVIGATION ===== */
.navbar {
    background-color: var(--black);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.nav-logo a {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-item {
    margin-left: 2rem;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--gold);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: 0.3s;
}

/* ===== HERO-SECTION ===== */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 0 2rem;
    position: relative;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    color: #f0f0f0;
}

/* ===== BUTTONS ===== */
.cta-button {
    display: inline-block;
    background-color: var(--gold);
    color: var(--black);
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(212, 175, 55, 0.3);
}

.cta-button.secondary {
    background-color: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.cta-button.secondary:hover {
    background-color: var(--gold);
    color: var(--black);
}

/* ===== SECTIONS GENERAL ===== */
section {
    padding: 5rem 0;
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

/* ===== SERVICES ===== */
.services {
    background-color: var(--gray-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid var(--gold);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.service-card i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--black);
}

.service-card ul {
    list-style: none;
    margin-top: 1rem;
}

.service-card li {
    padding: 0.3rem 0;
    color: var(--gray);
    position: relative;
    padding-left: 1rem;
}

.service-card li:before {
    content: "•";
    color: var(--gold);
    position: absolute;
    left: 0;
}

/* ===== ABOUT ===== */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    text-align: left;
}

.about-text p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray);
}

.qualities {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.quality-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.quality-item i {
    font-size: 1.1rem;
}

.about-image img {
    width: 100%;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    background-color: var(--black);
    color: var(--white);
}

.testimonials h2,
.testimonials .section-subtitle {
    color: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--black-light);
    padding: 2rem;
    border-radius: 5px;
    border-left: 4px solid var(--gold);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author strong {
    color: var(--gold);
    display: block;
}

.testimonial-author span {
    font-size: 0.9rem;
    color: var(--gray);
}

/* ===== KONTAKT STYLES ===== */
.centered-contact {
    display: flex;
    justify-content: center;
    text-align: center;
}

.centered-contact .contact-info {
    max-width: 600px;
    width: 100%;
}

.centered-contact .contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 2.5rem;
}

.centered-contact .contact-item i {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.centered-contact .contact-item > div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-areas {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #333;
}

.service-areas h3 {
    margin-bottom: 0.5rem;
    color: var(--black);
}

.whatsapp-link,
.phone-link,
.email-link {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.whatsapp-link:hover,
.phone-link:hover,
.email-link:hover {
    color: var(--gold-dark);
    text-decoration: underline;
}

/* Contact Action Buttons */
.contact-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.phone-button,
.whatsapp-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.whatsapp-button {
    background-color: #25D366;
    color: white;
}

.whatsapp-button:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
}

.phone-button {
    background-color: var(--gold);
    color: var(--black);
}

.phone-button:hover {
    background-color: var(--gold-dark);
    transform: translateY(-2px);
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--black);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--gold);
}

.social-links {
    margin-top: 1rem;
}

.social-links a {
    display: inline-block;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1rem;
    text-align: center;
    color: #999;
}

/* ===== LOGO STYLES ===== */
.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--white);
}

.logo {
    height: 50px;
    width: auto;
    margin-right: 12px;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
}

/* Footer Logo */
.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-logo .logo {
    height: 40px;
    margin-right: 10px;
}

.footer-logo h3 {
    margin: 0;
    font-size: 1.4rem;
}

/* ===== SCROLL TO TOP BUTTON ===== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--gold);
    color: var(--black);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-to-top:hover {
    background-color: var(--gold-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(212, 175, 55, 0.4);
}

.scroll-to-top.show {
    display: flex;
}

/* ===== SCROLL DOWN ARROW ===== */
.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-down-link {
    color: var(--white);
    font-size: 2rem;
    text-decoration: none;
    display: block;
    transition: color 0.3s ease;
}

.scroll-down-link:hover {
    color: var(--gold);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ===== BEWERTUNGEN SECTION ===== */
.reviews {
    background-color: var(--white);
    padding: 5rem 0;
}

.reviews-display {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.reviews-stats {
    background: var(--gray-light);
    padding: 2rem;
    border-radius: 10px;
    height: fit-content;
}

.overall-rating {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #ddd;
}

.rating-score {
    margin-bottom: 1rem;
}

.score {
    font-size: 3rem;
    font-weight: bold;
    color: var(--black);
}

.max-score {
    font-size: 1.5rem;
    color: var(--gray);
}

.overall-rating .stars {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.total-reviews {
    color: var(--gray);
    font-size: 0.9rem;
}

.rating-bars {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.rating-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
}

.rating-bar span:first-child {
    width: 60px;
}

.bar {
    flex: 1;
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

.fill {
    height: 100%;
    background: var(--gold);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.rating-bar span:last-child {
    width: 30px;
    text-align: right;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.review-item {
    background: var(--gray-light);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--gold);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 1rem;
}

.reviewer-info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.reviewer-info .stars {
    color: var(--gold);
    font-size: 0.9rem;
}

.review-date {
    color: var(--gray);
    font-size: 0.9rem;
}

.review-item p {
    margin: 0;
    line-height: 1.6;
    color: var(--black);
}

/* Bewertungsformular */
.add-review {
    background: var(--gray-light);
    padding: 2rem;
    border-radius: 10px;
    border: 2px dashed var(--gold);
}

.add-review h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--black);
}

.review-form {
    max-width: 600px;
    margin: 0 auto;
}

.review-form .form-group {
    margin-bottom: 1.5rem;
}

.review-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--black);
}

.review-form input,
.review-form textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Open Sans', sans-serif;
}

.review-form input:focus,
.review-form textarea:focus {
    outline: none;
    border-color: var(--gold);
}

/* Sternen-Bewertung - Korrekte Reihenfolge */
.star-rating {
    display: flex;
    flex-direction: row; /* Wichtig: Sterne von links nach rechts */
    gap: 5px;
}

.star-rating input {
    display: none;
}

.star-rating label {
    font-size: 24px;
    color: #ddd;
    cursor: pointer;
    transition: color 0.2s;
    order: 0; /* Standard-Reihenfolge beibehalten */
}

.star-rating label:hover,
.star-rating input:checked ~ label {
    color: var(--gold);
}

/* Hover-Effekt für Sterne */
.star-rating:hover label {
    color: var(--gold);
}

.star-rating label:hover ~ label {
    color: #ddd;
}

/* ===== LEGAL PAGES STYLES ===== */
.legal-page {
    padding: 120px 0 80px;
    background-color: var(--white);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--black);
}

.legal-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--black);
    margin: 2.5rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--gold);
}

.legal-content h3 {
    font-size: 1.2rem;
    color: var(--black);
    margin: 1.5rem 0 0.5rem;
}

.legal-section {
    margin-bottom: 2rem;
}

.legal-section p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.legal-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.legal-section a {
    color: var(--gold);
    text-decoration: none;
}

.legal-section a:hover {
    text-decoration: underline;
}

.back-home {
    text-align: center;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #ddd;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--black);
        display: none;
    }
    
    .nav-menu.active {
        display: flex;
    }

    .nav-item {
        margin: 0;
        text-align: center;
        padding: 0.8rem 0;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stats {
        justify-content: space-around;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-text h2 {
        text-align: center;
    }
    
    .logo {
        height: 40px;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .footer-logo {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-logo .logo {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .reviews-display {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .review-header {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .rating-bar {
        font-size: 0.8rem;
    }
    
    .star-rating {
        justify-content: center;
    }
    
    .contact-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .phone-button,
    .whatsapp-button {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    .centered-contact .contact-item {
        margin-bottom: 2rem;
    }
    
    .centered-contact .contact-item i {
        font-size: 1.8rem;
    }
    
    .legal-page {
        padding: 100px 0 60px;
    }
    
    .legal-content h1 {
        font-size: 2rem;
    }
    
    .legal-content h2 {
        font-size: 1.3rem;
    }
}
/* Page Load Animation */
body:not(.loaded) * {
    opacity: 0;
    transition: opacity 0.3s ease;
}

body.loaded * {
    opacity: 1;
}

/* Mobile-spezifische Styles */
body.mobile .hero-content h1 {
    font-size: 2.2rem;
}

/* Desktop-spezifische Styles */
body.desktop .service-card:hover {
    transform: translateY(-5px);
}
/* Loading States */
.loading-spinner {
    text-align: center;
    padding: 3rem;
}

.loading-spinner i {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.no-reviews {
    text-align: center;
    padding: 3rem;
    background: var(--gray-light);
    border-radius: 10px;
}

.no-reviews i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Form States */
.spinner {
    display: inline-block;
    margin-left: 10px;
}

.spinner.hidden {
    display: none;
}

.form-message {
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 4px;
    text-align: center;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsive Improvements */
@media (max-width: 768px) {
    .reviews-display {
        grid-template-columns: 1fr;
    }
    
    .rating-bar {
        font-size: 0.8rem;
    }
    
    .review-header {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* ===== GALERIE STYLES ===== */
.gallery-page {
    padding: 120px 0 50px;
    min-height: 100vh;
}

.gallery-header {
    text-align: center;
    margin-bottom: 3rem;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filter-btn {
    background: white;
    border: 2px solid var(--gold);
    color: var(--text);
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gold);
    color: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: var(--transition);
    aspect-ratio: 4/3;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover .gallery-img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 1rem 1rem;
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-category {
    background: var(--gold);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    position: absolute;
    top: 1rem;
    left: 1rem;
}

.gallery-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.gallery-description {
    font-size: 0.9rem;
    opacity: 0.9;
}

.gallery-cta {
    text-align: center;
    background: var(--light);
    padding: 3rem;
    border-radius: 10px;
    margin-top: 3rem;
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 10px;
}

.lightbox-caption {
    color: white;
    text-align: center;
    margin-top: 1rem;
}

.lightbox-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.lightbox-description {
    opacity: 0.8;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
}

.lightbox-nav:hover {
    background: var(--gold);
}

.lightbox-prev {
    left: -70px;
}

.lightbox-next {
    right: -70px;
}

/* Responsive Galerie */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }
    
    .gallery-filters {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
}

/* Aktiver Nav-Link */
.nav-link.active {
    color: var(--gold);
}

.nav-link.active::after {
    width: 100%;
}
