@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400..900;1,6..96,400..900&family=DM+Serif+Display:ital@0;1&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

 * {
    box-sizing: border-box;
 }

 body{
    margin: 0;
    font-family: "inter", sans-serif;
    color: #000;
 }

 :root {
    --primary-color: #020202;
    --primary-2-color: #0b5216;
    --accent-color: #000000;
    --footer-color: #efefef;


 }

.container {
    max-width: 1000px;
    margin-inline: auto;
    padding: 0 30px;
}

a {
    text-decoration: none;
    color: #000;
}

p {  
    line-height: 1.8;
}

nav{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    /* Layered background: dark translucent overlay + graffiti texture */
    background-image:
        linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
        url('img/graffiti.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 6px 40px -8px rgba(0, 0, 0, 0.5);
    padding: 20px 0;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    
}

nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

nav .left  {
    display:flex;
    align-items: center;
    gap: 60px;
}

nav .logo  {
    font-size: 24px;
    font-weight: bold;
    font-family: "Bodony Moda",serif;
}

nav .menu-items {
    display: flex;
    gap: 25px ;
    font-size: small;

}
nav .menu-items a, nav .logo a, nav .right a {
    color: #fff;
}
nav .menu-items a {
    position: relative;
    opacity: 0.95;
    transition: opacity 200ms ease;
}
nav .menu-items a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 2px;
    background: #fff;
    transition: width 200ms ease;
}
nav .menu-items a:hover {
    opacity: 1;
}
nav .menu-items a:hover::after {
    width: 100%;
}

.btn {
    background: var(--primary-color);
    padding: 10px 26px;
    border-radius: 999px;
    color: #fff;
    transition: all 250ms ease;
    font-weight: 700;
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow: 0 8px 20px -12px rgba(0,0,0,0.8);
}

.btn.light {
    border: 2px solid var(--primary-color);
    background: #fff;
    color: #000
}

.btn:hover{
    background: var(--primary-2-color);
}

.btn.light:hover {
    color:  #fff;
    background: var(--primary-color)
}

/* Header */

header {
    margin-top: 60px;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000000 ;
    background: url('img/SU.gif');
    mix-blend-mode: multiply;
    background-size: cover;
    background-repeat: no-repeat;
}


header h1 {
    font-size: 60px;
    color: #fff;
    background-color: transparent;
    padding: 10px;
    font-family: "DM Serif Display";

}

h2 {
    font-family: "DM Serif Display",serif;
    font-size: 40px;
    margin-top: 0;
}

/* AUDIO */

#custom-audio-player {
  display: flex;
  align-items: center;
  padding: 10px;
  background-color: #000000;
}

#playPauseBtn{
  padding: 8px 15px;
  background-color: #000000;
  color: rgb(255, 255, 255);
  border: none;
  cursor: pointer;
}

#playPauseBtn:hover {
    background-color: #292929;
    transform: scale(1.05);
}

#prevButton, #nextButton{
  padding: 8px 15px;
  background-color: #000000ef;
  color: rgb(255, 255, 255);
  border: none;
  cursor: pointer;
}

#prevButton:hover, #nextButton:hover{
    background-color: #292929;
    transform: scale(1.05);
}

#progressBar {
  flex-grow: 1;
} 

.volume-control{
    display: none;
}

/* About */ 



#about .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    
    
}

#about .left {
    flex: 1; 
    font-size: 30px;
    font-family: "DM Serif Display",serif;
}

#about .right  {
    flex: 2;
}



/* Collaborations */

#collaborations {
    background: var(--accent-color);
}
section {
    padding: 60px;
}

#collaborations h2{
    text-align: center;
    color: #fff;
}
.brands img {
    width: 100px;
    border-radius: 50%;

}
/*
@keyframes brands {
    from   {
        transform: translate();
    }
    to{
        transform: translate(-100%)
    }
    
}/* Slider */
.brands {
    display: flex;
    align-items: center;
    gap: 110px;
    justify-content: center;
    flex-wrap: wrap;
    /* animation: 10s brands infinite linear; */
    
} 

/* Mission & Vision Section */
#mission-vision .container {
    display:flex;
    align-items: center;
    gap: 30px;
}

#mission-vision img {
    height: 500px;
    border: 10px;
    object-fit: cover;
    border-radius: 3%;
}

#mission-vision .left,
#mission-vision .right {
    flex: 5;
}

#mission-vision .right {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.mission-section, .vision-section {
    margin-bottom: 20px;
}

/* Performance */

#performance .container {
    display:flex;
    align-items: center;
    gap: 30px;
}

#performance img {
    height: 500px;
    border: 10px;
    object-fit: cover;
    border-radius: 3%;
}

