@import url('https://fonts.googleapis.com/css2?family=Abel&family=Bangers&family=Permanent+Marker&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');/* General Styles */

:root {
  --black: #121212;
  --white: #FFFFFF;
}

*{
  max-width: 100vw;
  box-sizing: border-box;
}

body, html {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  width: 100vw;
  background-color: var(--black);
  color: var(--white);
  font-family: 'Abel', sans-serif;
  font-size: 18px;
  line-height: 1.5;
}

h2 {
  font-family: 'Permanent Marker', sans-serif;
  font-size: 48px;        
  z-index: 1;
}

.bangers-xl {
  font-family: 'Bangers', sans-serif;
  font-size: 100px;
}

.bangers-sm {
  font-family: 'Bangers', sans-serif;
  font-size: 28px;
  font-style: normal;
  display: inline-block; 
  transform: skew(-10deg);
  font-size: 28px;
  font-style: normal;
  display: inline-block; 
  transform: skew(-10deg);
}

/* Nav bar */
nav {
  position: fixed;
  font-family: 'Abel', 'sans-serif';
  letter-spacing: 1.5px;
  width: 100%;
  font-size: clamp(0.75rem, 1.2vw, 2rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  z-index: 999;
  background-color: rgb(40, 37, 37);
  color: black;
}

.nav-logo{
  width: auto;
  font-family: 'Permanent Marker';
  font-size: 1.9vw;
}

.nav-menu{
  display: none;
}

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


.nav-links-desktop {
  display: flex;
  justify-content: center;
  gap: 8vw;
  flex: 1;
}

.shop-button{
  margin-left: auto;
  border: white solid 2px;
  border-radius: 35px;
  padding: 0.4rem 1.4rem;
}

.shop-button:hover{
  background-color: white;
  color: black;
}

.nav-links-desktop a:hover{
  color: #d5e2ed;
}


nav a:not(.contact-button) {
  text-decoration: none;
  color: white;
  font-weight: 600;
}

nav.scrolled {
  background-color: rgba(10, 20, 40, 0.6); 
  backdrop-filter: blur(10px);
  border: white 0.5px solid;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.nav-menu, .sidebar{
  display: none;
}

/* Mobile view adjustments */
@media (max-width: 768px) {
  .nav-links-desktop, .nav-button-desktop{
    display: none;
  }

  .nav-menu {
    display: block; 
    font-size: 1.8rem;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
  }

  .sidebar .nav-links{
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
    margin-top: 2.5rem;
  }


  .sidebar{
    position: fixed;
    top: 0;
    right: -40vw;
    width: 40vw;
    height: 100%;
    background-color: rgba(0, 0, 0);
    padding: 2rem;
    transition: right 0.3s ease-in-out;
    z-index: 2000;
    font-family: 'Montserrat Alternates', sans-serif;
    color: white;
    text-decoration: none;
  }

  .sidebar.active{
    right: 0 !important;
    display: block !important;
  }

  .close-sidebar{
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    position: absolute;
    top: 1rem;
    right: 2rem;
    cursor: pointer;
    z-index: 1100;
  }

  .sidebar a{
    color: white;
    text-decoration: none;
    font-weight: 600;
  }

  .sidebar a:hover{
    color: #d5e2ed;
    text-decoration: none;
  }

  .shop-button{
    margin-right: 3vw;
    padding: 0.4rem 0.9rem;
  }

  .nav-logo{
    font-size: 3.5vw;
  }
}

/* Hero */

/* About */
#about-section {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  padding: 2rem 5vw;
  align-items: center;
  justify-content: center;
  min-height: 100vh; 
}

.about-left {
  flex: 2 1 40%;
  min-width: 280px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-left img {
  max-width: 100%;
  height: auto;
  border-radius: 8px; 
}

.about-right {
  flex: 1 1 40%;
  min-width: 280px;
}

.badge {
  font-family: 'Bangers', sans-serif;
  font-size: 28px;
  font-size: 1.5rem;
  color: #7FDDFF;
}

.about-right h2 {
  margin-top: 0;
  margin-bottom: 2px;
  font-size: 3.2rem;
}

.typing-header {
  overflow: hidden;
  white-space: nowrap;
  display: inline-block;
  width: 0;
}

.typing-header.start-typing {
  animation: typing 1.5s steps(14, end) forwards;
}

@keyframes typing {
  from { width: 0 }
  to { width: 14ch } 
}

/*.about-right.start-typing{
  animation: typewriter 1.5s steps(14, end) forwards;
}

@keyframes typewriter {
  from { width: 0 }
  to { width: 14ch } 
}*/

.about-right p {
  font-size: 1rem;
  line-height: 1.5;
  max-width: 50ch;
}

@media (max-width: 768px) {
  #about-section {
    flex-direction: column;
    text-align: center;
  }

  .about-right {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .about-right p {
    max-width: 80ch;
  }

    .about-right h2 {
    text-align: center;
  }

  .about-right p {
    text-align: center;
  }

}


/* Gallery */
#gallery {
  margin-top: 0px;
  padding: 60px 0;
  text-align: center;
}

#gallery h2 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  margin-top: 0px;
  color: white;
  overflow: hidden;
  white-space: nowrap;
  display: inline-block;
  width: 0;
}

