/* ============================================
   MAGNETATE - Dotmatrix Inspired Design
   ============================================ */

/* CSS Variables - Dotmatrix Color Palette */
:root {
    --burgundy: #7d0011;
    --accent-red: #EA2327;
    --black: #000000;
    --white: #ffffff;
    --dark-gray: #1a1a1a;
    --light-gray: #f5f5f5;

    /* Typography */
    --font-serif: 'Rokkitt', serif;
    --font-sans: 'Barlow Condensed', sans-serif;
}

/* ============================================
   Reset & Base Styles
   ============================================ */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-serif);
    color: var(--white);
    background-color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ============================================
   Typography
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-sans);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

h1 {
    font-size: clamp(3rem, 8vw, 6rem);
}

h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    font-family: var(--font-serif);
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.8;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-red);
}

/* ============================================
   Header & Navigation
   ============================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--black);
    z-index: 1000;
    padding: 1.5rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo a {
    font-family: var(--font-sans);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--white);
    transition: color 0.3s ease;
}

.logo a:hover {
    color: var(--accent-red);
}

.logo-tagline {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 100;
    letter-spacing: 0.15em;
    color: var(--white);
    text-transform: uppercase;
    opacity: 0.9;
}

.nav {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    transition: color 0.3s ease;
}

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

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

.nav-link.active {
    color: var(--accent-red);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background-color: var(--white);
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* ============================================
   Hero Section
   ============================================ */

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--black) 0%, var(--burgundy) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 2rem;
}

.hero-title {
    margin-bottom: 1rem;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-family: var(--font-sans);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-red);
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--accent-red);
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 2px solid var(--accent-red);
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-button:hover {
    background-color: transparent;
    color: var(--accent-red);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(234, 35, 39, 0.4);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: var(--accent-red);
    z-index: 2;
}

/* Video Background Styles */
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.video-iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw; /* 16:9 aspect ratio */
    min-height: 100vh;
    min-width: 177.77vh; /* 16:9 aspect ratio */
    transform: translate(-50%, -50%);
    pointer-events: none;
}

/* Video Overlay for better text readability */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

/* Adjust video hero to ensure proper layering */
.video-hero .hero-content,
.video-hero .scroll-indicator {
    position: relative;
    z-index: 3;
}

.video-hero .hero-title,
.video-hero .hero-subtitle,
.video-hero .hero-description,
.video-hero .cta-button {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

/* Mute/Unmute Button */
.mute-toggle {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    z-index: 3;
    background-color: rgba(0, 0, 0, 0.3);
    border: 2px solid var(--white);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--white);
}

.mute-toggle:hover {
    background-color: var(--accent-red);
    border-color: var(--accent-red);
    transform: scale(1.1);
}

.mute-toggle:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(234, 35, 39, 0.3);
}

/* ============================================
   Sections
   ============================================ */

.section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem;
    overflow: hidden;
}

.parallax-section {
    position: relative;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.dark-section {
    background-color: var(--black);
    color: var(--white);
}

.light-section {
    background-color: var(--light-gray);
    color: var(--black);
}

.light-section .section-title {
    color: var(--white);
}

.section-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    color: var(--white);
}

/* ============================================
   Content Grid (About Section)
   ============================================ */

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.content-block {
    text-align: center;
}

.content-block h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.content-block p {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 100;
    line-height: 1.8;
    letter-spacing: 0.05em;
}

/* Section Video Background Styles */
.video-section {
    position: relative;
    overflow: hidden;
}

.section-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.section-video-iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw; /* 16:9 aspect ratio */
    min-height: 100vh;
    min-width: 177.77vh; /* 16:9 aspect ratio */
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.section-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.375);
    z-index: 1;
}

.contact-section .section-video-overlay {
    background: rgba(0, 0, 0, 0);
}

#services .section-video-overlay {
    background: rgba(0, 0, 0, 0);
}

.video-section .section-content {
    position: relative;
    z-index: 3;
}

