/* ===== GLOBAL STYLES & VARIABLES ===== */
:root {
    --color-background: #0a0a0a;
    --color-text: #EAEAEA;
    --color-primary-gold: #FFC107;
    --color-accent-violet: #8A2BE2;
    --color-surface: #1a1a1a;
    --color-border: #2c2c2c;

    --font-body: 'Lexend Deca', sans-serif;
    --font-title: 'Lexend Deca', sans-serif;

    --header-height: 90px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-background);
    color: var(--color-text);
    line-height: 1.6;
}

/* UPDATED: Robust fix for fixed header overlap using pseudo-element */
section[id],
.detail-section[id],
.accordion-item[id],
.detail-card[id] {
    scroll-margin-top: 120px; /* Keep as fallback */
    position: relative;
}

/* This creates an invisible buffer above the target ID */
section[id]::before,
.detail-section[id]::before,
.accordion-item[id]::before,
.detail-card[id]::before {
    content: "";
    display: block;
    height: 120px; /* Header height + buffer */
    margin-top: -120px;
    visibility: hidden;
    pointer-events: none;
}

h1, h2, h3 {
    font-family: var(--font-title);
    font-weight: 700;
    letter-spacing: -0.5px;
}

a {
    color: var(--color-primary-gold);
    text-decoration: none;
}

ul {
    list-style: none;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 20px;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--color-text);
    font-weight: 900;
    text-transform: uppercase;
}

/* Utility Class for Intro Text */
.section-intro {
    text-align: center;
    margin-bottom: 40px;
    color: #ccc;
}

.cta-button {
    background-color: var(--color-primary-gold);
    color: #000;
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 700;
    font-family: var(--font-title);
    transition: transform 0.3s ease, background-color 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
}

.cta-button:hover {
    transform: scale(1.05);
    background-color: #fff;
}


/* ===== HEADER ===== */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
    z-index: 1000;
    transition: background-color 0.4s ease;
    background-color: transparent;
}

#header.scrolled {
    background-color: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    max-height: 10rem;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.logo:hover img {
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px rgba(138, 43, 226, 0.6));
}

.nav-list {
    display: flex;
    align-items: center;
}

.nav-item {
    margin: 0 20px;
    position: relative; /* Needed for dropdown positioning */
}

.nav-link {
    color: var(--color-text);
    font-size: 1rem;
    padding: 10px 0;
    position: relative;
    transition: color 0.3s;
    display: block;
    font-weight: 500;
    cursor: pointer;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary-gold);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--color-primary-gold);
}

.nav-link:hover::after {
    width: 100%;
}

/* ===== DROPDOWN MENUS ===== */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--color-surface);
    min-width: 200px;
    border: 1px solid var(--color-border);
    border-radius: 5px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    z-index: 1001;
}

.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    display: block;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: var(--color-text);
    font-size: 0.9rem;
    transition: background-color 0.3s, color 0.3s;
    font-weight: 400;
}

.dropdown-menu li a:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--color-primary-gold);
}

/* Language Dropdown Specifics */
.lang-container .dropdown-menu {
    min-width: 120px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
}
.lang-container .dropdown-menu.show {
    transform: translateX(-50%) translateY(0);
}


.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.burger-menu, .close-menu {
    display: none; /* Hidden on desktop */
    background: none;
    border: none;
    color: var(--color-text);
    font-size: 2rem;
    cursor: pointer;
}

.mobile-nav {
    display: none;
}


/* ===== HERO SECTION ===== */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    background: linear-gradient(to bottom, #5D007C, #000000);
    position: relative;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 7vw;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: -2px;
}

.hero-title .outline {
    -webkit-text-stroke: 1px var(--color-accent-violet);
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-top: 20px;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    font-weight: 300;
}

/* HERO MARQUEE */
.hero-marquee {
    position: absolute;
    bottom: 150px;
    left: 0;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    z-index: 1;
    opacity: 0.8;
}

.marquee-track {
    display: inline-block;
    animation: marquee 40s linear infinite;
}

.marquee-item {
    display: inline-block;
    font-family: var(--font-title);
    font-size: 1.2rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.3s ease, opacity 0.3s ease;
}

a.marquee-item {
    text-decoration: none;
    cursor: pointer;
}