.gallery-header.start-typing{
  animation: typewriter 1.5s steps(11, end) forwards;
}

@keyframes typewriter {
  from { width: 0 }
  to { width: 11ch } 
}

.scrolling-gallery {
  overflow: hidden;
  position: relative;
  max-width: 85vw;
  margin: 0 auto;
}

.scroll-track {
  display: flex;
  gap: 5vw;
  width: max-content;
  /* animation: scroll-left 9s linear infinite; */
  will-change: transform;
}

.gallery-card {
  flex: 0 0 auto;
  height: 60vh;   
  width: auto;                 
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  padding: 0.6rem;
  border-radius: 15px;
  transition: transform 0.3s ease;
  overflow: hidden;
}

.gallery-card img {
  height: 100%;                    
  width: auto;                     
  object-fit: contain;
  transition: transform 0.3s ease;
  border-radius: 15px;
}


.gallery-card:hover {
  transform: scale(1.03);
}

.scrolling-gallery:hover .scroll-track {
  animation-play-state: paused;
}

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

@media (max-width: 768px) {
  .gallery-card{
    max-height: 50vw;
  }
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  background-image: url('assets/graffiti-bg.png'); /* Use your actual path */
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 5%;
  color: white;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6); /* dark overlay for contrast */
  z-index: 1;
}

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

.hero-content h1 {
  font-family: 'Impact', 'Anton', sans-serif; /* or any bold display font */
  font-size: 5rem;
  line-height: 1.1;
  font-weight: 900;
  color: transparent;
  background-image: url('assets/blue-texture.jpg');
  -webkit-background-clip: text;
  background-clip: text;
  text-transform: uppercase;
  letter-spacing: 1px;
}


/* Process */
#process {
  padding: 60px 0;
  text-align: center;
}

.typing-header {
  font-size: 3.5rem;
  margin-top: 0.2rem;
  margin-bottom: 40px;
  overflow: hidden;
  white-space: nowrap;
  display: inline-block;
  width: 0;
}

.typing-header.start-typing {
  animation: typing 1.5s steps(14, end) forwards;
}

@keyframes typing {
  from { width: 0 }
  to { width: 14ch } 
}

.video-section {
  padding: 2rem;
}

.video-container {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.video-container video {
  width: 30%;
  aspect-ratio: 9/16;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  .video-container video {
    width: 100%;
    padding-left: 4rem;
    padding-right: 4rem;
  }
}


/*Footer*/
.site-footer {
  background-color: #222222;
  color: #eee;
  text-align: center;
  padding: 2rem 1rem;
  font-size: 15px;
  font-family: 'Abel', sans-serif;
}

.footer-icons {
  margin-top: 0rem;
}

.footer-icons a {
  color: #eee;
  text-decoration: none;
  font-size: 1.8rem; 
  margin: 0 1rem;
  transition: color 0.3s ease;
}

.footer-icons a:hover {
  color: #bbb;
}

