@import url("https://fonts.googleapis.com/css2?family=Karla:wght@200;300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@200;300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css?family=Pinyon Script");
@import url("https://fonts.googleapis.com/css?family=Distant Stroke");
/* @import url('https://fonts.googleapis.com/css?family=Playfair Display'); */
@import url("https://fonts.googleapis.com/css?family=PT Sans Narrow");

:root {
  --color1: red;
  --color2: white;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
}
body {
  font-family: "Karla", Verdana, sans-serif;
  line-height: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  height: 100vh;
  width: 100vw;
  font-weight: 300;
  font-size: 1.7rem;
  min-height: 100vh;
  overflow: hidden;
}
main {
  display: flex;
  text-align: center;
  margin: 0px 10px 0px;
  padding: 0px;
  height: 100%;
  flex-wrap: wrap;
  animation-name: main-animate;
  animation-duration: 0.5s;
  animation-iteration-count: 1;
  flex-grow: 1;
}

@keyframes main-animate {
  from {
    /* margin-left: -1000px;
    margin-right: -1000px; */
    overflow: hidden;
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

h1 {
  font-size: 3rem;
}

.despre-page .titletop {
  font-family: "Cinzel", serif;
  font-size: 3.5rem;
  text-align: center;
  margin: 0 auto;
  padding: 20px 0 30px 0;
}
.titletop {
  font-family: "Cinzel", serif;
  font-size: 3.5rem;
  text-align: center;
  margin: 0 auto;
  padding: 20px 0 30px 0;
}

.logo-top {
  width: 22rem;
  margin-right: 20px;
}

.section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  height: 92.4vh;
  gap: 0px;
  background: url("../background/01.jpg") no-repeat center center/cover;
  transition: filter 1s ease-in-out;
  z-index: 1;
}

.category {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
  align-content: center;
  align-self: center;
  padding: 0px 10px;
  flex: 1 1;
  height: 46.2vh;
  transition: 1s ease-in-out;
  cursor: pointer;
  z-index: 1;
}

.contact {
  /* background: url("../img/contact.jpg") no-repeat center center/cover; */
  background-color: rgba(0, 0, 0, 0.001);
  -webkit-mask-image: radial-gradient(
    circle,
    rgba(0, 0, 0, 1) 30%,
    rgba(0, 0, 0, 0) 60%
  );
  mask-image: radial-gradient(
    circle,
    rgba(0, 0, 0, 1) 30%,
    rgba(0, 0, 0, 0) 60%
  );

  /* backdrop-filter: blur(0); */
}
.contact:hover {
  /* backdrop-filter: blur(5px); */
  animation: blurPulse 1.2s infinite alternate, pulse 1.2s infinite alternate;
}
.portofoliu:hover {
  animation: pulse 1.2s infinite alternate;
}

.portofoliu:hover::before {
  /* backdrop-filter: blur(5px); */
  animation: blurPulse 1.2s infinite alternate, pulse 1.2s infinite alternate;
}
.despre:hover {
  /* backdrop-filter: blur(5px); */
  animation: blurPulse 1.2s infinite alternate, pulse 1.2s infinite alternate;
}

.albume:hover {
  /* backdrop-filter: blur(5px); */
  animation: pulse 1.2s infinite alternate;
}
.albume:hover::before {
  /* backdrop-filter: blur(5px); */
  animation: blurPulse 1.2s infinite alternate, pulse 1.2s infinite alternate;
}
@keyframes blurPulse {
  0% {
    backdrop-filter: blur(2px);
  }
  100% {
    backdrop-filter: blur(5px);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

.category h2 {
  text-shadow: 1px 1px 10px black;
  line-height: 3rem;
  margin: 0px;
  margin-bottom: 10px;
}
.contact h2 {
  margin-top: 40px;
}
.contact-text {
  margin-right: -4000px;
  transition: 0.5s ease-in-out;
  z-index: 553535;
}
.contact-text p {
  padding-bottom: 10px;
}
.category p {
  text-shadow: 1px 1px 3px black;
  font-size: 2rem;
  line-height: 2.5rem;
}

.portofoliu {
  /* background: url("../img/portofoliu.jpg") no-repeat center center/cover; */
  background-color: rgba(0, 0, 0, 0.001);
  /* -webkit-mask-image: radial-gradient(
    circle,
    rgba(0, 0, 0, 1) 30%,
    rgba(0, 0, 0, 0) 60%
  );
  mask-image: radial-gradient(
    circle,
    rgba(0, 0, 0, 1) 30%,
    rgba(0, 0, 0, 0) 60%
  );*/
  position: relative;
}

.portofoliu::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.001);
  -webkit-mask-image: radial-gradient(
    circle,
    rgba(0, 0, 0, 1) 30%,
    rgba(0, 0, 0, 0) 60%
  );
  mask-image: radial-gradient(
    circle,
    rgba(0, 0, 0, 1) 30%,
    rgba(0, 0, 0, 0) 60%
  );
  z-index: -1;
}

.portofoliu div {
  margin-left: -4000px;
  transition: 0.5s ease-in-out;
}
.portofoliu .categorii p {
  display: inline;
  padding: 0px 10px;
  line-height: 4rem;
  font-size: 3rem;
}
.categorii p {
  font-weight: 300;
}
.portofoliu h2 {
  margin-top: 20px;
}
.albume {
  background-color: rgba(0, 0, 0, 0.001);
  /* -webkit-mask-image: radial-gradient(
    circle,
    rgba(0, 0, 0, 1) 30%,
    rgba(0, 0, 0, 0) 60%
  );
  mask-image: radial-gradient(
    circle,
    rgba(0, 0, 0, 1) 30%,
    rgba(0, 0, 0, 0) 60%
  ); */
  position: relative;
}

.albume::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.001);
  -webkit-mask-image: radial-gradient(
    circle,
    rgba(0, 0, 0, 1) 30%,
    rgba(0, 0, 0, 0) 60%
  );
  mask-image: radial-gradient(
    circle,
    rgba(0, 0, 0, 1) 30%,
    rgba(0, 0, 0, 0) 60%
  );
  z-index: -1;
}
.albume a,
.despre a {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.albume div {
  margin-right: -4000px;
  transition: 0.5s ease-in-out;
}
.despre {
  background-color: rgba(0, 0, 0, 0.001);
  -webkit-mask-image: radial-gradient(
    circle,
    rgba(0, 0, 0, 1) 30%,
    rgba(0, 0, 0, 0) 60%
  );
  mask-image: radial-gradient(
    circle,
    rgba(0, 0, 0, 1) 30%,
    rgba(0, 0, 0, 0) 60%
  );
}
.despre div {
  margin-left: -4000px;
  transition: 0.5s ease-in-out;
}

.category div {
  color: white;
}

.category:hover div,
.category div a {
  margin: 0px;
  color: white;
}
.contact-text p:hover {
  transform: scale(110%);
}

h2 {
  transition: all 0.3s ease-in-out;
  color: white;
  font-family: "Cinzel";
  font-size: 5rem;
  font-weight: 300;
  margin: 20px 0px 15px 0px;
}
.category:hover h2 {
  color: white;
  font-size: 6rem;
  padding-bottom: 15px;
  /* text-shadow: 1px 1px 5px red; */
}
/* .category a:hover {
  text-shadow: 1px 1px 5px red;
}
.category a > p:hover {
  text-shadow: 1px 1px 10px red;
} */
.categorii a p:hover {
  font-size: 3.5rem;
}

#navbar ul {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: center;
  list-style: none;
  text-align: center;
  font-size: 2rem;
  height: 77px;
  font-family: "Cinzel";
}

