.special-gothic-expanded-one-regular {
  font-family: "Special Gothic Expanded One", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  max-width: 100%;
}

html {
   scroll-behavior: smooth;
}

body {
    background-color: rgb(20, 19, 19);
}


.montserrat {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
}




/* SLOGAN */

.slogan {
  padding-top: 4rem;
  padding-bottom: 4rem;
  margin: 1rem;
    font-family: "Special Gothic Expanded One", sans-serif;
    font-size: 4rem;
    color: white;
}

/*GALLERY*/
.grid-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding: 80px 20px;

}

/*ABOUT*/

.about-title {
color: white;
font-family: "Special Gothic Expanded One", sans-serif;
text-transform: uppercase;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 60px;
  width: 100%;
  max-width: 900px;
  justify-self: start; 
  margin-bottom: 40px;
}

.about-txt, .txt {
    color: white;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    padding-bottom: 3rem;
}

.about {
  padding: 80px 20px;
  max-width: 900px;
  margin: 0 auto; 
}

.about-details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

/* image */
.about-img img {
  width: 100%;
  height: auto;
  display: block;
}

/* text column */
.about-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 1rem;
}


.cv_bttn {
    background-color: rgba(236, 30, 39, 1);
    font-family: "Special Gothic Expanded One", sans-serif;
    text-decoration: none ;
    color: white;
    max-width: 12rem !important;
    border-radius: 50px;
    text-align: center;
    padding-top: 1rem;
     padding-bottom: 1rem;
}


/*BANNER*/
.banner {
  padding: 10px 0;
  background-color: rgba(236, 30, 39, 1);
  overflow: hidden;
  white-space: nowrap;
}

.banner-track {
  display: inline-block;
  animation: scroll 10s linear infinite;
}

.banner-track span {
  display: inline-block;
  margin-right: 2em;
  font-family: "Special Gothic Expanded One", sans-serif;
  font-size: 3rem;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.footer {
background-color: rgba(236, 30, 39, 1);
padding-top: 3rem;
padding-bottom: 3rem;
 width: 100%;
}


.links {
  display: grid;
  grid-template-columns: repeat(2, 1fr); 
  gap: 20px; 
  justify-items: center; 
  align-items: center; }

.links img {
  width: 3r0rem; 
  height: auto;
}

.footer-txt {
   font-family: "Montserrat", sans-serif;
   color: white;
   font-size: 2rem;
   text-align: center;
   padding-bottom: 2rem;
}




nav {
  background-color:rgb(20, 19, 19) ;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  width: 80px;
}

/* HAMBURGER */
.hamburger {
  width: 30px;
  height: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  height: 3px;
  background: white;
  transition: 0.3s;

}

/* FULLSCREEN MENU */
.ham {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgb(20, 19, 19);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;

  transform: translateX(-100%);
  transition: transform 0.4s ease;
  z-index: 1000;
}

/* ACTIVE STATE (slide in) */
.ham.active {
  transform: translateX(0);
}

/* LINKS */
.ham a {
  font-size: 1.5rem;
  font-weight: 100;
  text-decoration: none;
  color: white;
  font-family: "Montserrat", sans-serif;
  text-transform:uppercase;
  
}

/* MOBILE MENU */
/* .nav-links.active {
  display: flex; 
  flex-direction: column;
  gap: 40px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgb(20, 19, 19);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}


.nav-links {
  display: none;
   display: none;
  transition: all 0.3s ease;
} */

