/* ===========================
   Global Reset
=========================== */

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding-top: 75px;
}

* {
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-top: 0;
}


/* ===========================
   Navbar
=========================== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;

  width: 100%;
  z-index: 9999;
  background-image: url("../assets/banner.jpg");
  outline: 2px solid black;
  height: 75px;
}

.navbar-logo {
  position: relative;
  background-color: #000000;
  color: #fff;
  font-family: "Audiowide", sans-serif;
  font-weight: 400;
  font-style: normal;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  /* padding: 1rem; */
  text-decoration: none;
}

#logo-holder {
  position: relative;
  width: 250px;
  height: 75px;
  overflow: visible;
  transition: width 0.75s ease-in-out;
  /* move transition here */
}

#logo-holder .image {
  width: 75px;
  height: 75px;
  transition: opacity 0.75s ease-in-out;
  opacity: 0;
}

#logo-holder .txt {
  font-family: "Audiowide", sans-serif;
  font-size: 30px;
  font-weight: 400;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
  transition: opacity 1s ease-in-out;
  text-shadow: none;
}

#logo-holder.scrolled {
  transition: width 0.75s ease-in-out;
  width: 75px;
  height: 75px;
}

#logo-holder.scrolled .image {
  transition: opacity 0.75s ease-in-out;
  opacity: 1;
}

#logo-holder.scrolled .txt {
  transition: opacity 0.25s ease-in-out;
  opacity: 0;
}

/* Angled line for navbar */
.navbar-logo::after {
  content: "";
  position: absolute;
  top: 0;
  right: -35px;
  width: 35px;
  height: 100%;
  background-color: #000000;
  clip-path: polygon(0 0, 100% 0, 60% 100%, 0% 100%);
}

.navbar-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar-link {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 1rem;
  padding-left: 45px;
  text-decoration: none;
  color: #fff;
  font-family: "Audiowide", sans-serif;
  font-weight: 400;
  font-size: 30px;
  font-style: normal;
  transition: color 0.3s;
}

.navbar-link:hover {
  color: #000;
}

.navbar-link:active {
  background-color: #737373;
}


/* ===========================
   Fade Animation
=========================== */

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* ===========================
   Paragraph Block
=========================== */

.main-paragraph {
  background-color: #00000098;
  font-family: Trebuchet, sans-serif;
  font-size: clamp(16px, 4vw, 24px);
  line-height: 1.6;
  font-weight: 400;
  color: rgb(255, 250, 250);
  height: 100vh;
  width: 100%;
}

.main-paragraph h2 {
  opacity: 0;
  animation: fadeIn 4s forwards;
}

.main-paragraph a {
  color: white;
  text-decoration: none;
}

.main-paragraph a:hover {
  color: #ff0000;
}

/* ===========================
   Footer
=========================== */

.footer {
  border-style: solid;
  border-image: linear-gradient(to right, #212121, rgb(255, 0, 0)) 1;
  background-color: #212121;
  text-align: center;
  color: white;
  font-family: 'Gill Sans', Calibri, 'Trebuchet MS', sans-serif;
  min-height: 40px;
}

.footer p {
  margin: 0;
}

.footer a {
  color: white;
  text-decoration: none;
}

.footer a:hover {
  color: #ff0000;
}

/* ===========================
   Slideshow
=========================== */

.slideshow-container {
  max-width: 2000px;
  position: relative;
  margin: auto;
}

.mySlides {
  display: none;
}

.mySlides img {
  width: 100%;
  border: 3px solid #6b6b6b;
  border-radius: 8px;
}

.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  border-radius: 0 3px 3px 0;
  transition: 0.6s ease;
  user-select: none;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.text,
.numbertext,
.text-cent {
  color: #f2f2f2;
  background-color: #00000098;
  font-family: Trebuchet, sans-serif;
  font-size: 30px;
  padding: 8px 12px;
  position: absolute;
  width: 100%;
}

.text {
  top: 8px;
  text-align: center;
}

.text-cent {
  top: 5%;
  text-align: left;
}

.numbertext {
  top: 0;
}

.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.dot:hover,
.active {
  background-color: #717171;
}

/* ===========================
   Portfolio page
=========================== */
.portfolio-main-content {
  margin: 0;
  padding: 0;
  background-color: #212121;
  outline: 2px solid rgb(233, 0, 0);
  background-size: cover;
  min-height: auto;

}

.portfolio-main-content p {
  color: #fff;
  font-size: 30px;
  font-family: 'Gill Sans', Calibri, 'Trebuchet MS', sans-serif;
  font-weight: 400;
  text-align: left;
  padding: 20px;
}

.portfolio-main-content h1 {
  border-style: solid;
  border-image: linear-gradient(to right, #212121, rgb(255, 0, 0)) 1;
  color: #fff;
  font-family: "Audiowide", sans-serif;
  font-weight: 400;
  text-align: center;
}

#links {
  display: grid;
  grid-template-columns: repeat(4, max-content);
  gap: 20px;
  padding: 20px;

  justify-items: center;
  background-color: #212121;
}

#links img {
  width: 300px;
  box-shadow: 5px 5px #212121;
  transition: box-shadow 0.6s ease;
}