#navbar {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.9);
  width: 100%;
}

#navbar li {
  padding: 10px 20px;
  animation-name: menu-animate;
  animation-duration: 1.5s;
  animation-iteration-count: 1;
  animation-timing-function: cubic-bezier(0, 2, 0.3, 1);
}
#navbar ul li ul li {
  padding: 7px 0px;
}

#navbar ul li ul {
  margin-top: 5px;
}
@keyframes menu-animate {
  from {
    margin: 0px -40px;
  }
  to {
  }
}

#navbar ul li {
  position: relative;
}
#navbar ul li ul {
  display: none;
}
#navbar ul li:hover ul {
  display: block;
  position: absolute;
  left: 0;
  width: 168px;
  z-index: 3;
}
#navbar ul li ul li:last-child {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

#navbar ul li:hover ul li {
  display: block;
  background: rgba(255, 255, 255, 0.92);
  animation-name: dropdown-animate;
  animation-duration: 0.5s;
  animation-iteration-count: 1;
  animation-timing-function: ease-in-out;
}

@keyframes dropdown-animate {
  from {
    opacity: 0%;
  }
  to {
    opacity: 100%;
  }
}

#navbar ul li:hover ul li a {
  color: black;
}

/* #navbar ul li:hover ul li:hover a {
  color: red;
 
 } */