a.marquee-item:hover {
    color: var(--color-primary-gold);
    opacity: 1;
}

.marquee-item:first-child {
    color: var(--color-primary-gold);
    opacity: 1;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}


.hero-socials {
    position: absolute;
    bottom: 40px;
    left: 50px;
    display: flex;
    gap: 20px;
    z-index: 10;
}

.hero-socials a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.8rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.hero-socials a:hover {
    color: var(--color-primary-gold);
    transform: translateY(-3px);
}

.social-custom-icon {
    height: 28px;
    width: auto;
}

/* SCROLL INDICATOR */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 10;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.scroll-indicator:hover {
    opacity: 1;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--color-text);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background-color: var(--color-primary-gold);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.5s infinite;
}

.arrow-scroll span {
    display: block;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid var(--color-text);
    border-right: 2px solid var(--color-text);
    transform: rotate(45deg);
    margin: -5px auto;
    animation: scrollArrow 1.5s infinite;
}

.arrow-scroll span:nth-child(2) {
    animation-delay: 0.2s;
}

.arrow-scroll span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes scrollWheel {
    0% { top: 10px; opacity: 1; }
    100% { top: 30px; opacity: 0; }
}

@keyframes scrollArrow {
    0% { opacity: 0; transform: rotate(45deg) translate(-5px, -5px); }
    50% { opacity: 1; }
    100% { opacity: 0; transform: rotate(45deg) translate(5px, 5px); }
}


/* ===== ABOUT SECTION (NEW) ===== */
.about-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 50px;
}

.about-image-container {
    flex: 1;
    position: relative;
    height: 500px;
}

.about-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 2;
    border-radius: 5px;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.about-img:hover {
    filter: grayscale(0%);
}

.about-text-content {
    flex: 1;
}

/* Specific style for About Title to align left on desktop */
.about-text-content .section-title {
    text-align: left;
    margin-bottom: 30px;
}

.dj-name {
    font-size: 4rem;
    color: var(--color-primary-gold);
    line-height: 1;
    margin-bottom: 20px;
    font-weight: 900;
    letter-spacing: -1px;
}

.about-bio {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 20px;
    line-height: 1.8;
}

.signature {
    margin-top: 30px;
    font-family: 'Bebas Neue', cursive;
    font-size: 1.5rem;
    color: var(--color-accent-violet);
    letter-spacing: 2px;
}

/* UPDATED: Read More Button Style */
.read-more-link {
    background: none;
    border: 1px solid var(--color-primary-gold);
    color: var(--color-primary-gold);
    padding: 8px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-title);
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 10px;
    display: inline-block;
}

.read-more-link:hover {
    background-color: var(--color-primary-gold);
    color: #000;
}


/* ===== EXPERIENCES SECTION (DETAILED) ===== */
.detail-section {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 100px;
}

.detail-section.reverse {
    flex-direction: row-reverse;
}

.detail-section.vertical {
    flex-direction: column;
    text-align: center;
}

.detail-content {
    flex: 1;
}

.detail-icon {
    font-size: 2.5rem;
    color: var(--color-accent-violet);
    margin-bottom: 20px;
}

.detail-content h3 {
    font-size: 2.5rem;
    color: var(--color-primary-gold);
    margin-bottom: 20px;
    font-weight: 700;
}

.detail-content p {
    font-size: 1.1rem;
    color: #ccc;
}

.detail-image {
    flex: 1;
    height: 350px;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    border: 1px solid var(--color-border);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.center-text {
    font-size: 1.2rem;
    color: var(--color-primary-gold);
    margin-bottom: 30px;
    letter-spacing: 1px;
    font-weight: 500;
}

/* UPDATED: SoundCloud Player Styling */
.soundcloud-player {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    width: 100%;
}

.player-wrapper {
    flex: 1; /* Each player takes equal width */
    min-width: 300px; /* Minimum width to prevent squishing */
}

.player-wrapper iframe {
    border-radius: 10px;
    width: 100%;
    height: 300px; /* Ensure height is respected */
}

/* ===== PACKS SECTION (NEW) ===== */
.packs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.pack-card {
    background-color: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.pack-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-accent-violet);
}

