* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: sans-serif;
  font-family: "Roboto Condensed", sans-serif;
}

html {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  scroll-behavior: smooth;
}

body {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.header {
  position: fixed;
  z-index: 11;
  width: 100%;
  max-width: 1280px;
  background-color: rgba(70, 70, 63, 0.78);
  top: 0;
  padding: 20px;
  display: flex;
  justify-content: center;
  gap: 40px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  transition: top 0.3s ease;
}

.header a {
  color: white;
  font-size: 20px;
  transition: border 0.2s;
}

.header a:hover {
  border-bottom: 1px solid white;
}

.header-mobile {
  display: none;
}

main {
  position: relative;
  width: 100%;
  max-width: 1280px;
  min-width: 320px;
  display: flex;
  flex-direction: column;
  background-color: white;
  box-shadow: -2px -3px 27px -19px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: -2px -3px 27px -19px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: -2px -3px 27px -19px rgba(0, 0, 0, 0.75);
  scrollbar-width: none;
  -ms-overflow-style: none;
}

main::-webkit-scrollbar {
  display: none;
}

img {
  overflow: hidden;
}

.hero {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  z-index: 0;
}

.hero-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 100%;
  height: 500px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  overflow: hidden;
}

.hero-wrapper::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
}

.hero-wrapper h1 {
  font-family: "Great Vibes", cursive;
  font-size: 120px;
  color: white;
  z-index: 4;
  font-weight: 400;
}

nav {
  position: absolute;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
  padding: 20px 100px;
  top: 0;
  width: 100%;
}

.logo {
  width: 50px;
  height: 50px;
}

nav ul {
  display: flex;
  gap: 40px;
}

nav ul li a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 400;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: black;
  cursor: pointer;
}

/* Description */
.description {
  width: 100%;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 50px;
}

.description h2 {
  width: 100%;
  text-align: center;
  font-family: "Great Vibes", cursive;
  font-size: 50px;
  margin-bottom: 20px;
  border-bottom: 1px solid black;
}

.invitati {
  font-family: "Roboto Condensed", sans-serif;
  text-align: center;
  font-size: 22px;
  line-height: 26px;
  font-style: italic;
  margin-bottom: 60px;
  padding: 0 300px;
}

.description .text {
  font-size: 18px;
  padding-top: 40px;
  display: block;
  padding: 0 10px;
  /*text-indent: 2em;*/
  text-align: center;
}

/* Family */
.family {
  padding: 0 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 80px;
}

.family h2 {
  width: 100%;
  font-family: "Great Vibes", cursive;
  font-size: 50px;
  margin-bottom: 20px;
  border-bottom: 1px solid black;
  text-align: left;
}

.family-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 20px;
  margin-top: 20px;
}

.family-wrapper .box {
  width: 100%;
  display: flex;
  text-align: center;
  gap: 20px;
}

.family-wrapper .box .box-wrapper img {
  margin-top: 0;
}

.family-wrapper .box .box-wrapper {
  margin-top: 20px;
}

.family-wrapper .box-1 {
  width: 100%;
  display: flex;
  gap: 20px;
  align-items: stretch;
}

.family-wrapper .box-1 .image-wrapper .text-wrapper p {
  font-size: 24px;
  text-align: center;
  font-weight: 400;
  font-style: italic;
}

.family-wrapper .box-1 .image-wrapper img {
  width: 100%;
}

.family-wrapper .box-1 .image-wrapper .text-wrapper {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.family-wrapper .box-1 img {
  width: 25%;
  height: 350px;
  object-fit: cover;
}

.family-wrapper .box-1 img:nth-child(2) {
  border-radius: 10px;
}

.family-wrapper .box-1 img:nth-child(1) {
  height: 100%;
}

.family-wrapper .box-1 img:nth-child(3) {
  height: 100%;
}

/* .box:first-child {
  align-self: center;
}
.box:last-child {
  width: 100%;
} */
.box p {
  font-size: 24px;
  font-weight: 400;
  font-family: "Roboto Condensed", sans-serif;
  bottom: 10px;
  right: 20px;
  font-style: italic;
  padding-left: 20px;
  width: 100%;
  display: flex;
  justify-content: space-around;
}

.box img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
  margin-top: 20px;
}