#navbar ul li a:hover {
  font-size: 100%;
  opacity: 50%;
}

/* #navbar ul li a {
  display: inline-block;
  position: relative;
 } */
/* #navbar ul li a:after {
  content: '';
  position: absolute;
  width: 75%;
  transform: scaleX(0);
  height: 1px;
   top: 30px;
  bottom: 0;
  left: 10%;
  background-color: #949494;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}
 
#navbar ul li a:hover:after {
     transform: scaleX(1);
   transform-origin: bottom left;
} */

footer {
  width: 100%;
  font-size: 1.2rem;
  height: auto;
}

a {
  color: #000000;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
p {
  transition: all 0.3s ease-in-out;
}
a:visited {
  color: #000000;
  text-decoration: none;
}
p a:hover {
  /* color: #f00; */
  font-size: 110%;
  text-decoration: none;
}
.contactccc:hover {
  font-size: 109%;
}

h2:hover {
  /* color: #f00; */
  text-decoration: none;
}
a:active {
  color: #f00;
  text-decoration: none;
}

::selection {
  background: black;
  color: #fff;
}
::-moz-selection {
  background: black;
  color: #fff;
}
::-khtml-selection {
  background: black;
  color: #fff;
}
::-webkit-selection {
  background: black;
  color: #fff;
}

img::selection {
  background: transparent;
}
img::-moz-selection {
  background: transparent;
}
img::-khtml-selection {
  background: transparent;
}
img::-webkit-selection {
  background: transparent;
}

img {
  border: none;
  outline: none;
  border: 0;
}

.toggle {
  display: none;
}

.social {
  display: flex;
  gap: 7px;
  position: absolute;
  right: 15px;
  top: 30px;
  z-index: 4;
}

.iconshover {
  transition: all 0.4s ease-in-out;
}
.iconshoverr {
  transition: all 0.4s ease-in-out;
}

.iconshover:hover {
  /* color: red;  */
  font-size: 200%;
  transform: rotate(360deg);
}
.iconshoverr:hover {
  /* color: red; */
  font-size: 200%;
}
.icons-hover,
.icons-hoverr {
  transition: all 0.4s ease-in-out;
}
.icons-hover:hover,
.icons-hoverr:hover {
  font-size: 300%;
  transform: rotate(360deg);
}
.fa-face-smile-beam {
  transition: all 0.4s ease-in-out;
}
.fa-face-smile-beam:hover {
  font-size: 300%;
  transform: rotate(360deg);
  cursor: pointer;
}
.shake {
  animation: shake 2s;
  animation-iteration-count: infinite;
}

@keyframes shake {
  0% {
    transform: rotate(15deg);
  }
  5% {
    transform: rotate(0deg);
  }
  7% {
    transform: rotate(15deg);
  }
  9% {
    transform: rotate(0deg);
  }
  12% {
    transform: rotate(15deg);
  }
  15% {
    transform: rotate(0deg);
  }
  16% {
    transform: rotate(15deg);
  }
  17% {
    transform: rotate(0deg);
  }
  20% {
    transform: rotate(15deg);
  }
  21% {
    transform: rotate(0deg);
  }
  80% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

#gallery {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  /*grid-template-columns: repeat(auto-fit, minmax(40rem, 1fr));
  /* grid-template-rows:repeat(auto-fit, 44rem); */
  column-gap: 9px;
  row-gap: 7px;
  margin: 0 auto;
  height: 100%;
  width: 100%;
  animation-name: gallery-animation;
  animation-duration: 0.5s;
  animation-iteration-count: 1;
  padding: 0px 5px;
}
@keyframes gallery-animation {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}
.image {
  width: 100%;
  height: 100%;
  /* aspect-ratio: 1; */
  aspect-ratio: 3/2;
  object-fit: contain;
  /* object-fit:contain; */
  transition: all 0.3s ease-in-out;
  margin: 0px;
}
.image:hover {
  filter: brightness(70%);
}
.video {
  width: 100%;
}

.description {
  font-size: 1.8rem;
  line-height: 2.2rem;
  text-align: justify;
  margin: 0px 15%;
  padding-bottom: 15px;
  padding-top: 10px;
  text-indent: 30px;
}
.description-nunta {
  font-size: 1.8rem;
  line-height: 2.2rem;
  text-align: justify;
  margin: 0px 15%;
  padding-bottom: 20px;
  padding-top: 0px;
  text-indent: 30px;
}
i {
  text-indent: 0px;
}
#grid-portfolio a:hover .element {
  filter: brightness(70%);
  transition: all 0.7s ease-in-out;
}
.portfolio-title {
  transition: all 0.5s ease-in-out;
}
#grid-portfolio a:hover .portfolio-title {
  /* font-size: 180%; */
  transform: scale(1.15);
}
.element {
  width: 100%;
}

