* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  scroll-margin-top: 78px;
  -webkit-tap-highlight-color: transparent;
}

h1 {
  font-size: 80px;
  font-weight: 900;
}

h2 {
  font-size: 42px;
  font-weight: 900;
  text-transform: uppercase;
}

p {
  font-size: 15px;
  color: white;
  opacity: 0.8;
}

body {
  background: rgb(26, 26, 26);
  color: white;
  line-height: 1.5;
}

/* ------------------------------ HEADER ----------------------------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
header.sticky {
  background-color: #151515;
  background-color: black;
}
header.sticky .header-content {
  padding: 15px 25px;
}
header .header-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 25px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
header .header-content nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
header .header-content nav.no-transition {
  -webkit-transition: none !important;
  transition: none !important;
}
header .header-content nav a {
  text-decoration: none;
  color: white;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: bold;
}
header .logo {
  font-weight: 900;
  color: white;
  font-size: 22px;
  text-decoration: none;
}

#close-menu,
#open-menu {
  display: none;
  cursor: pointer;
}

/* ------------------------------ MAIN ----------------------------- */
main {
  opacity: 0;
  -webkit-animation: fadeIn 1s ease-in-out forwards;
          animation: fadeIn 1s ease-in-out forwards;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* ------------------------------ HERO ----------------------------- */
.hero {
  min-height: 0;
  height: auto;
  padding: 0;
}


.hero .hero-content {
  background: none;
  padding: 0;
}
.hero .hero-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  height: 100%;
  color: white;
  gap: 25px;
  padding: 20px;
  padding-top: 76px;
}
.hero .title {
  margin-bottom: 0;
  gap: 0;
}
.hero video {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero p {
  font-size: 24px;
  
}

/* ------------------------------ BUTTON ----------------------------- */
.btn {
  display: inline-flex;              /* 👈 key fix */
  align-items: center;               /* vertical centre */
  justify-content: center;           /* horizontal centre */

  text-decoration: none;
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: rgba(255, 255, 255, 0.9);

  padding: 12px 17px;
  min-width: 125px;

  text-align: center;
  transition: 0.3s;
  font-weight: 500;
  cursor: pointer;
}
.btn.dark {
  border-color: black;
  color: black;
}
.btn:hover {
  background-color: rgb(162, 94, 55);
  border-color: rgb(162, 94, 55);
  color: white;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-size: 17px;
  padding: 16px 28px;
  min-width: 170px;

  margin-left: 10px;

  background-color: transparent;
  border: 2px solid white;
  color: white;

  font-weight: 700;

  /* 👇 permanent highlight */
  box-shadow: 0 0 16px rgba(162, 94, 55, 0.8);
}

.btn-primary:hover {
  background-color: rgb(162, 94, 55);
  border-color: rgb(162, 94, 55);
  color: white;

  
}

.btn-small {
  font-size: 13px;
  padding: 8px 12px !important;
  min-width: auto;
  font-weight: 500;
}

@keyframes showreelPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(162, 94, 55, 0);
  }
  50% {
    box-shadow: 0 0 12px 2px rgba(162, 94, 55, 0.6);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(162, 94, 55, 0);
  }
}


/* ------------------------------ TITLE ----------------------------- */
.title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  margin-bottom: 45px;
  text-transform: uppercase;
}
.title p {
  text-transform: none;
  max-width: 700px;
  margin: 0 auto;
}

/* ------------------------------ CONTAINER ----------------------------- */
.container-full {
  padding: 0 20px;
}

.container {
  padding: 60px 0;
  max-width: 1240px;
  margin: 0 auto;
  border-bottom: 1px solid rgb(51, 51, 51);
}
.container.borderless {
  border: none;
}