#performance .left,
#performance .right {
    flex: 5;
}

/* Portfolio */

#portfolio {
    text-align: center;
}

#portfolio .btn-container {
    margin: 30px 0;
    display: flex;
    gap: 30px;
    justify-content: center;

}

/* footer */

footer {
    background: var(--primary-color);
    padding: 30px 0;
      background-image:
        linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
        url('img/graffiti.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 6px 40px -8px rgba(0, 0, 0, 0.5);
    padding: 20px 0;
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    
}
footer .container{
    background-color: #0000005f;
    border-radius: 25px;
}

footer .icon svg{
    height: 40px;
    color: #fff;
    margin-bottom: 15px;
}

footer .address{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 40px;
}

footer .contact-item{
    line-height: 1.8;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

footer .label  {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 5px;
}

footer .info {
    margin-bottom: 10px;
    opacity: 0.8;
}

footer .value  {
    font-weight: bold;
}

footer .container {
    color: #ffffff;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 20px;
    font-size: 14px;
    opacity: 0.8;
}

.mobile-menu,
.menu-icon {
    display: none;
    
}

.mobile-menu.active{
    display: block;
    position: fixed;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.7), rgba(0,0,0,0.7)),
        url('img/graffiti.jpg');
    background-size: cover;
    background-position: center;
    color: #ffffff;
    top: 100px;
    right: 20px;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

.mobile-menu .mobile-menu-items{
    display: flex;
    flex-direction: column;
    gap: 16px;
    

}

@media (max-width: 700px) {
    nav .menu-items,
    nav .right .btn {
        display: none;
    }
    nav .menu-icon svg{
        width: 30px;
        
    }

    nav .menu-icon{
        display: block;
        padding: 3px;
        cursor: pointer;
        
    }
    
    footer .address {
        flex-direction: column;
        gap: 30px;
    }
}

/* Elevated CTA on navbar */
nav .right .btn {
    background: #ffffff;
    color: #000;
}
nav .right .btn:hover {
    box-shadow: 0 0 12px rgba(255,255,255,0.6);
    transform: translateY(-1px);
}


.mobile-menu .mobile-menu-items a { color: #fff; }

/* === Mobile-first improvements === */

/* 1) Fluid images and safer defaults */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* 2) Tighter section spacing on small screens */
section { padding: 36px 18px; }
.container { padding: 0 18px; }

/* 3) Header scales better on phones */
header { height: 86vh; }
header h1 { font-size: clamp(28px, 7vw, 48px); }

/* 4) Global type scale */
h2 { font-size: clamp(24px, 6vw, 40px); }

/* 5) Make complex two-column areas stack on tablets/phones */
@media (max-width: 900px) {
  #about .container,
  #mission-vision .container,
  #performance .container {
    flex-direction: column;
    align-items: flex-start;
  }

  #about .left { font-size: 26px; }

  /* Mission & Vision image should shrink naturally */
  #mission-vision img,
  #performance img {
    width: 100%;
    height: auto;            /* replaces fixed 500px height */
    border-radius: 12px;
  }

  /* Center text blocks a bit on narrower screens */
  #mission-vision .right,
  #performance .left { width: 100%; }
}

/* 6) Audio player: wrap nicely and give fat tap targets */
#custom-audio-player {
  gap: 10px;
  flex-wrap: wrap;
}
#custom-audio-player button {
  padding: 12px 16px;
  border-radius: 10px;
}
#progressBar,
#volumeControl {
  width: 100%;
  margin: 0;
}

/* 7) Brand row: reduce gap & logo size on phones */
@media (max-width: 700px) {
  .brands { gap: 20px; }
  .brands img { width: 72px; }
}

/* 8) Footer columns -> single column stack earlier */
@media (max-width: 900px) {
  footer .address {
    flex-direction: column;
    gap: 20px;
  }
}

/* 9) Navigation & mobile menu polish */
nav { z-index: 1000; }
.mobile-menu.active {
  z-index: 1100;
  right: 12px;
  left: 12px;            /* stretch nicely on small screens */
  top: 78px;             /* just below the fixed nav */
}
.mobile-menu .mobile-menu-items a {
  font-size: 16px;
}

/* 10) Make desktop nav breathe a bit less on small devices */
@media (max-width: 700px) {
  nav { padding: 12px 0; }
}

/* 11) Portfolio CTA buttons: full-width on phones */
@media (max-width: 600px) {
  #portfolio .btn-container {
    flex-direction: column;
    gap: 14px;
  }
  #portfolio .btn-container .btn {
    width: 100%;
    text-align: center;
  }
}


