/* =====================================================
   1. VARIABLES
===================================================== */

:root {
    --dark-purple: #341C8C;
    --lavender: #9475BF;
    --light-purple: #B4A3D9;
    --cream: #F2E1AE;
    --dark-gray: #1c1c1c;
    --rose: #CB7885;
    --dark-rose: #893941;
    --white: #f8f8f8;
}

/* =====================================================
   2. RESET / BASE
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family:'Times New Roman', Times, serif;
    background: #000;
    color: #fff;
}

img {
    max-width: 100%;
    display: block;
}

/* =====================================================
   3. GLOBAL UTILITIES
===================================================== */

.fade-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.2s ease, transform 1.2s ease;
}

.fade-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =====================================================
   4. NAVBAR
===================================================== */

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 80px;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

/* =========================
   NAV SOCIAL LINKS
========================= */

.nav-right {
    display: flex;
    align-items: center;
    gap: 30px;
}


.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: #ffffff;
    font-size: 1.2rem;
    opacity: 0.75;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
    opacity: 1;
    transform: scale(1.15);
}

.logo a {
    display: inline-block;
}

.logo a:hover {
    opacity: 0.85;
}

/* =====================================================
   5. BUTTONS (REUSABLE)
===================================================== */

.btn {
    padding: 16px 48px;
    border: 2px solid var(--light-purple);
    background: transparent;
    color: #fff;
    letter-spacing: 2px;
    transition: 0.3s ease;
    cursor: pointer;
}

.btn:hover {
    background: var(--light-purple);
    color: #000;
}

/* HERO SECTION */
.hero {
    height: 100vh;
    width: 100%;
    background-image: url("images/DSCF7072.jpeg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

/* Optional: leichter Dark Overlay für bessere Lesbarkeit */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* SVG Name */
.hero-title {
    width: 60%;
    max-width: 900px;
    filter: brightness(0) invert(1);
}

/* FADE IN ANIMATION */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1.6s ease forwards;
    animation-delay: 0.6s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ABOUT SECTION */
.about-editorial {
    background: linear-gradient(5deg, rgb(0, 0, 0), rgb(22, 21, 21), rgb(3, 3, 3));
    padding: 160px 8%;
    color: #ffffff;
}

.editorial-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* Headline wie Zeitung */
.editorial-headline {
    font-family: 'Parisienne', cursive;
    font-size: 7.5rem; /* etwas größer */
    margin-bottom: 80px;
    position: relative;
    display: inline-block;
    padding-right: 160px; /* Platz für Linie */
}

/* Linie rechts neben der Headline */
.editorial-headline::after {
    content: "";
    position: absolute;
    right: 0;
    top: 55%;
    width: 120px;
    height: 1px;
    background: rgba(255, 255, 255, 0.6);
}

/* Bilder */
.editorial-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}


/* Intro */
.editorial-intro {
    font-size: 0.85rem;
    letter-spacing: 3px;
    opacity: 0.7;
    margin-bottom: 10px;
}

/* Name groß wie Magazin */
.editorial-name {
    font-family: "Parisienne";
    font-size: 5.8rem;
    letter-spacing: 1px;
    margin-bottom: 40px;
}

/* Text wie Artikel */
.editorial-text {
    max-width: 820px;
    margin: 0 auto;
    font-size: 1.35rem;
    line-height: 2;
    opacity: 0.85;
}

.editorial-text p {
    margin-bottom: 30px;
}


.discover-music {
    height: 100vh;
    background: linear-gradient(180deg, rgb(2, 2, 2), rgb(12, 10, 12), rgb(2, 2, 2));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.discover-inner h2 {
    font-size: 5.4rem;
    color: #ffffff;
    margin-bottom: 50px;
    letter-spacing: 2px;
    font-family: "Parisienne", cursive;
}

.discover-sub {
    color: var(--light-purple);
    letter-spacing: 3px;
    margin-bottom: 25px;
    font-size: 0.95rem;
    text-transform: uppercase;
}

.discover-btn {
    display: inline-block;
    padding: 18px 55px;
    border: 2px solid var(--light-purple);
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 2px;
    transition: 0.4s ease;
}

.discover-btn:hover {
    background: var(--light-purple);
    color: #000;
}

.discover-inner {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.4s ease, transform 1.4s ease;
}

.discover-inner.visible {
    opacity: 1;
    transform: translateY(0);
}

/* MUSIC SECTION */
.music-hero {
    height: 100vh;
    background: linear-gradient(
        180deg,
        var(--dark-rose),
        var(--rose),
        var(--white)
    );
    position: relative;
}

.music-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    
}

.music-hero-overlay {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 10%;
}

.music-hero-overlay h1 {
    font-size: 4rem;
    color: #ffffff;
    letter-spacing: 2px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1.8s ease forwards;
}

.music-hero-sub {
    margin-top: 25px;
    font-size: 0.95rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--light-purple);
    opacity: 0;
    animation: fadeUp 1.8s ease forwards;
    animation-delay: 0.4s;
}

