body{
    background-color: #000;
margin:0;
font-family:sans-serif;
}

/* HERO */

.hero{
position:relative;
overflow: hidden;
z-index:2;
background:url("../images/studio-bg.jpg") center/cover #000; /*background-size:110%;  slightly zoomed */
background-repeat: no-repeat;
filter:brightness(0.6) saturate(0.8);
}

.contentSection{
position:relative;
z-index:2;
background:url("../images/studio-bg.jpg") center/cover #000; /*background-size:110%;  slightly zoomed */
background-attachment:fixed ;
}


.spotlight{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;

/* dark overlay */
background:rgba(0,0,0,0.85);

/* spotlight hole */
mask-image:radial-gradient(
circle at center,
transparent 0%,
transparent 10%,
black 25%
);

-webkit-mask-image:radial-gradient(
circle at center,
transparent 0%,
transparent 10%,
black 25%
);

pointer-events:none;
}
/* MENU */

.menu-link{
    color: #bfbfbf;
transition:0.3s;
}

.menu-link:hover{
    color: #fff;
text-shadow:0 0 10px #ff00cc;
}

/* ACTIVE MENU */


.menu-link:hover, .menu-active{

}
nav a {
    color:white;
    padding:6px 20px;
    position:relative;
}

.menu-link:before, .menu-active::before{
content:"";
position:absolute;
left:0%;
top:5px;
width:100%;
height:27px;
/* MULTI COLOR LIGHT */
background:
linear-gradient(
70deg,
#3a3f68,
#f1c4f2,
#ffffff,
#ffffff,
#40e0d0,
#ff8c00,
#00ff95
);
/* MAKE IT OVAL */
border-radius:80%;
/* CUT TOP → creates arc */
mask-image:linear-gradient(to bottom, transparent 65%, black 100%);
-webkit-mask-image:linear-gradient(to bottom, transparent 65%, black 100%);
opacity:0;
transform:translateY(0px) scaleX(0.4);
transition:all .35s ease;
}
.menu-link:hover::before,
.menu-active::before{

opacity:1;
transform:translateY(5px) scaleX(1);

}
/* SOCIAL ICONS */

footer{
    background: url('../images/bg-footer.jpg') center center no-repeat;
    background-size: cover;
}
.footer-glass{
background:rgba(20,20,20,0.6);
backdrop-filter:blur(8px);

box-shadow:
0 -2px 10px rgba(0,0,0,0.6),
inset 0 1px 1px rgba(255,255,255,0.05);

position:relative;
}
.social img{
filter:grayscale(40%) brightness(0.7);
opacity:0.85;
transition:all 0.3s ease;
}
.social a:hover img{
transform:translateY(-2px) scale(1.1);

filter:
brightness(1.2)
drop-shadow(0 0 4px rgba(255,255,255,0.3))
drop-shadow(0 0 8px rgba(255, 255, 255, 0.4));

opacity:1;
}

/* PARTICLES LAYER */

#particles-js{

position:absolute;
width:100%;
height:100%;
z-index:1;

}
.bar {
    position: absolute;
    width: 24px;
    height: 2px;
    background: white;
    transition: all 0.4s ease;
}

/* Positions */
.bar.top { transform: translateY(-6px); }
.bar.middle { transform: translateY(0); }
.bar.bottom { transform: translateY(6px); }

/* ACTIVE STATE */
.menu-open .bar.top {
    transform: rotate(45deg);
}

.menu-open .bar.middle {
    opacity: 0;
}

.menu-open .bar.bottom {
    transform: rotate(-45deg);
}
#mobileMenu a {
    position: relative;
    color: #aaa;
    transition: 0.3s;
}

#mobileMenu a:hover, #mobileMenu a.menu-active {
    color: white; text-shadow: 0 0 10px #ff00cc, 0 0 20px #40e0d0;
}

.swiper .swiper-button-next,
.swiper .swiper-button-prev {
    color: #fff;
    width: 44px;
    height: 44px;
}

.swiper .swiper-button-next::after,
.swiper .swiper-button-prev::after {
    font-weight: bold;
    text-shadow: 0 0 8px rgba(0,0,0,0.8);
}

/* Optional: add subtle glow */
.swiper .swiper-button-next,
.swiper .swiper-button-prev {
    filter: drop-shadow(0 0 6px rgba(255,255,255,0.4));
}
/* Move dots down */
.swiper .swiper-pagination {
    position: relative;
    margin-top: 25px;
}

/* Default dot */
.swiper .swiper-pagination-bullet {
    background: #aaa;
    opacity: 0.6;
}

/* Active dot */
.swiper .swiper-pagination-bullet-active {
    background: linear-gradient(45deg, #ff4d00, #ff9900);
    height: 10px; width: 10px; border: 1px solid #fff;
    opacity: 1;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}