#links img:hover {
  box-shadow: 6px 6px lightgray;
  transition: box-shadow 0.6s ease;
}

.wrapper {
  position: relative;
}

.wrapper p {
  width: 100%;
  font-family: Trebuchet, sans-serif;
  font-size: large;
  font-weight: 400;
  color: rgb(255, 255, 255);
  text-align: center;
  background-color: #21212198;
  transition: background-color 0.6s ease;
  transition: color 0.6s ease;
  position: absolute;
  bottom: 10px;
  left: 10px;
}

#links a {
  display: inline-block;
}

/* ===========================
   About page
=========================== */
.about-main-content {
  margin: 0;
  padding: 0;
  background-color: #212121;
  min-height: calc(100vh - 100px);
  outline: 2px solid rgb(233, 0, 0);
  background-size: cover;
}

.about-main-content p {
  color: #fff;
  font-size: 30px;
  font-family: 'Gill Sans', Calibri, 'Trebuchet MS', sans-serif;
  font-weight: 400;
  text-align: left;
  padding: 20px;
}

.about-main-content h1 {
  border-style: solid;
  border-image: linear-gradient(to right, #212121, rgb(255, 0, 0)) 1;
  color: #fff;
  font-family: "Audiowide", sans-serif;
  font-weight: 400;
  text-align: center;
}

.team-container {
  padding: 20px;
  display: grid;
  grid-template-rows: 100px 100px;
  /* Defines two rows: 100px and 200px high */
  row-gap: 10px;
  /* Adds a 10px gap between rows */
}

.team-item {
  display: grid;
  grid-template-columns: 25% 75%;
  column-gap: 10px;
}

/* ===========================
   Contact Page
=========================== */
.contact-main-content {
  margin: 0;
  padding: 0;
  background-color: #212121;
  min-height: calc(100vh - 100px);
  outline: 2px solid rgb(233, 0, 0);
  background-size: cover;
}

.contact-main-content p {
  color: #fff;
  font-size: 30px;
  font-family: 'Gill Sans', Calibri, 'Trebuchet MS', sans-serif;
  font-weight: 400;
  text-align: left;
  padding: 20px;
}

.contact-main-content h1 {
  border-style: solid;
  border-image: linear-gradient(to right, #212121, rgb(255, 0, 0)) 1;
  color: #fff;
  font-family: "Audiowide", sans-serif;
  font-weight: 400;
  text-align: center;
}

form {
  border-radius: 5px;
  background-color: #f2f2f2;
  padding: 20px;
}

label {
  display: block;
  color: #212121;
  font-size: 30px;
  font-family: 'Gill Sans', Calibri, 'Trebuchet MS', sans-serif;
  font-weight: 400;
  text-align: left;
}

input[type=email],
textarea {
  width: 100%;
  padding: 12px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  color: #212121;
  font-size: 15px;
  font-family: 'Gill Sans', Calibri, 'Trebuchet MS', sans-serif;
  font-weight: 400;
  text-align: left;
}

button[type=submit] {
  background-color: #b3b3b3;
  padding: 14px;
  margin: 8px 0;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  color: #212121;
  font-size: 30px;
  font-family: 'Gill Sans', Calibri, 'Trebuchet MS', sans-serif;
  font-weight: 400;
  text-align: left;
}

button[type=submit]:hover {
  background-color: #dbdbdb;
}

/* ===========================
   Order page
=========================== */
.order-main-content {
  margin: 0;
  padding: 0;
  background-color: #212121;
  min-height: calc(100vh - 100px);
  outline: 2px solid rgb(233, 0, 0);
  background-size: cover;
}

.order-main-content p {
  color: #fff;
  font-size: 30px;
  font-family: 'Gill Sans', Calibri, 'Trebuchet MS', sans-serif;
  font-weight: 400;
  text-align: left;
  padding: 20px;
}

.order-main-content h1 {
  border-style: solid;
  border-image: linear-gradient(to right, #212121, rgb(255, 0, 0)) 1;
  color: #fff;
  font-family: "Audiowide", sans-serif;
  font-weight: 400;
  text-align: center;
}

.order-main-content a {
  color: white;
  text-decoration: none;
  transition: color 0.6s ease;
}

.order-main-content a:hover {
  color: rgb(250, 0, 0);
  transition: color 0.6s ease;
}

@media (max-width: 768px) {

  /* More breathing room */
  .main-paragraph {
    padding: 20px;
    margin: 25px 10px;
  }

  /* Navbar easier to tap */
  .navbar-link {
    font-size: 20px;
    padding: 15px;
  }

  /* Footer spacing fix */
  .footer {
    margin-top: auto;
  }

  .parallax {
    background-attachment: fixed;
  }
}