/* Text darüber */
.music-hero-overlay {
    position: relative;
    z-index: 2;
}

/* CONTENT */
.music-page {
    background: linear-gradient(
        180deg,
        var(--white),
        var(--rose),
        var(--dark-rose)
    );
    padding: 160px 10%;
}


.music-page-container {
    display: flex;
    flex-direction: column;
    gap: 180px;
}

.music-video a {
    color: var(--light-purple);
    text-decoration: none;
    letter-spacing: 1px;
    font-size: 0.95rem;
}

.music-video a:hover {
    color: var(--cream);
}



/* BLOCK */
.music-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.music-block.reverse {
    direction: rtl;
}

.music-block.reverse > * {
    direction: ltr;
}

/* IMAGE */
.music-block-image img {
    width: 100%;
    max-height: 680px;          /* größer, luftiger */
    height: auto;              /* natürliche Proportion */
    object-fit: contain;       /* kein hartes Cropping */
    border-radius: 18px;
    background: rgba(0,0,0,0.15); /* subtiler Rahmen */
}

/* TEXT */
.music-block-text h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    color: #ffffff;
}

.music-block-text p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #ffffff;
    max-width: 480px;
}

/* =========================
   MUSIC EP SECTION
========================= */

.music-ep {
    min-height: 100vh;
    background: linear-gradient(
        180deg,
        var(--dark-rose),
        var(--rose),
        rgb(12,10,12)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 160px 8%;
}

.music-ep-inner {
    max-width: 1200px;
    width: 100%;
    text-align: center;
}

/* EP IMAGES */
.ep-images {
    display: flex;
    justify-content: center;
    margin-top: 100px;
    margin-bottom: 80px;
}

.ep-images img {
    width: 100%;
    max-width: 520px;   /* Größe des EP-Covers */
    height: auto;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.4);
}

/* TEXT */
.ep-text h2 {
    font-family: "Parisienne", cursive;
    font-size: 4.8rem;
    color: #ffffff;
    margin-bottom: 25px;
}

.ep-text p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #ffffff;
    opacity: 0.9;
}

.ep-text span {
    display: block;
    margin-top: 10px;
    letter-spacing: 2px;
    opacity: 0.8;
}

