@import url('https://fonts.googleapis.com/css2?family=Reggae+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lexend+Mega:wght@100..900&display=swap');

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.error {
  margin-left: 100px;
}

.reggae-one-regular {
  font-family: "Reggae One", system-ui;
  font-weight: 400;
  font-size: clamp(2em, 3vw, 3em);
  margin: 10px 0;
  font-style: normal;
  color: #a81230;
}

.lexend-mega-regular {
  font-family: "Lexend Mega", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(0.866em, 1.3vw, 1.3em);
  text-transform: capitalize;
  color: #000;
}

body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: #fafafa;
  position: relative;
}

.banner {
  background: url('./img/torii.jpg');
  background-size: cover;
  background-position: center;
  height: 65vh;
  width: 100%;
  background-position: center;
  display: flex;
  border-top: 4px dotted #a81230;
  border-bottom: 4px dotted #a81230;
  align-items: center;
}

.container {
  display: flex;
  flex-direction: column;
  height: auto;
  width: 50%;
  padding-left: 100px;
}

.bordered-image {
  position: relative;
  margin-top: clamp(20px, 5vh, 65px);
}

.my-profile {
  display: flex;
  background: url('./img/rojo.jpg');
  background-size: cover;
  width: clamp(200px, 18vw, 300px);
  height: clamp(200px, 18vw, 300px);
  border-radius: 12px;
  border: 4px solid #000;
  box-shadow: 0px 0px 4px #2b2b2b83;
}

.bordered-image:before {
  content: "Socials";
  position: absolute;
  top: -14px;
  left: 14px;
  background-color: #000;
  padding: 1px 5px;
  border-radius: 4px;
  font-family: "Lexend Mega", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(0.866em, 1.3vw, 1.3em);
  color: #fafafa;
  box-shadow: 0px 0px 4px #2b2b2b83;
}

.my-profile .icon-container {
  align-self: flex-end;
  display: flex;
  width: 100%;
  justify-content: space-around;
  align-items: center;
  height: clamp(42.7px, 4vw ,64px);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  opacity: 0;
  border-radius: 0 0 12px 12px;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.my-profile:hover .icon-container {
  opacity: 1;
  visibility: visible;
}

.icon-link {
  color: #fafafa;
  text-decoration: none;
  font-size: clamp(25px, 2vw, 30px);
}

.icon-link:hover {
  color: #e0e0e0;
}

.container:nth-child(2) {
  align-items: end;
  padding-left: 0;
  padding-right: 100px;

}

.list {
  display: flex;
  flex-direction: column;
  list-style: none;
  width: clamp(266.66px, 25vw, 400px);
  margin-top: 25px;
}

li {
  padding: clamp(10px,1vw,15px);
  margin: 3px 0;
  background-color: #a81230;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  box-shadow: 0px 0px 4px #2b2b2b83;
}

li i {
  color: #fafafa;
}

li:first-child {
  border-radius: 12px 12px 0 0;
}

li:last-child {
  border-radius: 0px 0px 12px 12px;
}

a {
  text-decoration: none;
  color: #fafafa;
  position: relative;
  font-family: "Lexend Mega", sans-serif;
  font-size: 1em;
}

li a::before, .et_link::before {
  content: '';
  width: 0;
  height: 2px;
  border-radius: 2px;
  background-color: #fafafa;
  position: absolute;
  bottom: -.25rem;
  left: 0;
  transition: width .4s;
}

.go-back {
  color: #a81230;
  margin-top: 20px ;
}

.go-back::before {
  content: '';
  width: 0;
  height: 2px;
  border-radius: 2px;
  background-color: #a81230;
  position: absolute;
  bottom: -.25rem;
  left: 0;
  transition: width .4s;
}

li:hover a::before, a:hover::before, footer:hover a::before, .go-back:hover::before {
  width: 100%;
}

footer {
  position: relative;
  padding: 20px;
  text-align: center;
  width: 100%;
}

footer .et_link {
  color: #a81230;
}

.et_link::before {
  background-color: #a81230;
}

@media (max-width: 975px) {
  .banner {
    flex-direction: column;
    height: 75vh;
    align-items: center;
    justify-content: center;
  }
  .container {
    padding: 0 !important;
    width: auto;
  }

  .bordered-image {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .bordered-image::before {
    left: auto;
    top: -7px;
  }
}

/* Cookies */


#cookie-consent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(20px);
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

.cookie-content {
  background: #fff;
  padding: 50px 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.cookie-buttons {
  margin-top: 10px;
  display: flex;
  gap: 10px;
  width: 100%;
}

.cookie-buttons button {
  border: 2px solid #a81230;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  width: 100%;
}

#accept-cookies {
  padding: 10px 20px;
  background-color: #a81230;
  color: #fff;
  border: none;
}

#accept-cookies:hover {
  background-color: #960e29;
}

#decline-cookies {
  background-color: transparent !important;
  color: #a81230;

}

#decline-cookies:hover {
  background-color: #f3f3f3 !important;
}