/* Google Fonts - Poppins */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

/* Coming Soon Secrion */
.container {
  display: flex;
  row-gap: 15px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.container .image {
  position: absolute;
  background-image: url("images/vasu-village.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: #222;
  background-blend-mode: difference;
  /* soft-ligt, overlay, difference */
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: -1;
}
.container .image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.3); 
  z-index: 1;
}
.container header {
  font-size: 60px;
  color: #fff;
  font-weight: 600;
  text-align: center;
}
.container p {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  max-width: 550px;
  text-align: center;
}
.container .time-content {
  display: flex;
  column-gap: 30px;
  align-items: center;
}
.time-content .time {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.time .number,
.time .text {
  font-weight: 500;
  color: #fff;
}
.time .number {
  font-size: 40px;
}
.time .text {
  text-transform: capitalize;
  font-size: 12px;
}
.email-content {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: 30px;
  width: 100%;
}
.email-content p {
  font-size: 13px;
}
.input-box {
  display: flex;
  align-items: center;
  height: 40px;
  max-width: 360px;
  width: 100%;
  margin-top: 20px;
  column-gap: 20px;
}
.input-box input,
.input-box button {
  height: 100%;
  outline: none;
  border: none;
  border: 1px solid #fff;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.2);
  font-weight: 400;
}
.input-box input {
  width: 100%;
  padding: 0 15px;
  color: #fff;
}
input::placeholder {
  color: #fff;
}
.input-box button {
  cursor: pointer;
  color: #fff;
  white-space: nowrap;
  padding: 0 20px;
  transition: all 0.3s ease;
}
.input-box button:hover {
  background-color: #fff;
  color: #0d6a81;
}
.logo {
  position: absolute;
  top: 15px;
  left: 10px;
}
.logo a {
  color: #fff;
  padding: 3px 5px;
  font-size: 1.5rem;
  font-weight: bold;
  cursor: pointer;
  outline: none;
  text-decoration: none;
  border: 2px solid #fff; 
  border-radius: 4px;
}

.logo a:hover {
  color: #c99600;       
  border-color: #c99600;
  transition: all 0.5s ease;
}

.facebook-icon {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 100;
  width: 48px;
  height: 48px;
}

.facebook-icon svg {
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease;
}

.facebook-icon:hover svg {
  transform: scale(1.1);
  fill: #e6c200; /* iets donkerder goud als hover-kleur */
}

/* Kleine schermen vanaf 320px en kleiner */
@media screen and (max-width: 320px) {
  .container {
    padding: 90px 15px 40px; /* Meer ruimte boven en onder, minder aan de zijkant */
    height: auto;
    overflow-y: auto;
  }
  .container .image {
    background-image: url("images/vasu-village-mobile.jpg");
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background-position: center top;
    z-index: -1;
  }
  .container header {
    font-size: 28px;
    margin-bottom: 15px;
    padding-top: 15px;
    text-align: center;
  }
  .container p {
    font-size: 12px;
    margin-bottom: 12px;
    text-align: center;
  }
  .input-box input {
    margin-left: 10px;
  }
  .input-box button {
    margin-right: 10px;
    padding: 0 8px;
    font-size: 12px;
  }
  .logo {
    position: fixed;
    top: 8px;
    left: 8px;
    z-index: 10;
  }
  .logo a {
    font-size: 1rem;
    padding: 2px 5px;
  }
}

/* Middelgrote schermen tussen 321px en 375px */
@media screen and (min-width: 321px) and (max-width: 375px) {
  .container {
    padding: 100px 20px 50px;
    height: auto;
    overflow-y: auto;
  }
  .container .image {
    background-image: url("images/vasu-village-mobile.jpg");
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background-position: center top;
    z-index: -1;
  }
  .container header {
    font-size: 34px;
    margin-bottom: 18px;
    padding-top: 18px;
    text-align: center;
  }
  .container p {
    font-size: 14px;
    margin-bottom: 15px;
    text-align: center;
  }
  .input-box input,
  .input-box button {
    font-size: 13px;
  }
  .logo {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 10;
  }
  .logo a {
    font-size: 1.1rem;
    padding: 3px 6px;
  }
}

/* Schermen tot 425px */
@media screen and (min-width: 376px) and (max-width: 425px) {
  .container {
    padding: 110px 25px 60px;
    height: auto;
    overflow-y: auto;
  }
  .container .image {
    background-image: url("images/vasu-village-mobile.jpg");
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background-position: center top;
    z-index: -1;
  }
  .container header {
    font-size: 40px;
    margin-bottom: 20px;
    padding-top: 20px;
    text-align: center;
  }
  .container p {
    font-size: 15px;
    margin-bottom: 18px;
    text-align: center;
  }
  .input-box input,
  .input-box button {
    font-size: 14px;
  }
  .logo {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 10;
  }
  .logo a {
    font-size: 1.2rem;
    padding: 4px 7px;
  }
}