/* =========================
   music booking seite
========================= */
.music-booking-cta {
    height: 100vh;
    background: url("images/Vanessa.webp");
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.music-booking-inner h2 {
    font-size: 3.2rem;
    color: #ffffff;
    margin-bottom: 50px;
    letter-spacing: 2px;
}

.music-booking-sub {
    color: var(--light-purple);
    letter-spacing: 3px;
    margin-bottom: 25px;
    font-size: 0.95rem;
    text-transform: uppercase;
}

.music-booking-btn {
    display: inline-block;
    padding: 18px 55px;
    border: 2px solid var(--light-purple);
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 2px;
    transition: 0.4s ease;
}

.music-booking-btn:hover {
    background: var(--light-purple);
    color: #000;
}


/* BOOKING SECTION */

.booking-split {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

/* LEFT IMAGE */
.booking-image {
    background: url("images/unbenannt-09306.jpg") center top / cover no-repeat;
}

/* RIGHT FORM */
.booking-form-wrapper {
    background: linear-gradient(
        185deg,
        rgba(10,10,10,1),
        rgba(5,5,5,1)
    );
    padding: 100px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Titel */
.booking-title {
    font-family: "Parisienne", cursive;
    font-size: 4.8rem;
    color: #ffffff;
    margin-bottom: 50px;
    text-align: left;
}

/* FORM */
.booking-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.booking-form .form-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    background: transparent;
    border: none;
    border-bottom: 1.5px solid rgba(255,255,255,0.6);
    color: #ffffff;
    padding: 14px 10px;
    font-size: 1rem;
    outline: none;
}

.booking-form select {
    background-color: transparent;
    color: #ffffff;
    border-bottom: 1.5px solid rgba(255,255,255,0.6);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

/* OPTIONEN */
.booking-form select option {
    background-color: #000000;
    color: #ffffff;
}

.booking-form input[type="date"],
.booking-form input[type="time"] {
    color-scheme: dark;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    border-color: var(--light-purple);
}

/* Button */
.booking-form button {
    margin-top: 40px;
    padding: 16px;
    background: var(--light-purple);
    color: #000;
    border: none;
    font-size: 1rem;
    letter-spacing: 2px;
    cursor: pointer;
    transition: 0.3s ease;
}

.booking-form button:hover {
    background: #ffffff;
}



/* SCROLL INDICATOR */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-indicator span {
    display: block;
    width: 22px;
    height: 38px;
    border: 2px solid var(--cream);
    border-radius: 20px;
    position: relative;
}

.scroll-indicator span::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 50%;
    width: 4px;
    height: 6px;
    background: var(--cream);
    border-radius: 2px;
    transform: translateX(-50%);
    animation: scrollDot 1.6s infinite;
}

.fade-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.2s ease, transform 1.2s ease;
}

.fade-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes scrollDot {
    0% {
        opacity: 0;
        transform: translate(-50%, 0);
    }
    40% {
        opacity: 1;
    }
    80% {
        opacity: 0;
        transform: translate(-50%, 14px);
    }
}



/* Logo */
.logo img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* Burger Menü */
.menu-toggle {
    width: 30px;
    height: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.menu-toggle span {
    height: 3px;
    width: 100%;
    background: #fff;
    border-radius: 3px;
    transition: 0.4s;
}

/* Overlay Menü */
.overlay-menu {
    position: fixed;
    inset: 0;
    background: var(--dark-gray);
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-100%);
    transition: transform 0.6s ease;
    z-index: 900;
}

.overlay-menu.active {
    transform: translateY(0);
}

.overlay-menu ul {
    list-style: none;
    text-align: center;
}

.overlay-menu ul li {
    margin: 25px 0;
}

.overlay-menu ul li a {
    font-size: 3rem;
    text-decoration: none;
    color: var(--light-purple);
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

.overlay-menu ul li a:hover {
    color: var(--cream);
}


/* =========================
   RECENT EVENTS
========================= */

.recents-hero {
    height: 100vh;
    background: linear-gradient(
        180deg,
        var(--dark-purple),
        var(--lavender),
        var(--dark-purple)
    );
    position: relative;
}

.recents-hero-overlay {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 10%;
}

.recents-hero-overlay h1 {
    font-size: 4rem;
    color: #ffffff;
    letter-spacing: 2px;
    animation: fadeUp 1.6s ease forwards;
}

.recents-hero-overlay p {
    margin-top: 20px;
    font-size: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--light-purple);
    animation: fadeUp 1.6s ease forwards;
    animation-delay: 0.3s;
}

/* CONTENT */
.recents-content {
    background: linear-gradient(110deg, rgb(5, 5, 5), rgb(3, 3, 3), rgb(5, 5, 5));
    padding: 160px 10%;
}

.recents-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* EVENT ITEM */
.event {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 25px;
}

.event h3 {
    font-size: 1.6rem;
    color: #ffffff;
    margin-bottom: 8px;
}

.event span {
    font-size: 0.95rem;
    color: var(--light-purple);
    letter-spacing: 1px;
}


/* =========================
   RECENT EVENTS – EXPAND
========================= */

.recents-title {
    font-family: 'Parisienne', cursive;
    font-size: 5.5rem;
    text-align: center;
    color: #ffffff;
    margin-bottom: 80px;
    letter-spacing: 1px;
}

.event {
    cursor: pointer;
    padding-bottom: 25px;
}

.event-header {
    transition: opacity 0.3s ease;
}

.event:hover .event-header {
    opacity: 0.85;
}

/* GALLERY (hidden by default) */
.event-gallery {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin-top: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    transition: 
        max-height 0.6s ease,
        opacity 0.4s ease,
        margin-top 0.4s ease;
}

/* ACTIVE STATE */
.event.active .event-gallery {
    max-height: 600px;
    opacity: 1;
    margin-top: 30px;
}

.event-gallery img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
}

