/* GENERAL RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: 'Montserrat', sans-serif;
}

/* MAIN CONTAINER */
.punu-coming-soon {
  background-image: url('background.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
}

/* LOGO */
.punu-logo {
  position: absolute;
  top: -100px;
  left: -50px;
  height: 300px;
  width: auto;
}

/* TEXT CONTENT */
.punu-content {
  color: white;
  max-width: 700px;
}

.punu-subtitle {
  font-size: 20px;
  margin-bottom: 20px;
}

.punu-title {
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  font-weight: normal;
  margin-bottom: 30px;
  line-height: 1.1;
}

.punu-excl {
  font-family: 'Playfair Display', serif;
}


.punu-btn:hover {
  background-color: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.btn-subscribe {
  margin-top: 30px;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 10px 50px;
  font-size: 14px;
  color: black;
  border-radius: 30px;
  cursor: pointer;
  font-weight: normal;
  transition: background-color 0.3s ease;
  border-color: transparent;
}


.btn-subscribe:hover {
   background-color: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

/* Popup Form */
.popup-form {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.popup-form.active {
  display: flex;
}

.popup-content {
  background-color: #fff;
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  width: 300px;
  position: relative;
}

.popup-content input {
  width: 100%;
  margin: 10px 0;
  padding: 10px;
  font-size: 14px;
}

.popup-content button {
  margin-top: 15px;
  padding: 10px 25px;
  font-size: 15px;
  border: none;
  background-color: black;
  color: white;
  cursor: pointer;
}

.popup-content .close {
  position: absolute;
  top: 10px; right: 15px;
  font-size: 22px;
  cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .punu-title {
    font-size: 48px;
  }

  .punu-subtitle {
    font-size: 16px;
  }

  .punu-logo {
    height: 45px;
  }
}

