@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  width: 100%;
  height: 100%;
  font-family: 'Inter', sans-serif;
}

body {
  margin: 0;
  padding: 0;
  text-align: center;
  background: #A59084;
}

.screen {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
}

.bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* filter: brightness(.6); */
  z-index: 1;
  
}

header {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem 1rem 1rem;
}

.logo {
  width: 60%;
  max-width: 233px;
  height: auto;
  color: #81583d;
  filter: brightness(.9);

}

.dropdown {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: 3rem;
  

}

.dropdown__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80%;
  max-width: 110px;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: none;
  border-radius: 50px;
  color: #FFF;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
}

.dropdown__menu {
  display: none;
  list-style: none;
  margin: 0.5rem auto;
   width: 100%;
  top: 100%;
  left: 0;
  z-index: 1000;
}

.dropdown__toggle .arrow {
  margin-left: 4px;
  font-size: 0.75rem;
  transition: transform 0.2s;
}

.dropdown.open .dropdown__toggle .arrow {
  transform: rotate(180deg);
}



.dropdown.open .dropdown__menu {
  display: block;
}

.dropdown__menu li {
  margin: 0.5rem auto;
  width: 80%;
  max-width: 110px;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  color: #FFF;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
}

.actions {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin: 0 auto 3rem;
  width: 100%;
}

.actions button {
  width: 80%;
  max-width: 161px;
  padding: 0.75rem 0;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  border: none;
  border-radius: 50px;
  color: #FFF;
  font-size: 1.25rem;
  font-weight: 700;
  cursor: pointer;
}

.footer {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding-bottom: 2rem;
}

.footer .reviews,
.footer .social {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.footer .reviews img,
.footer .social img {
  width: 40px;   /* or any size you prefer */
  height: auto;
  margin: 0 5px; /* space between icons */
  transition: transform 0.2s ease;
}

.footer .reviews img:hover,
.footer .social img:hover {
  transform: scale(1.1); /* optional hover effect */
}
.footer p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  font-weight: 700;
}

.footer img {
  width: 24px;
  height: 24px;
  margin: 0 0.75rem;
  filter: brightness(0) invert(1);
}

.footer .reviews div,
.footer .social div {
  display: flex;
  gap: 1rem;
}


/* Arrow icon styles */
.arrow svg {
  width: 16px;
  height: 17px;
}

.arrow-up {
  display: none;
}

.dropdown.open .arrow-down {
  display: none;
}

.dropdown.open .arrow-up {
  display: inline;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
}

.popup-content {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
}