/* =========================
   THANK YOU PAGE
========================= */

.thankyou-page {
    min-height: 100vh;
    background: linear-gradient(
        180deg,
        rgb(2,2,2),
        rgb(10,10,10)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
}

.thankyou-box {
    background: linear-gradient(
        185deg,
        rgba(10,10,10,0.95),
        rgba(5,5,5,0.95)
    );
    padding: 80px 70px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.08);
    max-width: 520px;
}

.thankyou-box h1 {
    font-family: "Parisienne", cursive;
    font-size: 4.8rem;
    color: #ffffff;
    margin-bottom: 30px;
}

.thankyou-box p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #ffffff;
    opacity: 0.9;
    margin-bottom: 50px;
}

.thankyou-btn {
    display: inline-block;
    padding: 16px 48px;
    border: 2px solid var(--light-purple);
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 2px;
    transition: 0.4s ease;
}

.thankyou-btn:hover {
    background: var(--light-purple);
    color: #000;
}

/* =========================
   RECENT EVENTS – SLIDER
========================= */

.recent-slider-section {
    background: linear-gradient(180deg, rgb(5,5,5), rgb(0,0,0));
    padding: 160px 8%;
}

.recent-slider-title {
    font-family: "Parisienne", cursive;
    font-size: 5.2rem;
    text-align: center;
    color: #ffffff;
    margin-bottom: 100px;
}

/* SLIDER WRAPPER */
.recent-slider {
    max-width: 1200px;
    margin: 0 auto;
    overflow-x: auto;
    scrollbar-width: none;
}

.recent-slider::-webkit-scrollbar {
    display: none;
}

/* TRACK */
.recent-slider-track {
    display: flex;
    width: max-content;
    gap: 40px;
}

/* SLIDE */
.recent-slide {
    min-width: 320px;
    flex: 0 0 320px;
    text-align: center;
}

/* IMAGE */
.recent-slide img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.45);
    margin-bottom: 25px;
}

/* TITLE */
.recent-slide-title {
    font-size: 1.05rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--light-purple);
}


.recent-slider {
    cursor: grab;
}

.recent-slider.dragging {
    cursor: grabbing;
}

/*

/* =========================
   EP HOVER COUNTDOWN
========================= */

.ep-hover {
    position: relative;
}

.ep-hover img {
    transition: filter 1.2s ease, transform 1.2s ease;
}


/* =========================
   MOBILE FINE TUNING
========================= */

/* =====================================================
   MOBILE – ABOUT / ÜBER MICH
===================================================== */

@media (max-width: 768px) {

    .about-editorial {
        padding: 90px 6%;
        text-align: left;
    }

    /* Überschrift */
    .editorial-headline {
        font-size: 2.4rem;
        margin-bottom: 25px;
        padding-right: 0;
    }

    .editorial-headline::after {
        display: none;
    }

    /* NUR EIN BILD ZEIGEN */
    .editorial-images {
        grid-template-columns: 1fr;
        margin-bottom: 35px;
    }

    .editorial-images img {
    display: none;
}

.editorial-images img.about-mobile {
    display: block;
    height: 320px;
    border-radius: 14px;
    object-fit: cover;
    margin: 0 auto;
}

    /* Intro */
    .editorial-intro {
        font-size: 0.7rem;
        margin-bottom: 6px;
    }

    /* Name */
    .editorial-name {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }

    /* Text */
    .editorial-text {
        font-size: 1rem;
        line-height: 1.6;
    }

    .editorial-text p {
        margin-bottom: 18px;
    }
}

