/*FONT FACE*/
/********************************************************************/
@font-face {
  font-family: "Montserrat";
  font-weight: 700;
  src: url("ttf/Montserrat-Bold.otf") format("opentype");
}

@font-face {
  font-family: "Montserrat";
  font-weight: 300;
  src: url("ttf/Montserrat-Light.otf") format("opentype");
}

@font-face {
  font-family: "Montserrat";
  font-weight: 400;
  src: url("ttf/Montserrat-Regular.otf") format("opentype");
}

@font-face {
  font-family: "Montserrat";
  font-weight: 300;
  src: url("ttf/Montserrat-Thin.otf") format("opentype");
}

/********************************************************************/
/*///////////////////////////////////////////////////////*/
/*///////////////////////////////////////////////////////*/
/*///////////////////////////////////////////////////////*/

/********************************************************************/
/*UNIVERSAL SELECTOR*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  font-weight: 100;
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: transparent;
}

/********************************************************************/
html {
  scroll-behavior: smooth;
  height: 100%;
  margin: 0;
  box-sizing: border-box;
}

/********************************************************************/
*:focus {
  outline: none;
}

/********************************************************************/
/*HIGHLIGHTING PAGE CONTENTS*/
::selection {
  background: black;
  color: white;
}

/********************************************************************/
::-moz-selection {
  background: black;
  color: #000000;
}

/********************************************************************/
/*LINKS*/
a {
  text-decoration: none;
  cursor: pointer;
}

/********************************************************************/
/*SCROLLBAR*/
::-webkit-scrollbar {
  width: 5px;
}

/********************************************************************/
/* TRACK */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px black;
  background-color: rgb(141, 141, 141);
}

/********************************************************************/
/* HANDLE */
::-webkit-scrollbar-thumb {
  background: #000000;
}

/********************************************************************/
/* HANDLE ON HOVER */
::-webkit-scrollbar-thumb:hover {
  background: rgb(46, 0, 0);
}

/********************************************************************/

/* SECTIONS & HEADINGS */
section {
  margin-top: -100px;
  padding: 80px 0;
}

h2 {
  font-size: 32px;
  margin-bottom: 20px;
  margin-top: -50px;
  font-weight: 700;
  text-align: center;
  margin-top: 0;
  color: #202020;
}

h3 {
  font-size: 20px;
  color: #666;
  text-align: center;
}

/*HEADER x NAV */
.header {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 100vh;
  background: url("../Images/Header.gif") no-repeat center center/cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
}

/********************************************************************/
nav {
  position: absolute;
  background-color: #0000009a;
  backdrop-filter: blur(10px);
  top: 0;
  width: 100%;
  padding: 0;
  z-index: 1000;
}

/********************************************************************/
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/********************************************************************/
.nav-logo img {
  max-height: 50px;
  width: auto;
}

/********************************************************************/
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

/********************************************************************/
.hamburger-line {
  display: block;
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 5px 0;
  transition: 0.3s;
}

/********************************************************************/
nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

/********************************************************************/
nav ul li {
  display: inline;
}

/********************************************************************/
nav ul li a {
  text-decoration: none;
  color: white;
  font-weight: normal;
  padding: 10px;
  transition: 0.3s;
  display: block;
}

/********************************************************************/
nav ul li a:hover {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
}

/********************************************************************/
.header-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1.5rem;
  width: 100%;
}

.header-content .large-logo {
  max-width: 500px;
  height: auto;
}

/********************************************************************/
.header-content p {
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 2px;
  background-color: #00000067;
  padding: 10px 10px;
}

/********************************************************************/
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  /********************************************************************/
  .nav-container {
    flex-direction: row-reverse;
  }

  /********************************************************************/
  nav ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    flex-direction: column;
    background-color: #0000009a;
    backdrop-filter: blur(10px);
    padding: 1rem;
    gap: 0;
  }

  /********************************************************************/
  nav ul.active {
    display: flex;
  }

  /********************************************************************/
  nav ul li {
    width: 100%;
  }

  /********************************************************************/
  nav ul li a {
    padding: 1rem;
    display: block;
    text-align: center;
  }

  /********************************************************************/
  .header-content {
    padding-top: 100px;
  }

  /********************************************************************/
  .header-content p {
    font-size: 16px;
  }
}

/********************************************************************/
/*///////////////////////////////////////////////////////*/
/*///////////////////////////////////////////////////////*/
/*///////////////////////////////////////////////////////*/

/********************************************************************/
.scroll-down {
  width: 35px;
  height: 60px;
  border: 4px solid white;
  border-radius: 25px;
  position: absolute;
  bottom: 10%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0.8;
}