.video-section .section-title,
.video-section h3,
.video-section p {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.video-section .mute-toggle {
    z-index: 3;
}

/* ============================================
   Services Section
   ============================================ */

.services-title {
    color: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--burgundy);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    aspect-ratio: 1 / 1;
    position: relative;
    z-index: 1;
    cursor: pointer;
}

.service-card h3,
.service-card .service-description {
    position: relative;
    z-index: 2;
    text-shadow: none;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.8),
                0 0 30px rgba(255, 255, 255, 0.6),
                0 0 40px rgba(255, 255, 255, 0.4);
}

.service-card.clicked {
    background-color: var(--accent-red) !important;
}

.service-card.clicked:hover {
    box-shadow: 0 0 20px rgba(234, 35, 39, 0.8),
                0 0 30px rgba(234, 35, 39, 0.6),
                0 0 40px rgba(234, 35, 39, 0.4);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: var(--white);
    margin-bottom: 0;
    font-size: 2rem;
}

.service-card p {
    color: var(--white);
    font-size: 1rem;
}

.service-description {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 100;
    letter-spacing: 0.05em;
    color: var(--white);
    opacity: 1;
    margin: 0;
}

/* ============================================
   Brand Rows
   ============================================ */

.brand-row {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    position: relative;
    overflow: hidden;
}

.brand-row-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 250px;
    text-decoration: none;
    transition: opacity 0.3s ease;
    position: relative;
    z-index: 1;
}

.brand-row-link:hover {
    opacity: 0.9;
}

.brand-row-link-left {
    justify-content: flex-start;
    padding-left: 4rem;
}

.brand-row h3 {
    font-family: var(--font-sans);
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Brand Row Colors */
.brand-row-coke {
    background-color: #F40009;
}

.brand-row-coke .parallax-bg-fixed {
    background-image: url('../assets/images/COKE COVER2.jpg');
}

.brand-row-coke h3 {
    font-size: 4.5rem;
}

.brand-row-danone {
    background-color: #0054A6;
}

.brand-row-danone .parallax-bg-fixed {
    background-image: url('../assets/images/DANONE COVER2.jpg');
}

.brand-row-danone h3 {
    font-size: 4.5rem;
}

.brand-row-homedepot {
    background-color: #F96302;
}

.brand-row-homedepot .parallax-bg-fixed {
    background-image: url('../assets/images/HD COVERd.jpg');
}

.brand-row-homedepot h3 {
    font-size: 4.5rem;
}

.brand-row-meta {
    background-color: #0668E1;
}

.brand-row-meta h3 {
    font-size: 4.5rem;
}

.brand-row-marta {
    background-color: #FFB81C;
}

.brand-row-cox {
    background-color: #0047BB;
}

/* Parallax Fixed Background Effect for Brand Rows */
.brand-row-parallax {
    position: relative;
    overflow: hidden;
}

.parallax-bg-fixed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/images/METACOVER.jpg');
    background-size: cover;
    background-position: center;
    z-index: 0;
    will-change: transform;
}

.brand-row-parallax .brand-row-link {
    position: relative;
    z-index: 2;
}

.brand-row-parallax h3 {
    position: relative;
    z-index: 3;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
}

/* ============================================
   Client Logos Section
   ============================================ */

.logos-section {
    padding: 6rem 2rem;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.logos-section .section-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.logos-section .section-video-iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    min-height: 100%;
    min-width: 177.77%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.logos-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    z-index: 1;
}

.logos-section .section-title {
    color: var(--white);
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 3rem 2.5rem;
    margin-top: 3rem;
    max-width: 1700px;
    margin-left: auto;
    margin-right: auto;
}

.logo-item {
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-placeholder {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.logo-placeholder:hover {
    opacity: 1;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 1)) drop-shadow(0 0 40px rgba(255, 255, 255, 0.6));
    transform: scale(1.05);
}

