* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  background: linear-gradient(135deg, #1a2332 0%, #2c3e50 100%);
  color: #ffffff;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  text-align: center;
  max-width: 600px;
  padding: 2rem;
  position: relative;
  z-index: 2;
  width: 100%;
}

.logo {
  max-width: 300px;
  width: 100%;
  height: auto;
  margin-bottom: 3rem;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.main-heading {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ffffff 0%, #e8f4f8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.subtitle {
  font-size: 1.25rem;
  font-weight: 400;
  color: #b8c6db;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.coming-soon-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.description {
  font-size: 1rem;
  color: #9ca3af;
  margin-bottom: 3rem;
  line-height: 1.7;
}

.notify-form {
  display: flex;
  gap: 1rem;
  max-width: 400px;
  margin: 0 auto 3rem;
  flex-wrap: wrap;
}

.email-input {
  flex: 1;
  min-width: 250px;
  padding: 1rem 1.5rem;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.email-input::placeholder {
  color: #9ca3af;
}

.email-input:focus {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
}

.notify-btn {
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: #ffffff;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-tap-highlight-color: transparent;
}

.notify-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.background-elements {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.cafe-icon {
  position: absolute;
  opacity: 0.03;
  font-size: 8rem;
  color: #ffffff;
}

.cafe-icon:nth-child(1) {
  top: 10%;
  left: 10%;
  animation: float 6s ease-in-out infinite;
}

.cafe-icon:nth-child(2) {
  top: 20%;
  right: 15%;
  animation: float 8s ease-in-out infinite reverse;
}

.cafe-icon:nth-child(3) {
  bottom: 15%;
  left: 20%;
  animation: float 7s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Mobile First Approach - Enhanced Responsive Design */

/* Small mobile devices (320px and up) */
@media (max-width: 480px) {
  body {
    padding: 0 1rem;
  }

  .container {
    padding: 1rem;
    max-width: 100%;
  }

  .logo {
    max-width: 200px;
    margin-bottom: 1.5rem;
  }

  .main-heading {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    line-height: 1.2;
  }

  .subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
    padding: 0 0.5rem;
  }

  .coming-soon-text {
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
  }

  .description {
    font-size: 0.9rem;
    margin-bottom: 2rem;
    padding: 0 0.5rem;
    line-height: 1.6;
  }

  .notify-form {
    max-width: 100%;
    gap: 0.8rem;
  }

  .email-input {
    min-width: 100%;
    padding: 0.8rem 1.2rem;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
  }

  .notify-btn {
    width: 100%;
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }

  .social-links {
    gap: 1rem;
    margin-top: 1.5rem;
  }

  .social-link {
    width: 45px;
    height: 45px;
  }

  .cafe-icon {
    font-size: 3rem;
  }
}

/* Medium mobile devices (481px to 768px) */
@media (min-width: 481px) and (max-width: 768px) {
  .container {
    padding: 1.5rem;
    max-width: 90%;
  }

  .logo {
    max-width: 250px;
    margin-bottom: 2rem;
  }

  .main-heading {
    font-size: 2.2rem;
    margin-bottom: 1rem;
  }

  .subtitle {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
  }

  .coming-soon-text {
    font-size: 1rem;
    margin-bottom: 1.8rem;
  }

  .description {
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
  }

  .notify-form {
    flex-direction: column;
    align-items: center;
    max-width: 350px;
  }

  .email-input {
    min-width: 100%;
    margin-bottom: 1rem;
    padding: 0.9rem 1.3rem;
  }

  .notify-btn {
    width: 100%;
    padding: 0.9rem 1.8rem;
  }

  .cafe-icon {
    font-size: 5rem;
  }
}

/* Tablets (769px to 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .container {
    padding: 2rem;
    max-width: 80%;
  }

  .main-heading {
    font-size: 3rem;
  }

  .subtitle {
    font-size: 1.2rem;
  }

  .notify-form {
    max-width: 450px;
  }

  .cafe-icon {
    font-size: 6rem;
  }
}

/* Large screens (1025px and up) - Default styles apply */
@media (min-width: 1025px) {
  .container {
    max-width: 600px;
  }
}

/* Landscape orientation adjustments for mobile */
@media (max-height: 600px) and (orientation: landscape) {
  body {
    align-items: flex-start;
    padding-top: 2rem;
  }

  .container {
    padding: 1rem;
  }

  .logo {
    max-width: 180px;
    margin-bottom: 1rem;
  }

  .main-heading {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
  }

  .subtitle {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }

  .coming-soon-text {
    font-size: 0.8rem;
    margin-bottom: 1rem;
  }

  .description {
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
  }

  .social-links {
    margin-top: 1rem;
  }

  .cafe-icon {
    font-size: 2rem;
  }
}