.scroll-down::before {
  content: "";
  width: 10px;
  height: 10px;
  background: white;
  border-radius: 50%;
  position: absolute;
  bottom: 10px; /* Keeps it at the bottom */
  animation: scroll-up 1.5s infinite ease-in-out;
}

@keyframes scroll-up {
  0% {
    transform: translateY(20px);
    opacity: 0;
  } /* Starts even lower */
  100% {
    transform: translateY(-15px);
    opacity: 1;
  } /* Moves up beyond its original position */
}

/********************************************************************/
/*///////////////////////////////////////////////////////*/
/*///////////////////////////////////////////////////////*/
/*///////////////////////////////////////////////////////*/

/********************************************************************/
/* GALLERY */
.portfolio-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
}

.portfolio-section h2 {
  margin-top: 20px;
}

.portfolio-section p,
h3 {
  font-weight: 400;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 20px;
}

@media (max-width: 768px) {
  .gallery {
    grid-template-columns: 1fr;
  }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  transform: scale(0.95);
  transition: transform 0.3s ease;
  filter: grayscale(100%);
  text-align: center;
}

.gallery-item h4 {
  margin: 10px 0;
  font-size: 1.2rem;
  font-weight: 700;
}

.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.gallery-item:hover,
.gallery-item:active {
  filter: grayscale(0%);
  transform: scale(1);
}

@media (hover: hover) {
  .gallery-item {
    filter: grayscale(100%);
  }

  .gallery-item:hover {
    filter: grayscale(0%);
    transform: scale(1);
  }
}

/********************************************************************/
/*///////////////////////////////////////////////////////*/
/*///////////////////////////////////////////////////////*/
/*///////////////////////////////////////////////////////*/

/*DIVIDER*/
/********************************************************************/
.divider {
  display: block;
  margin: 12px auto;
  width: 50%;
  max-width: 110px;
  margin-top: -10px;
}
/********************************************************************/
/*///////////////////////////////////////////////////////*/
/*///////////////////////////////////////////////////////*/
/*///////////////////////////////////////////////////////*/

section {
  margin: 0;
}

/*SERVICES*/
/********************************************************************/
.services {
  max-width: 100%;
  margin: auto;
  padding: 30px 20px;
  text-align: center;
  background-color: #e4e4e4;
}

.services h4 {
  margin: 10px 0;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
}

.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  border-radius: 10px;
}
.service {
  background: rgb(0, 0, 0);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}
.service:hover {
  transform: translateY(-10px);
}
.service h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #e4e4e4;
  font-weight: 400;
}
.service p {
  font-size: 1rem;
  color: #a0a0a0;
  font-style: italic;
}

/********************************************************************/
/*///////////////////////////////////////////////////////*/
/*///////////////////////////////////////////////////////*/
/*///////////////////////////////////////////////////////*/

/*TOOLS PRO*/
/********************************************************************/
.tools-section {
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: auto;
  padding: 30px 20px;
  text-align: center;
}

.cards-container {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1200px;
}

.card {
  width: 300px;
  aspect-ratio: 1;
  border-radius: 1rem;
  padding: 2rem;
  color: white;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 1rem;
}

