/*flex containers*/
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");

.topFlexContainer{
  display: flex;
  /* flex-wrap: wrap; */
  flex-direction: row;
  /* justify-content: space-evenly; */
}

.buttonFlexContainer {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-evenly;
}
.textFlexContainer {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  padding-left: 15%;
  padding-right: 15%;
  padding-bottom: 5%;
  padding-top: 5%;
}
.projectFlexContainer {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  padding-left: 15%;
  padding-right: 15%;
  padding-bottom: 5%;
  padding-top: 5%;
  justify-content: space-evenly;
  gap: 5vw;
}
.contactFlexContainer {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  padding-left: 15%;
  padding-right: 15%;
  padding-bottom: 5%;
  padding-top: 5%;
  gap: 1vw;
}

.languageFlexContainer{
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.5vw;
}

.contactItemFlexContainer {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  padding-left: 15%;
  padding-right: 15%;
  padding-bottom: 5%;
  padding-top: 5%;
  gap: 1vw;
}
.darkButton {
  background-color: #1f1f1f;
  color: #ffffff;
  border: 0.125vw solid gold;
  padding: 0.75em 1.5em;
  font-size: 2vw;
  font-family: "Bebas Neue", cursive;
  border-radius: 0.5vw;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  display: block;
  text-decoration: none;
}

.darkButton:hover {
  background-color: #2c2c2c;
  border-color: #555;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.5);
}

.darkButton:active {
  transform: translateY(1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.langButton {
  background-color: #1f1f1f;
  color: #ffffff;
  border: 0.125vw solid gold;
  padding: 0.75em 1.5em;
  font-size: 1vw;
  font-family: "Bebas Neue", cursive;
  border-radius: 0.5vw;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  position: relative;
  left: 92%;
}
.langButton:hover {
  background-color: #2c2c2c;
  border-color: #555;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.5);
}

.title {
  position: relative;
  text-align: center;
  font-family: "Bebas Neue", cursive;
  font-size: 3vw;
}
.main {
  background-color: #2c2c2c;
  align-items: center;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  overflow-x: hidden;
  z-index: 1;
}
.profile {
  font-size: 10vw;
  color: #ffe100;
}
.text {
  background-color: #363333;
  color: #ffffff;
  border: 0.2vw solid gold;
  border-radius: 0.8vw;
  font-size: 1.5vw;
  font-family: Verdana, sans-serif;
  padding: 0.8vw 1vw;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  padding-right: 2.5vw;
}
/*project*/
.project {
  background-color: #1a1a1a;
  padding-bottom: 5%;
  flex: 0 0 calc(33.333% - 1vw);
  box-sizing: border-box;
  border: 0.125vw solid gold;
  border-radius: 0.5vw;
  cursor: pointer;
  display: block;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}
.project:hover {
  background-color: rgb(39, 39, 39);
  border-color: gold;
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.5);
}
.project img {
  width: 30vw;
  height: auto;
  transition: transform 0.3s ease;
  display: block;
  border-radius: 0.5vw;
}

.paragraphTitle {
  position: relative;
  text-align: center;
  font-size: 2vw;
  font-family: "Bebas Neue", cursive;
  font-size: 3vw;
  background-image: linear-gradient(gold, gold);
  background-size: 100% 10px;
  background-repeat: no-repeat;
  transition: background-size 0.7s, background-position 0.5s ease-in-out;
}

.paragraphTitle.inView {
  background-size: 100% 100%;
  background-position: 0% 100%;
  transition: background-position 0.7s, background-size 0.5s ease-in-out;
}

.projectTitle {
  position: relative;
  text-align: center;
  font-size: 2vw;
  font-family: "Bebas Neue", cursive;
  color: gold;
}
/*Contact*/

.contactButton {
  display: flex;
  align-items: center;
  background-color: #1f1f1f;
  color: #ffffff;
  border: 0.125vw solid gold;
  padding: 0.75vw 1.5vw;
  width: 11vw;
  height: 3vw;
  border-radius: 0.5vw;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  display: block;
  margin: 5%;
  translate: 1%;
  text-decoration: none;
}
.contactButton:hover {
  background-color: #2c2c2c;
  border-color: #555;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.5);
}

.contactButtonText {
  font-size: 2vw;
  font-family: "Bebas Neue", cursive;
  text-decoration: none;
}
.contactText {
  font-size: 1.5vw;
  font-family: "Bebas Neue", cursive;
  text-decoration: none;
  position: relative;
  left: 0.7vw;
}

.icon{
  height: 1.5vw;
  width: 1.5vw;
}
/*background effect*/
.backgroundEffect {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
  pointer-events: none;
}
.backgroundEffect::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 25% 25%, #95964b 0%, transparent 40%),
    radial-gradient(circle at 75% 75%, #0b0b07 0%, transparent 60%),
    radial-gradient(circle at 50% 50%, #000000 0%, transparent 70%);
  animation: moveBackground 40s linear infinite;
  filter: blur(100px);
  opacity: 0.4;
}
@keyframes moveBackground {
  0% {
    transform: scale(1) translate(0%, 0%);
  }
  50% {
    transform: scale(1.2) translate(10%, 10%);
  }
  100% {
    transform: scale(1) translate(0%, 0%);
  }
}
/*project image gallery*/

.masonryGallery {
  column-count: 3;
  column-gap: 1.5vw;
  padding: 2vw 5vw;
  background-color: #1a1a1a;
  max-width: 90vw; /* or any width you want */
  margin: 0 auto; /* centers the gallery */
  padding: 2rem 1rem; /* optional padding */
  border-radius: 2vw;
  border-color: gold;
  border: 0.2vw solid gold;
}

.masonryGallery img {
  width: 100%;
  display: block;
  margin-bottom: 1.5vw;
  border-radius: 0.5vw;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.masonryGallery img:hover {
  transform: scale(1.03);
  filter: brightness(1.1);
}

/*project specific css*/

.goBackButton {
  background-color: #1f1f1f;
  color: #ffffff;
  border: 0.125vw solid gold;
  padding: 0.75vw 1.5vw;
  font-size: 1.5vw;
  font-family: "Bebas Neue", cursive;
  border-radius: 0.5vw;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  display: block;
  text-decoration: none;
  width: 2vw;
  position: absolute;
}
.goBackButton:hover {
  background-color: #2c2c2c;
  border-color: #555;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.5);
}

.languageImage{
  background-color: #1f1f1f;
  border: 0.125vw solid gold;
  border-radius: 0.5vw;
  margin: 2vw;
  padding: 0.7vw 1.5vw;
  height: 7vw;
  width: 7vw;
}

/*download menu*/

.downloadMenuContainer {
  position: relative;
  display: inline-block;
}

.downloadToggle {
  background-color: #1f1f1f;
  color: white;
  border: 2px solid gold;
  padding: 0.75em 1.5em;
  border-radius: 0.5em;
  cursor: pointer;
  font-size: 2vw;
  font-family: "Bebas Neue", cursive;
  transition: all 0.3s ease;
}
.downloadToggle:hover {
  background-color: #2c2c2c;
  border-color: #555;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.5);
}

.downloadOptions {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #2c2c2c;
  border: 1px solid gold;
  border-radius: 0.5em;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  margin-top: 0.5em;
}

.downloadOptions a {
  display: block;
  color: white;
  padding: 0.75em 1.5em;
  text-decoration: none;
  /* border: 1px solid #444; */
  border-radius: 0.5em;
  border-bottom: 1px solid #444;
  font-size: 1.5vw;
}

.downloadOptions a:last-child {
  border-bottom: none;
}

.downloadOptions a:hover {
  background-color: #3a3a3a;
}