.pack-image {
    height: 150px; /* UPDATED: Reduced height */
    background-size: cover;
    background-position: center;
}

.pack-content {
    padding: 20px; /* UPDATED: Reduced padding */
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.pack-content h3 {
    font-size: 1.5rem; /* UPDATED: Smaller font */
    color: var(--color-primary-gold);
    margin-bottom: 10px;
}

.pack-price {
    font-size: 1rem; /* UPDATED: Smaller font */
    color: #fff;
    font-weight: 700;
    margin-bottom: 15px;
}

.pack-description {
    color: #ccc;
    flex-grow: 1;
    margin-bottom: 20px;
    font-size: 0.9rem; /* UPDATED: Smaller font */
}


/* ===== PRODUCTION SECTION (ACCORDION) ===== */
.production-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    background-color: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.accordion-item.active {
    border-color: var(--color-primary-gold);
}

.accordion-header {
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.02);
    transition: background-color 0.3s ease;
}

.accordion-header:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.header-title {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: var(--font-title);
    font-size: 1.5rem;
    color: #fff;
    font-weight: 700;
}

.header-title i {
    color: var(--color-primary-gold);
}

.arrow {
    color: var(--color-text);
    transition: transform 0.3s ease;
}

.accordion-item.active .arrow {
    transform: rotate(180deg);
    color: var(--color-primary-gold);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
    background-color: #000;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 30px;
}

.product-card {
    background-color: var(--color-surface);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--color-border);
}

.product-img {
    height: 180px;
    background-size: cover;
    background-position: center;
}

.product-info {
    padding: 15px;
}

.product-info h4 {
    color: var(--color-primary-gold);
    font-size: 1.2rem;
    margin-bottom: 5px;
    font-family: var(--font-title);
    font-weight: 700;
}

.product-info p {
    font-size: 0.9rem;
    color: #ccc;
}


/* ===== PARTNER ARTISTS SECTION (NEW) ===== */
.partners-grid {
    display: grid;
    /* UPDATED: 5 columns on desktop */
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.partner-card {
    background-color: var(--color-surface);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--color-border);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary-gold);
}

.partner-img {
    /* UPDATED: Smaller height for compact look */
    height: 140px;
    background-size: cover;
    background-position: center;
}

.partner-info {
    padding: 12px;
    text-align: center;
}

.partner-info h3 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 5px;
}

.partner-info p {
    color: var(--color-primary-gold);
    font-size: 0.8rem;
    font-weight: 500;
}


/* ===== REVIEWS SECTION ===== */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.review-card {
    background-color: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 15px;
    padding: 25px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary-gold);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background-color: var(--color-accent-violet);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text);
    margin: 0;
}

.review-date {
    font-size: 0.75rem;
    color: #888;
}

.google-icon {
    color: var(--color-text);
    font-size: 1.2rem;
}

.review-stars {
    color: var(--color-primary-gold);
    margin-bottom: 15px;
    font-size: 0.8rem;
}

.review-text {
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.5;
}


/* ===== FOOTER / CONTACT ===== */
#contact {
    background-color: #000;
    padding-top: 80px;
    padding-bottom: 40px;
    text-align: center;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto 50px auto;
    display: grid;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    background-color: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 5px;
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 1rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #888;
}

.contact-form button {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
}

.footer-socials {
    margin-bottom: 30px;
}

.footer-socials a {
    color: var(--color-text);
    font-size: 1.8rem;
    margin: 0 15px;
    transition: color 0.3s;
}

.footer-socials a:hover {
    color: var(--color-accent-violet);
}

.footer-copy {
    font-size: 0.9rem;
    color: #888;
}