.box .box-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Program */
.program {
  padding: 0 50px;
  padding-top: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.program h2 {
  font-family: "Great Vibes", cursive;
  font-size: 50px;
  margin-bottom: 20px;
  text-align: right;
  width: 100%;
  border-bottom: 1px solid black;
}

.cards-wrapper {
  width: 100%;
  padding-top: 40px;
  display: flex;
  justify-content: center;
  gap: 40px;
}

.card {
  width: 33%;
  padding: 20px;
  border-radius: 10px;
}

.cards-wrapper .card .content .content-title {
  display: flex;
  flex-direction: column;
}

.cards-wrapper .card .content .content-title p {
  font-weight: 500;
  font-size: 20px;
}

.cards-wrapper .card .content .content-title p:last-of-type {
  font-weight: 400;
  font-size: 18px;
  font-style: italic;
  padding-top: 4px;
}

.card h4 {
  font-size: 24px;
  text-align: center;
  font-weight: 500;
  margin-bottom: 40px;
  border-bottom: 1px solid black;
}

.card h4 span {
  font-weight: 400;
  font-style: italic;
  padding: 5px;
  font-size: 18px;
  display: block;
}

.card .content {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 20px;
  gap: 5px;
  padding: 20px;
  border-radius: 10px;
  box-shadow: -1px -1px 39px -7px rgba(0, 0, 0, 0.21);
  -webkit-box-shadow: -1px -1px 39px -7px rgba(0, 0, 0, 0.21);
  -moz-box-shadow: -1px -1px 39px -7px rgba(0, 0, 0, 0.21);
}

.card .content ul {
  margin-top: 10px;
}

.card .content ul li p {
  /* text-align: center; */
  text-indent: 1em;
}

.card .content ul li a p {
  width: 100%;
  margin-top: 26px;
  text-align: center;
  display: flex;
  justify-content: center;
  border: 1px solid black;
  padding: 10px 0;
  border-radius: 20px;
  cursor: pointer;
}

.card .content p {
  font-size: 16px;
}

/* Informatii */
.information {
  padding: 0 50px;
  padding-top: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.information h2 {
  font-family: "Great Vibes", cursive;
  font-size: 50px;
  margin-bottom: 20px;
  text-align: left;
  width: 100%;
  border-bottom: 1px solid black;
}

.information .info-wrapper {
  width: 100%;
  display: flex;
  gap: 20px;
}

.information .info-wrapper .col {
  width: 50%;
  margin-top: 20px;
}

.information .info-wrapper .col .info-box {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  text-indent: 1em;
}

.info-box img {
  flex-shrink: 0;
}

.info-box-content p {
  font-weight: 600;
  margin-bottom: 10px;
}

.info-box-content ul li {
  list-style: inside;
  padding-left: 0;
  text-align: left;
  margin-top: 10px;
}

.info-box-content ul li ul {
  padding-left: 20px;
}

.info-box-content ul li ul li {
  list-style-type: circle;
  margin-top: 0;
}

.info-box-content ul li ul li:first-child {
  margin-top: 5px;
}

/* Formular */
.formular {
  margin-top: 80px;
  padding: 0 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.formular h2 {
  font-family: "Great Vibes", cursive;
  font-size: 50px;
  margin-bottom: 20px;
  text-align: right;
  width: 100%;
  border-bottom: 1px solid black;
}

form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 60%;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 1px 5px 13px -3px rgba(0, 0, 0, 0.26);
  -webkit-box-shadow: 1px 5px 13px -3px rgba(0, 0, 0, 0.26);
  -moz-box-shadow: 1px 5px 13px -3px rgba(0, 0, 0, 0.26);
}

form .col {
  width: 100%;
  display: flex;
  gap: 20px;
}

.formular-content {
  display: flex;
  gap: 40px;
  padding-top: 20px;
}

.whatsapp {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.whatsapp ul {
  position: relative;
  margin-top: 10px;
}

.whatsapp ul li {
  margin-top: 10px;
}

.whatsapp-link {
  display: none;
}

.whatsapp-link a {
  border: 1px solid black;
  cursor: pointer;
  border-radius: 10px;
  padding: 10px 30px;
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
}

.whatsapp-img {
  margin-top: 40px;
  width: 200px;
  height: 200px;
}

textarea {
  resize: vertical;
  width: 100%;
  border-radius: 10px;
  padding: 10px;
  font-size: 16px;
}

form .form-box {
  display: flex;
  flex-direction: column;
  width: 100%;
}

#hide-form-box {
  display: none;
}

.hide {
  flex-grow: 1;
  border-radius: 10px;
}

.success {
  display: none;
  background-color: rgb(50, 189, 50);
  border-radius: 10px;
  color: white;
  padding: 20px;
  text-align: center;
  font-size: 20px;
}

.label,
label {
  font-size: 18px;
  padding-bottom: 10px;
}

form .form-box .radio-wrapper {
  display: flex;
  align-items: center;
  gap: 5px;
}

.radio-wrapper label {
  padding-bottom: 0;
  padding-right: 20px;
}

input {
  border-radius: 10px;
  border: 1px solid black;
  padding: 14px 10px;
  font-size: 16px;
}

select {
  color: black !important;
  position: relative;
  display: inline-block;
  border: 1px solid black;
  background-color: white;
  padding: 14px 10px;
  font-size: 16px;
  border-radius: 10px;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  font-size: 16px;
  line-height: 1.5;
}

select option[disabled][selected] {
  color: black;
}

.select {
  position: relative;
}

.select::after {
  content: "▼";
  font-size: 12px;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

button {
  width: 50%;
  padding: 12px;
  font-size: 18px;
  border-radius: 50px;
  background: rgb(34, 205, 59);
  color: white;
  font-weight: 500;
  border: 0;
  cursor: pointer;
  margin-top: 40px;
  align-self: center;
}

button:hover {
  background: rgb(28, 169, 49);
}

footer .content {
  display: flex;
  background-color: rgba(70, 70, 63, 0.804);
  width: 100%;
  justify-content: space-between;
  align-content: center;
  padding: 0 80px;
  padding-top: 80px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

footer .content .logo {
  width: 100px;
  height: 100px;
  object-fit: conver;
}

.alex-content {
  background-color: rgba(70, 70, 63, 0.804);
  width: 100%;
  padding-top: 40px;
  padding-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.alex-content p {
  color: white;
  font-size: 16px;
  text-align: center;
  margin-right: 20px;
}

.alex-content a {
  margin-right: 10px;
}

footer ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

footer ul li a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
}

ul li {
  text-align: center;
}

.family-wrapper .box .box-wrapper .box-title p {
  padding-left: 0;
  margin-bottom: 10px;
}

@media (max-width: 1024px) {
  .program .cards-wrapper .card .content .content-title p {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .hero-wrapper h1 {
    font-size: 60px;
  }

  .description .invitati {
    padding: 0 40px;
  }

  .program .cards-wrapper {
    gap: 20px;
  }

  .program .cards-wrapper .card {
    padding: 0;
  }

  .program .cards-wrapper .card .content .content-title p {
    font-size: 20px;
  }

  .program .cards-wrapper .card .content ul li p {
    font-size: 14px;
  }

  .program .cards-wrapper .card .content ul li a p {
    padding: 8px;
    font-size: 14px;
  }

  .description,
  .family,
  .program,
  .information,
  .formular {
    padding-left: 30px;
    padding-right: 30px;
  }

  form {
    width: 80%;
  }

  .form-box label {
    font-size: 16px;
  }

  footer .content {
    padding: 40px;
  }
}

@media (max-width: 480px) {
  /* HEADER */
  .header {
    position: fixed;
    top: -100dvh;
    flex-direction: column;
    align-items: center;
    padding: 40px;
    z-index: 9;
  }

  .active {
    top: 0;
  }

  .header a {
    font-size: 30px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
  }

  .header-mobile {
    display: flex;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10;
    background-color: rgba(70, 70, 63, 0.78);
    border-radius: 50%;
    width: 50px;
    height: 50px;
  }

  .header-mobile img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .header a {
    font-size: 14px;
    display: block;
  }

  /* HERO IMAGE */
  .hero-wrapper {
    height: 360px;
  }

  .hero-wrapper h1 {
    font-size: 60px;
  }

  .hero-wrapper img {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }

  /* DESCRIPTION */
  .description .invitati {
    padding: 0;
    font-size: 20px;
    line-height: 22px;
    margin-bottom: 40px;
  }

  .description h2 {
    font-size: 36px;
    margin-bottom: 40px;
  }

  /* Family */
  .family {
    padding-top: 60px;
  }

  .family h2 {
    font-size: 36px;
    margin-bottom: 40px;
  }

  .hide {
    display: none;
  }

  .family-wrapper {
    margin-top: 0;
  }

  .family-wrapper .box {
    flex-direction: column;
  }

  .family-wrapper .box .box-wrapper {
    margin-top: 0;
  }

  /* Program */
  .program {
    padding-top: 60px;
  }

  .program h2 {
    font-size: 36px;
    margin-bottom: 40px;
  }

  .program .cards-wrapper {
    padding-top: 0;
    flex-direction: column;
    gap: 40px;
  }

  .program .cards-wrapper .card {
    width: 100%;
  }

  .program .cards-wrapper .card .content ul {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* Informatii */
  .information {
    padding-top: 60px;
  }

  .information .info-wrapper {
    flex-direction: column;
  }

  .information .info-wrapper .col {
    width: 100%;
    margin-top: 0;
  }

  .information .info-wrapper .col:last-of-type .info-box:first-of-type {
    margin-top: 0;
  }

  .information h2 {
    font-size: 36px;
    margin-bottom: 40px;
  }

  /* formular */
  .formular {
    margin-top: 60px;
    padding-left: 30px;
    padding-right: 30px;
  }

  input,
  select {
    padding: 10px;
    font-size: 14px;
  }

  .formular h2 {
    font-size: 36px;
    margin-bottom: 40px;
  }

  button {
    font-size: 16px;
    letter-spacing: 1px;
  }

  form {
    margin-top: 0;
    width: 100%;
    padding: 20px;
  }

  .form-box label {
    font-size: 14px;
  }

  form .col {
    flex-direction: column;
  }

  .formular-content {
    flex-direction: column-reverse;
  }

  .whatsapp-img {
    display: none;
  }

  .whatsapp-link {
    display: flex;
  }
}