.card-illustrator {
  background: linear-gradient(145deg, #ff9500 0%, #ff6f00 100%);
}

.card-lightroom {
  background: linear-gradient(145deg, #2196f3 0%, #1976d2 100%);
}

.tool-icon {
  font-size: 100px;
  font-weight: bold;
  margin-bottom: auto;
}

.tool-name {
  font-size: 16px;
  font-weight: 500;
}

.progress-wrapper {
  position: relative;
}

.percentage {
  position: absolute;
  right: 0;
  top: -1.5rem;
  font-size: 16px;
  opacity: 0.9;
}

.progress-container {
  width: 100%;
  height: 10px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 3px;
  overflow: hidden;
}

.progress-bar {
  width: 0%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  transition: width 10s ease-out !important;
}
/********************************************************************/
/*///////////////////////////////////////////////////////*/
/*///////////////////////////////////////////////////////*/
/*///////////////////////////////////////////////////////*/

/********************************************************************/
/* MEMORIES CAPTURED */
.counter-section {
  text-align: center;
  background: rgb(0, 0, 0);
  padding: 20px;
}

.counter-section h2 {
  color: #e4e4e4;
}

.counter {
  font-size: 3rem;
  font-weight: bold;
  color: #bdbdbd;
}
/********************************************************************/
/*///////////////////////////////////////////////////////*/
/*///////////////////////////////////////////////////////*/
/*///////////////////////////////////////////////////////*/

/********************************************************************/
/* CONTACT */
.contact-section {
  min-height: 400px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.contact-section h2 {
  color: #e4e4e4;
}

.contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../Images/Contact.gif");
  background-size: cover;
  background-position: center;
  filter: brightness(0.7);
  z-index: -1;
}

.contact-heading {
  color: white;
  font-size: 3rem;
  margin-bottom: 2rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.contact-buttons {
  display: flex;
  gap: 1rem;
}

.contact-button {
  padding: 1rem 2rem;
  font-size: 1.2rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.2s, background-color 0.2s;
  text-decoration: none;
  display: inline-block;
}

.call-button {
  background-color: #4caf50;
  color: white;
  border-radius: 50px;
}

.email-button {
  background-color: #2196f3;
  color: white;
  border-radius: 50px;
}

.contact-button:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

/********************************************************************/
/*///////////////////////////////////////////////////////*/
/*///////////////////////////////////////////////////////*/
/*///////////////////////////////////////////////////////*/

/********************************************************************/
/*GALLERY */
/*EXHIBITION*/
.exhibition-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
  margin-top: 80px;
}
/*=======================================================*/
.exhibition {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}
/*=======================================================*/
.exhibit-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  display: none;
}
/*=======================================================*/
.exhibit-item.show {
  opacity: 1;
  transform: translateY(0);
  display: block;
}
/*=======================================================*/
.exhibit-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: blur(100px) !important;
  transition: filter 1.5s ease-in-out !important;
}
/*=======================================================*/
.exhibit-item:hover {
  transform: scale(1.05);
  filter: grayscale();
}
/*=======================================================*/
.exhibit-item img.loaded {
  filter: blur(0) !important;
}
/*=======================================================*/
.load-more-exhibit {
  display: block;
  margin: 20px auto;
  padding: 10px 20px;
  background-color: black;
  color: white;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease;
}
/*=======================================================*/
.load-more-exhibit:hover {
  background-color: rgb(29, 29, 29);
}
/*=======================================================*/
.exhibit-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s ease;
}
/*=======================================================*/
.exhibit-popup-content {
  position: relative;
  max-width: 80%;
  max-height: 80%;
}
/*=======================================================*/
#exhibit-popup-image {
  display: block;
  max-width: 100%;
  max-height: 80vh;
  margin: 0 auto;
  border-radius: 8px;
  transition: transform 0.3s ease;
}
/*=======================================================*/
.exhibit-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  border-radius: 5px;
  padding: 0;
  cursor: pointer;
  transition: background-color 0.3s ease;
  background-color: transparent;
}
/*=======================================================*/
.exhibit-nav-btn img {
  width: 24px;
  height: 24px;
  display: block;
}
/*=======================================================*/
.exhibit-nav-btn:hover {
  background-color: black;
}
/*=======================================================*/
.exhibit-prev-btn {
  left: 10px;
  width: 40px;
  height: 40px;
  background-color: #161616a2;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}
/*=======================================================*/
.exhibit-next-btn {
  right: 10px;
  width: 40px;
  height: 40px;
  background-color: #161616a2;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}
/*=======================================================*/
.exhibit-exit-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  background-color: #161616a2;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}
/*=======================================================*/
.exhibit-exit-btn img {
  width: 20px;
  height: 20px;
  display: block;
}
/*=======================================================*/
.exhibit-exit-btn:hover {
  background-color: black;
}
/*=======================================================*/

.exhibit-item {
  opacity: 0;
  transition: opacity 0.5s ease-in;
}
/*=======================================================*/
.exhibition .exhibit-item {
  opacity: 1;
}

/********************************************************************/
/* BACK TO TOP */
.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  z-index: 999;
  cursor: pointer;
  transition: opacity 0.3s;
}

.back-to-top img {
  width: 40px;
  height: 40px;
}

.back-to-top.visible {
  display: block;
}
/********************************************************************/
/*///////////////////////////////////////////////////////*/
/*///////////////////////////////////////////////////////*/
/*///////////////////////////////////////////////////////*/

/********************************************************************/
/* FOOTER */
.footer {
  background-color: #000;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}

/********************************************************************/
.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/********************************************************************/
.footer-logo {
  max-width: 60px;
  margin-bottom: 10px;
}

/********************************************************************/
.footer-copyright {
  font-size: 14px;
  margin: 0;
}

/********************************************************************/
@media (max-width: 768px) {
  .footer-content {
    padding: 10px;
  }

  /********************************************************************/

  .footer-copyright {
    font-size: 12px;
  }
}

/********************************************************************/
/*///////////////////////////////////////////////////////*/
/*///////////////////////////////////////////////////////*/
/*///////////////////////////////////////////////////////*/