#grid-portfolio {
  display: grid;
  /* grid-template-columns: repeat(auto-fit, minmax(50rem, 1fr)); */
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 0px;
  row-gap: 0px;
  top: 0px;
  height: 100%;
  overflow: auto;
  overflow-x: hidden;
  margin: 0 auto;
  padding: 0px;
  animation-name: grid-animation;
  animation-duration: 0.5s;
  animation-iteration-count: 1;
  vertical-align: text-top;
  width: 100%;
  justify-items: center;
  grid-auto-rows: min-content;
  align-items: start;
}

.grid-element {
  overflow: hidden;
  margin: 10px 7px;
}
.grid-element img {
  vertical-align: top;
  transition: 0.7s ease-in-out;
}
.grid-element:hover img {
  transform: scale(1.05);
  /* animation: pulse 1.2s infinite alternate; */
}

@keyframes grid-animation {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

.title {
  font-size: 2.5rem;
  line-height: 2.2rem;
  text-align: justify;
  margin: 0px 20%;
  padding-bottom: 20px;
  padding-top: 20px;
}

p.portfolio-title {
  margin: 20px 0px 12px 0px;
}
p.portfolio-subtitle {
  margin: 0px 0px 15px 0px;
}

.portfolio-title {
  font-size: 2.8rem;
  font-family: "Cinzel";
  margin: 30px 0px;
}
.portfolio-subtitle {
  font-size: 2.2rem;
  font-family: "Cinzel";
  margin: 20px 0px;
}
.contact-page {
  font-size: 1.8rem;
  line-height: 5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 90vh;
  width: 100vw;
}

.contact-page div a {
  margin: 0 10px;
}
.contact-page div {
  margin-bottom: 10px;
}
.despre-page {
  /* display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: left; */
  font-size: 1.6rem;
  margin: 0 15%;
  margin-top: 15px;
}
.despre-page img {
  width: 30rem;
}
.despre-page p {
  font-size: 1.8rem;
  line-height: 2.2rem;
  text-align: justify;
  font-weight: 300;
  padding-bottom: 7px;
  padding-top: 7px;
  text-indent: 30px;
}

.despre-page ul li {
  margin: 0px;
  padding: 5px;
  text-align: justify;
  font-size: 1.8rem;
  line-height: 2.2rem;
  font-weight: 300;
}
.despre-page ul {
  margin-bottom: 40px;
}

form {
  line-height: 20px;
  text-align: left;
  margin-top: 30px;
}

input[type="submit"] {
  width: 400px;
  height: 50px;
  padding: 5px 10px;
  background-color: #f3f3f3;
  color: rgb(0, 0, 0);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-family: "Karla", Verdana, sans-serif;
  font-size: 1.8rem;
  transition: 0.4s ease-in-out;
}
input[type="submit"]:hover {
  background-color: #e7e7e7;
  font-size: 2rem;
  transition: 0.4s ease-in-out;
}
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  width: 400px;
  height: 35px;
  padding: 5px;
  border-radius: 5px;
  outline: none;
  margin: 0px;
  padding: 0px;
  margin-bottom: 7px;
  border: 1px solid #aaaaaa;
  font-family: "Karla", Verdana, sans-serif;
  font-size: 1.8rem;
}
input[type="text"]:active,
input[type="text"]:focus,
input[type="email"]:active,
input[type="email"]:focus,
input[type="tel"]:active,
input[type="tel"]:focus,
textarea:active,
textarea:focus {
  box-shadow: inset 0 0 1px black;
}
textarea {
  height: 300px;
}

.cp {
  display: flex;
  flex-direction: row;
  gap: 40px;
}
.cpp {
  line-height: 4rem;
  padding: 0px;
  width: auto;
}
form {
  margin-top: 0px;
}

.cpp a {
  transition: 0.5s ease-in-out;
}

.cpp a:hover {
  transform: scale(1.05);
}

.cpp p a {
  margin: 0px;
}

.cptop {
  margin-top: 50px;
}