/* ------------------------------ ABOUT ----------------------------- */
.about {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 45px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.about img {
  width: 70%;
  height: auto;
  border-radius: 12px; /* optional, looks nicer */

  margin-top: 40px; /* 👈 pushes it down */
}

.about-logo {
  display: block;
  max-width: 900px;   /* controls size */
  width: 100%;
  margin-bottom: 20px;
  opacity: 0.9;       /* optional, looks nicer */
}

.about .about-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 20px;
}

.buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}

/* ------------------------------ WORKS ----------------------------- */
.works {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 45px;
}
.works .work-item {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-decoration: none;
}
.works .work-item:hover {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
  -webkit-box-shadow: 0px 0px 2px rgb(233, 233, 233);
          box-shadow: 0px 0px 2px rgb(233, 233, 233);
}
.works a {
  display: block;
  font-size: 0;
}
.works img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  aspect-ratio: 16/10;
  height: auto;
  margin: 0;
}
.works .work-desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  padding: 20px;
  background-color: rgb(34, 34, 34);
}
.works .work-title {
  font-weight: bold;
}

/* ------------------------------ CREDITS ----------------------------- */
.credits {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
.credits .credits-text {
  max-width: 800px;
  font-size: 45px;
}

/* ------------------------------ CONTACT ----------------------------- */
.bg-dark {
  background-color: #151515;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(26, 26, 26)), to(rgba(26, 26, 26, 0.6))), url("../assets/images/pedalboard-4725871_1280.jpg");
  background-image: linear-gradient(rgb(26, 26, 26), rgba(26, 26, 26, 0.6)), url("../assets/images/pedalboard-4725871_1280.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 20px;
}

form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
  background: #000000;
  padding: 25px;
  -webkit-box-shadow: 0px 0px 10px rgb(26, 26, 26);
          box-shadow: 0px 0px 10px rgb(26, 26, 26);
}
form .btn {
  margin-top: 10px;
  font-family: inherit;
  font-size: 16px;
}

input,
textarea {
  width: 100%;
  border: none;
  background-color: transparent;
  color: white;
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
  padding: 10px;
  font-size: 16px;
  font-family: inherit;
  outline: none !important;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  border: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
  -webkit-text-fill-color: #f1f1f1;
  -webkit-box-shadow: 0 0 0px 1000px #000000 inset;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}

::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}

::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}

:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}

::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}

::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/* ------------------------------ FOOTER ----------------------------- */
footer {
  background-color: #151515;
  background-color: black;
}
footer .footer-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 30px 20px;
  padding-bottom: 0px;
}
footer .copyright {
  padding: 20px;
  text-align: center;
}

/* ------------------------------ MEDIA QUERIES ----------------------------- */
@media screen and (max-width: 1024px) {
  h1 {
    font-size: 48px;
  }
  h2 {
    font-size: 32px;
  }
  #close-menu,
  #open-menu {
    display: block;
  }
  #close-menu {
    position: absolute;
    top: 25px;
    right: 25px;
  }
  header.sticky #close-menu {
    top: 18px;
    right: 25px;
  }
  header .header-content nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 20px;
    background-color: #151515;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  header .header-content nav a {
    color: white;
    font-size: 18px;
  }
  header .header-content nav.active {
    opacity: 1;
    pointer-events: all;
  }
  .container {
    padding: 40px 0;
  }
  .works {
    margin-bottom: 0;
  }
  .about {
    gap: 25px;
    grid-template-columns: 1fr 1fr;
  }
  .about img {
    height: 100%;
  }
  * {
    scroll-margin-top: 63px;
  }
  .hero {
    height: 100svh;
  }
}
@media screen and (max-width: 768px) {
  .hero p {
    font-size: 20px;
  }
  .about {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .works {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .container {
    padding: 30px 0;
  }
  .bg-dark {
    padding: 40px 20px;
  }
  .bg-dark .container {
    padding: 0;
  }
  .title {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 600px) {
  h1 {
    font-size: 32px;
  }
  h2 {
    font-size: 24px;
  }
}/*# sourceMappingURL=styles.css.map */