@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap");
@font-face {
  font-family: "Futura Std";
  src: url("/assets/fstdb-CI80j_BH.woff2") format("woff2"), url("/assets/fstdb-C9h8TDGa.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
* {
  font-family: "Nunito Sans", sans-serif;
}
html, body {
  margin: 0;
  padding: 0;
  color: #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
#myVideo {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
a {
  text-decoration: none;
  color: inherit;
}
section {
  position: relative;
  overflow: hidden;
}
.cta-buttons {
  gap: 10px;
  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;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
button {
  padding: 10px 20px;
  background-color: #c200c2;
  color: white;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  -webkit-transition: background 0.3s;
  -o-transition: background 0.3s;
  transition: background 0.3s;
}
button:hover {
  background-color: white;
  color: #000;
}
.title {
  font-family: "Futura Std", serif;
}
.hero-content {
  height: 100vh;
  padding: 0 20px;
  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;
  z-index: 1;
  position: relative;
  text-align: center;
}
.hero-content h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
}
.hero-content p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}
.about-section {
  padding: 50px;
  height: 100vh;
  text-align: center;
  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;
}
.about-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.about-section p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 15px;
  width: 80%;
}
.projects-section {
  padding: 50px;
  text-align: center;
  color: #fff;
  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: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.projects-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.category-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 30px;
  gap: 10px;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  flex-wrap: wrap;
}
.category-tabs button {
  padding: 10px 25px;
  font-size: 1rem;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  background-color: transparent;
  color: white;
  text-wrap: nowrap;
  white-space: nowrap;
  border: 1px solid white;
  border-radius: 5px;
  cursor: pointer;
  -webkit-transition: background 0.3s, color 0.3s;
  -o-transition: background 0.3s, color 0.3s;
  transition: background 0.3s, color 0.3s;
}
.category-tabs button.active {
  background-color: #c200c2;
  color: white;
}
.category-tabs button:hover {
  background-color: #e200e2;
}
.projects-gallery {
  display: -ms-grid;
  display: grid;
  gap: 20px;
}
.project-card {
  content-visibility: auto;
  background-color: rgba(34, 34, 34, 0.5019607843);
  padding: 20px;
  border-radius: 10px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  overflow: hidden;
}
.project-card * {
  text-align: center;
}
.project-card video {
  width: 100%;
  height: 250px;
}
.project-card:hover {
  -webkit-transform: scale(1.025);
  -ms-transform: scale(1.025);
  transform: scale(1.025);
}
.project-card div {
  background-color: black;
  border-radius: 10px;
}
.project-card img {
  max-width: 100%;
  height: 250px;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
  border-radius: 10px;
  display: block;
  margin: 0 auto;
}
.project-card h3 {
  margin-top: 15px;
  font-size: 1rem;
  padding: 5px;
}
.project-card p {
  font-size: 1rem;
  margin-top: 10px;
}
.project-card .tag {
  display: inline-block;
  margin-top: 10px;
  padding: 5px 10px;
  font-size: 0.9rem;
  background-color: #ff6347;
  color: white;
  border-radius: 5px;
}
.contact-section {
  padding: 25px;
  height: 100vh;
  text-align: center;
  gap: 25px;
  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-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.contact-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
footer {
  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;
}
.socials {
  width: 100%;
  gap: 10px;
  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;
}
.social-row {
  width: 100%;
  gap: 15px;
  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;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 10px;
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.preview-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  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;
  z-index: 9999;
}
.preview-content {
  position: relative;
  max-width: 80%;
  max-height: 80%;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.0549019608);
  padding: 20px;
  text-align: center;
}
.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #c200c2;
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  font-size: 1rem;
}
.close-btn:hover {
  background-color: #e200e2;
}
@media only screen and (min-width: 768px) {
  .preview-content img, .preview-content video {
    max-width: 100%;
    max-height: 600px;
  }
  .projects-gallery {
    grid-template-columns: repeat(auto-fit, minmax(30%, 1fr));
  }
}
@media only screen and (max-width: 768px) {
  * {
    font-size: 0.9125rem;
  }
  .preview-content img, .preview-content video {
    max-width: 100%;
    max-height: 100%;
  }
  .projects-gallery {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}