/* =====================================================
   MOBILE – ABOUT / Booking page
===================================================== */

@media (max-width: 768px) {

    /* SECTION */
    .booking-split {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    /* IMAGE TOP */
    .booking-image {
        height: 45vh;
        background-position: center top;
    }

    /* FORM WRAPPER */
    .booking-form-wrapper {
        padding: 60px 7%;
    }

    /* TITLE */
    .booking-title {
        font-size: 2.6rem;
        text-align: center;
        margin-bottom: 40px;
    }

    /* FORM */
    .booking-form {
        gap: 26px;
    }

    /* FORM GROUPS → EINSPALTIG */
    .booking-form .form-group {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    /* INPUTS */
    .booking-form input,
    .booking-form select,
    .booking-form textarea {
        font-size: 1rem;
        padding: 16px 12px;
    }

    .booking-form textarea {
        min-height: 120px;
    }

    /* BUTTON */
    .booking-form button {
        margin-top: 30px;
        padding: 18px;
        font-size: 0.95rem;
        letter-spacing: 2px;
        border-radius: 6px;
    }
}

/* =====================================================
   MOBILE – MUSIC PAGE
===================================================== */

@media (max-width: 768px) {

    /* Abstand der Music-Seite reduzieren */
    .music-page {
        padding: 100px 6%;
    }

    .music-page-container {
        gap: 120px;
    }

    /* MUSIC BLOCK → untereinander */
    .music-block {
        display: flex;
        flex-direction: column;
        gap: 35px;
    }

    /* Reverse auf Mobile aufheben */
    .music-block.reverse {
        direction: ltr;
    }

    /* IMAGE */
    .music-block-image img {
        max-height: 65vh;
        width: 100%;
        object-fit: cover;
        border-radius: 16px;
    }

    /* TEXT */
    .music-block-text {
        text-align: left;
    }

    .music-block-text h2 {
        font-size: 2rem;
        margin-bottom: 18px;
    }

    .music-block-text p {
        font-size: 1rem;
        line-height: 1.6;
        max-width: 100%;
    }

    /* VIDEO LINK */
    .music-video {
        margin-top: 10px;
    }

    .music-video a {
        font-size: 0.9rem;
        letter-spacing: 1.5px;
    }
}

@media (max-width: 768px) {
    .music-booking-cta {
        background-image:
            linear-gradient(
                180deg,
                rgba(10,10,10,0.85),
                rgba(20,20,20,0.75),
                rgba(10,10,10,0.9)
            ),
            url("images/Vanessa.webp");
        background-size: cover;
        background-position: center 25%;
        background-repeat: no-repeat;

        height: auto;
        min-height: 80vh;
        padding: 90px 6%;
    }
}

/* =========================
   FOOTER
========================= */

.site-footer {
    background: linear-gradient(
        240deg,
        #0c0c0c,
        #020202
    );
    padding: 60px 8% 50px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-name {
    font-family: "Parisienne", cursive;
    font-size: 2.2rem;
    margin-bottom: 18px;
    opacity: 0.9;
}

.footer-links {
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--light-purple);
}

.footer-links span {
    margin: 0 10px;
    opacity: 0.4;
}

/* MOBILE */
@media (max-width: 768px) {
    .footer-name {
        font-size: 1.6rem;
    }
}

.about-editorial h3 {
    font-size: 1.2rem;
    margin-top: 50px;
    margin-bottom: 14px;
    color: var(--light-purple);
}

.about-editorial ul {
    margin: 15px 0 25px 25px;
    line-height: 1.7;
}

.about-editorial p {
    opacity: 0.9;
}


.about-editorial {
    background: linear-gradient(
        180deg,
        #0f0f0f,
        #141414,
        #0f0f0f
    );
}