/* ===== ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    #header {
        padding: 0 20px;
    }
    .main-nav, .header-actions .cta-button {
        display: none; /* Hide desktop nav and CTA */
    }
    .burger-menu {
        display: block; /* Show burger */
    }

    .mobile-nav {
        position: fixed;
        top: 0;
        right: -100%; /* Start off-screen */
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--color-surface);
        z-index: 1001;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-top: 100px;
        transition: right 0.4s ease-in-out;
    }

    .mobile-nav.active {
        right: 0; /* Slide in */
    }

    .close-menu {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
    }

    .mobile-nav-list {
        width: 100%;
        text-align: center;
    }
    .mobile-nav-list li {
        margin: 20px 0;
    }
    .mobile-nav-link {
        font-size: 1.5rem;
        color: var(--color-text);
    }
    .mobile-nav-link.cta-button {
        display: inline-block;
        margin-top: 20px;
    }

    .mobile-lang-switch {
        margin: 20px 0;
        font-size: 1.2rem;
        color: var(--color-text);
    }
    .mobile-lang-switch a {
        color: var(--color-text);
        margin: 0 10px;
    }
    .mobile-lang-switch a:hover {
        color: var(--color-primary-gold);
    }

    .hero-title {
        font-size: 12vw;
    }

    .hero-socials {
        left: 50%;
        transform: translateX(-50%);
        bottom: 100px;
    }
    .hero-socials a:hover {
        transform: translateX(-50%) translateY(-3px);
    }

    .scroll-indicator {
        bottom: 20px;
    }

    .hero-marquee {
        bottom: 160px;
    }
    .marquee-item {
        font-size: 1rem;
        margin: 0 15px;
    }

    /* Responsive for Detailed Sections */
    .detail-section {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    .detail-section.reverse {
        flex-direction: column;
    }
    .detail-image {
        width: 100%;
        height: 250px;
    }

    /* Responsive for About Section */
    .about-wrapper {
        flex-direction: column-reverse;
        gap: 40px;
    }
    .about-image-container {
        width: 100%;
        height: 400px;
    }
    .about-text-content {
        text-align: center;
    }
    /* Override the specific left align for mobile */
    .about-text-content .section-title {
        text-align: center !important;
    }
    .section-title {
        text-align: center !important;
    }

    .production-details-wrapper {
        grid-template-columns: 1fr;
    }

    .experience-content {
        grid-template-columns: 1fr;
    }

    /* UPDATED: Responsive SoundCloud Player */
    .soundcloud-player {
        flex-direction: column; /* Stack on mobile */
    }

    .bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 250px);
    }
    .item-1, .item-2, .item-3, .item-4 {
        grid-column: auto;
    }

    .social-proof-widgets {
        grid-template-columns: 1fr;
    }

    /* UPDATED: Responsive Reviews Grid */
    .reviews-grid {
        grid-template-columns: 1fr; /* Stack on mobile */
    }

    /* UPDATED: Responsive Partners Grid */
    .partners-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on mobile */
    }

    .packs-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 60px 15px;
    }
    .section-title {
        font-size: 2.5rem;
    }
    .hero-title {
        font-size: 15vw;
    }

    .partners-grid {
        grid-template-columns: 1fr; /* 1 column on very small screens */
    }
}

/* ========================================= */
/* ===== UTILITIES / IMAGES ===== */
/* ========================================= */

/* About Image */
.img-about { background-image: url('https://images.unsplash.com/photo-1571266028243-3716f02d2d2e?q=80&w=2070&auto=format&fit=crop'); }

/* Experience Images */
.img-club { background-image: url('https://images.unsplash.com/photo-1516450360452-9312f5e86fc7?q=80&w=2070&auto=format&fit=crop'); }
.img-private { background-image: url('https://images.unsplash.com/photo-1514525253440-b393452e8d26?q=80&w=1974&auto=format&fit=crop'); }

/* Production Images */
.img-vortex { background-image: url('https://images.unsplash.com/photo-1587204236939-a37094358339?q=80&w=2070&auto=format&fit=crop'); }
.img-rcf { background-image: url('https://images.unsplash.com/photo-1559422439-8a513a4697a3?q=80&w=1964&auto=format&fit=crop'); }
.img-lyres { background-image: url('https://images.unsplash.com/photo-1524368535928-5b5e00ddc76b?q=80&w=2070&auto=format&fit=crop'); }
.img-led { background-image: url('https://images.unsplash.com/photo-1504196606672-aef5c9cefc92?q=80&w=2069&auto=format&fit=crop'); }
.img-smoke { background-image: url('https://images.unsplash.com/photo-1492684223066-81342ee5ff30?q=80&w=2070&auto=format&fit=crop'); }
.img-spark { background-image: url('https://images.unsplash.com/photo-1468359601543-843b5eb24789?q=80&w=2069&auto=format&fit=crop'); }