/* For when logos become images */
.logo-item img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.logo-item img:hover {
    opacity: 1;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 1)) drop-shadow(0 0 40px rgba(255, 255, 255, 0.6));
    transform: scale(1.05);
}

/* Standard size logos (70%) */
.logo-item img.logo-standard {
    max-width: 70%;
    max-height: 70%;
}

/* Full size logos for specific brands */
.logo-item img.logo-full-size {
    max-width: 120%;
    max-height: 120%;
}

/* 100% size for Minute Maid */
.logo-item img.logo-80 {
    max-width: 100%;
    max-height: 100%;
}

/* ============================================
   Services List Section
   ============================================ */

.services-list-section {
    background-color: var(--black);
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.services-list-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    will-change: transform;
}

.services-list-video-iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    min-height: 100%;
    min-width: 177.77%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.services-list-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.services-list-section .section-content {
    position: relative;
    z-index: 2;
}

.services-list-section .section-title {
    color: var(--white);
}

.services-list-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem 4rem;
    margin-top: 3rem;
    max-width: 1700px;
    margin-left: auto;
    margin-right: auto;
}

.service-column {
    text-align: center;
}

.service-category {
    margin-bottom: 1.5rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.service-category:last-child {
    margin-bottom: 0;
}

.service-category h3 {
    font-family: var(--font-sans);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 0.75rem 1.5rem;
    display: inline-block;
    width: 220px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.service-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-category li {
    font-family: var(--font-sans);
    font-size: 1.25rem;
    font-weight: 100;
    color: var(--white);
    line-height: 1.6;
    padding: 0;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.service-category.clicked li.muted {
    opacity: 0.3;
}

.service-category:hover h3 {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.8),
                0 0 30px rgba(255, 255, 255, 0.6),
                0 0 40px rgba(255, 255, 255, 0.4);
}

.service-category.clicked h3 {
    background-color: var(--accent-red) !important;
}

.service-category.clicked:hover h3 {
    box-shadow: 0 0 20px rgba(234, 35, 39, 0.8),
                0 0 30px rgba(234, 35, 39, 0.6),
                0 0 40px rgba(234, 35, 39, 0.4);
}

/* ============================================
   Contact Section
   ============================================ */

.contact-section {
    min-height: 100vh;
}

.contact-section .section-video-iframe {
    width: 123vw;
    height: 69.1875vw;
    min-height: 123vh;
    min-width: 123vw;
}

.contact-content {
    text-align: center;
}

.contact-intro {
    font-size: 1.3rem;
    margin-bottom: 3rem;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 5rem;
    flex-wrap: wrap;
}

.contact-item h3 {
    color: var(--accent-red);
    margin-bottom: 1rem;
}

.contact-item a {
    font-size: 1.2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.email-link {
    cursor: pointer;
    transition: color 0.3s ease;
}

.email-link:hover {
    color: var(--accent-red);
}

.social-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.social-links a {
    font-family: var(--font-sans);
    font-weight: 600;
    text-transform: uppercase;
}

/* ============================================
   Footer
   ============================================ */

.footer {
    background-color: var(--black);
    padding: 2rem;
    text-align: center;
    border-top: 3px solid var(--burgundy);
}

.footer-content p {
    margin-bottom: 0.5rem;
}

.footer-copyright {
    font-family: var(--font-sans);
    font-weight: 100;
    letter-spacing: 0.15em;
    color: var(--dark-gray);
}

.footer-tagline {
    color: var(--accent-red);
    font-family: var(--font-sans);
    font-weight: 100;
    letter-spacing: 0.15em;
}

/* ============================================
   Animations
   ============================================ */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 1.5s ease-out;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

.bounce {
    animation: bounce 2s ease-in-out infinite;
}

/* ============================================
   Responsive Design
   ============================================ */

@media screen and (max-width: 900px) {
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background-color: var(--burgundy);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.3s ease;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
    }

    .nav.active {
        right: 0;
    }

    .hamburger {
        display: flex;
    }

    .nav-link {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 768px) {
    .header-container {
        padding: 0 1.5rem;
    }

    .section {
        padding: 4rem 1.5rem;
    }

    .content-grid,
    .services-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .logos-grid {
        gap: 1.5rem;
    }

    .logo-placeholder {
        font-size: 1.2rem;
        padding: 1.5rem 2rem;
    }


    .contact-info {
        flex-direction: column;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    /* Increase overlay opacity on mobile for better readability */
    .video-overlay {
        background: rgba(0, 0, 0, 0.6);
    }

    /* Smaller mute button on mobile */
    .mute-toggle {
        width: 50px;
        height: 50px;
        bottom: 1.5rem;
        right: 1.5rem;
    }

    .mute-toggle svg {
        width: 20px;
        height: 20px;
    }
}

@media screen and (max-width: 600px) {
    .logo {
        gap: 0.5rem;
    }

    .logo a {
        font-size: 1.5rem;
    }

    .logo-tagline {
        font-size: 0.6rem;
        letter-spacing: 0.1em;
    }

    .services-list-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-title {
        margin-bottom: 2rem;
    }

    .service-card,
    .content-block {
        padding: 2rem 1.5rem;
    }
}

/* ============================================
   Interactive Circle Buttons
   ============================================ */

.circle-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.circle-button:hover {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.8),
                0 0 30px rgba(255, 255, 255, 0.6),
                0 0 40px rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

.circle-button.clicked {
    background-color: var(--accent-red);
}

.circle-button.clicked:hover {
    box-shadow: 0 0 20px rgba(234, 35, 39, 0.8),
                0 0 30px rgba(234, 35, 39, 0.6),
                0 0 40px rgba(234, 35, 39, 0.4);
}

/* Coke Black Circles */
.coke-black-circle {
    background-color: #000000;
}

.coke-black-circle.clicked {
    background-color: var(--accent-red) !important;
}

/* Danone Black Circles */
.danone-black-circle {
    background-color: #000000;
}

.danone-black-circle.clicked {
    background-color: #0099FF !important;
}

.danone-black-circle.clicked:hover {
    box-shadow: 0 0 20px rgba(0, 153, 255, 0.8),
                0 0 30px rgba(0, 153, 255, 0.6),
                0 0 40px rgba(0, 153, 255, 0.4);
}

/* Home Depot Black Circles */
.homedepot-black-circle {
    background-color: #000000;
}

.homedepot-black-circle.clicked {
    background-color: #F96302 !important;
}

.homedepot-black-circle.clicked:hover {
    box-shadow: 0 0 20px rgba(249, 99, 2, 0.8),
                0 0 30px rgba(249, 99, 2, 0.6),
                0 0 40px rgba(249, 99, 2, 0.4);
}

/* META Black Circles */
.meta-black-circle {
    background-color: #000000;
}

.meta-black-circle.clicked {
    background-color: #E6007E !important;
}

.meta-black-circle.clicked:hover {
    box-shadow: 0 0 20px rgba(230, 0, 126, 0.8),
                0 0 30px rgba(230, 0, 126, 0.6),
                0 0 40px rgba(230, 0, 126, 0.4);
}

/* Logos Section Black Circles */
.logos-black-circle {
    background-color: #000000;
}

.logos-black-circle.clicked {
    background-color: var(--accent-red) !important;
}

.logos-black-circle.clicked:hover {
    box-shadow: 0 0 20px rgba(234, 35, 39, 0.8),
                0 0 30px rgba(234, 35, 39, 0.6),
                0 0 40px rgba(234, 35, 39, 0.4);
}

/* Contact Section Circles */
.contact-circle {
    background-color: #000000;
}

.contact-circle.clicked {
    background-color: var(--accent-red) !important;
}

.contact-circle.clicked:hover {
    box-shadow: 0 0 20px rgba(234, 35, 39, 0.8),
                0 0 30px rgba(234, 35, 39, 0.6),
                0 0 40px rgba(234, 35, 39, 0.4);
}
