/* Base Styles */
html, body {
  height: 100%;
  margin: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Video Background and Overlay */
#bgVideo {
  position: fixed;
  top: 0;
  left: 0;
  min-width: 100vw;
  min-height: 100vh;
  object-fit: cover;
  z-index: -2;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.55);
  z-index: -1;
}

/* Vector */
.vector1 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 20px;
  margin-top: 30px;
}

.vector1 img {
  max-width: 400px;
  width: 100%;
  height: auto;
}

/* Main Container */
.container {
  /* Keep hero content above the banner and avoid overlapping when the viewport is short */
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 80px;
  padding-bottom: 40px;
  color: #fff;
  text-align: center;
  position: relative;
  z-index: 1;
}

.container h1 {
  font-size: 5rem;
  margin-bottom: 0.4em;
  font-weight: 700;
  letter-spacing: 1.5px;
  line-height: 1.1;
  margin-top: 100px;
}

.container p {
  font-size: 1.3em;
  margin-bottom: 1em;
  max-width: 600px;
}

/* Button Section */
.button-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 60px;
  margin-bottom: 0px;
  z-index: 2;
  position: relative;
}

.signup-btn,
.log1-btn {
  width: 200px;
  padding: 15px 5px; /* Increased padding for better proportions */
  background: #ff4d5c;
  color: #fff;
  font-size: 1.2em;
  font-weight: bold;
  border-radius: 40px;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 2px 14px #d42647;
  transition: background 0.2s, transform 0.15s ease;
  cursor: pointer;
  display: inline-flex; /* Added for better centering */
  align-items: center; /* Vertically centers text */
  justify-content: center; /* Horizontally centers text */
  line-height: 1; /* Prevents text from shifting */
}

.signup-btn:hover,
.log1-btn:hover {
  background: #000000;
  color: #ffffff;
  box-shadow: 0 2px 14px #fdfdfd;
  transform: scale(1.05);
}


/* ----------------------------------------------------- */


.Banner-section {
  background-color: #ffffffdc;
}

.Banner-section h2{
  color: rgb(255, 0, 0);
  margin-bottom: 10px;
  font-size: 1.5rem;
  text-align: center;
  z-index: 1;
}

.Banner-section p{
  color: rgb(255, 0, 0);
  margin-bottom: 40px;
  font-size: 1.1rem;
  text-align: center;
  z-index: 1;
}





/* -------------------------------------------------------------- */

/* Hero Section - Dating Without Deception */
.hero-section {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: transparent;
  position: relative;
  overflow: hidden;
  padding: 3em 2em;
  margin-top: 0;
  z-index: 0;
}

.hero-content {
  max-width: 800px;
  z-index: 1;
  padding: 0 1em;
}

.hero-section h1 {
  font-size: 3em;
  color: white;
  margin-bottom: 0.6em;
  font-weight: bold;
  text-shadow: 0 0 30px rgba(255,255,255,0.5);
  line-height: 1.1;
}

.hero-section p {
  color: rgba(255,255,255,0.9);
  font-size: 1.3em;
  margin-bottom: 1.5em;
  max-width: 600px;
  line-height: 1.5;
  margin-left: auto;
  margin-right: auto;
}

.hero-features {
  list-style: none;
  padding: 0;
  max-width: 500px;
  margin: 0 auto 1em;
}

.hero-features li {
  position: relative;
  padding-left: 2em;
  margin-bottom: 1em;
  color: white;
  font-size: 1.2em;
  font-weight: 500;
  text-align: left;
}

.hero-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0.1em;
  color: #90EE90;
  font-size: 1.2em;
  font-weight: bold;
  text-shadow: 0 0 15px rgba(144,238,144,0.8);
}

/* How It Works Section */
.how-it-works {
  max-width: 1000px;
  margin: 0 auto;
  padding: 3em 1em 4em 1em;
  text-align: center;
  background: transparent;
  position: relative;
}

.how-it-works h2 {
  font-size: 3em;
  color: white;
  margin-bottom: 1.5em;
  text-shadow: 0 0 20px rgba(255,255,255,0.3);
}

.steps-container {
  display: flex;
  justify-content: center;
  gap: 2em;
  flex-wrap: wrap;
  padding: 0 1em;
}

.step-card {
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  padding: 2em 1.5em;
  background: rgba(255,255,255,0.1);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s, box-shadow 0.3s;
}

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(161, 161, 161, 0.281);
}

.step-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1em;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: bold;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.062);
}

.step-icon.register {
  background: rgba(255, 87, 34, 0.9);
  color: white;
}

.step-icon.verify {
  background: rgba(40, 167, 69, 0.9);
  color: white;
}

.step-icon.connect {
  background: rgba(220, 53, 69, 0.9);
  color: white;
}

.step-card h3 {
  color: white;
  font-size: 1.4em;
  margin-bottom: 0.5em;
}

.step-card p {
  color: #ccc;
  line-height: 1.5;
  font-size: 0.95em;
}

/* Safety Promise Section */
.safety-promise {
  max-width: 1000px;
  margin: 4em auto;
  padding: 4em 2em;
  text-align: center;
  background: transparent;
  border-radius: 20px;
  position: relative;
  overflow: visible;
  margin-bottom: 4em;
}

.safety-promise h2 {
  font-size: 3em;
  color: white;
  margin-bottom: 0.6em;
  font-weight: bold;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.safety-promise p {
  color: rgba(255,255,255,0.9);
  font-size: 1.2em;
  margin-bottom: 1.5em;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

.safety-list {
  list-style: none;
  padding: 0;
  max-width: 500px;
  margin: 0 auto;
}

.safety-list li {
  position: relative;
  padding-left: 2.5em;
  margin-bottom: 1em;
  color: white;
  font-size: 1.1em;
  line-height: 1.4;
  text-align: left;
}

.safety-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #90EE90;
  font-size: 1.3em;
  font-weight: bold;
  text-shadow: 0 0 10px rgba(144, 238, 144, 0.8);
}

/* Modal Styles */
.modal, .modal1 {
  display: none;
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.74);
}

.modal-content, .modal-content1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 12px;
  max-width: 400px;
  width: 90%;
  margin: auto;
  padding: 28px 20px 20px 20px;
  box-shadow: 0 2px 22px rgba(0,0,0,0.23);
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.close, .close1 {
  position: absolute;
  top: 11px;
  right: 18px;
  font-size: 1.6em;
  color: #ff4d5c;
  cursor: pointer;
  user-select: none;
}

.close:hover, .close1:hover {
  color: #000000;
}

/* Form Styles */
#signupForm, #loginForm, #forgotForm {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

#signupForm input, #signupForm select, #signupForm button,
#loginForm input, #loginForm button,
#forgotForm input, #forgotForm button {
  width: 100%;
  margin: 9px 0;
  padding: 12px 10px;
  text-align: center;
  border-radius: 8px;
  border: 1px solid #a5a5a5;
  font-size: 1em;
  box-sizing: border-box;
  min-height: 44px;
}

#signupForm button,
#loginForm button,
#forgotForm button {
  background: #ff4d5c;
  color: #fff;
  font-weight: bold;
  border: none;
  transition: background 0.22s;
  cursor: pointer;
}

#signupForm button:hover,
#loginForm button:hover,
#forgotForm button:hover {
  background: #000000;
  color: white;
  box-shadow: 0 2px 14px #ff4d5c;
  transition: all 0.2s ease;
}

/* Date Picker Button */
.date-picker-button {
  width: 100%;
  margin: 9px 0;
  padding: 12px 10px;
  border-radius: 8px;
  border: 1px solid #a5a5a5;
  font-size: 1em;
  box-sizing: border-box;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  min-height: 44px;
}

.calendar-icon {
  font-size: 1.1em;
}




/* --------------------------------------------------------- */


/* Footer */
footer {
  margin-top: auto;
  background: #101010;
  color: #f1f1f1;
  padding: 22px 8px;
  text-align: center;
}

footer nav a {
  color: #FFFFFF;
  margin: 0 13px;
  text-decoration: none;
  font-size: 1em;
}

footer nav a:hover {
  color: #ff4d5c;
  border-bottom: 2px solid #ff4d5c;
  padding-bottom: 3px;
  transition: all 0.2s ease;
}

/* Tablet Responsiveness */
@media (max-width: 1200px) {
  .container h1 {
    font-size: 4em;
    margin-top: 80px;
  }
}

@media (max-width: 900px) {
  .hero-section h1 {
    font-size: 2.5em;
  }

  .how-it-works h2,
  .safety-promise h2 {
    font-size: 2.5em;
  }

  .step-card {
    min-width: 220px;
  }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .container {
    min-height: 100vh;
  }

  .container h1 {
    font-size: 2.5em;
    margin-top: 60px;
  }

  .container p {
    font-size: 1.1em;
  }

  .button-row {
    flex-direction: column;
    gap: 15px;
    margin-top: 40px;
    margin-bottom: 60px;
  }

  .signup-btn,
  .log1-btn {
    width: 250px;
    max-width: 90vw;
  }

  .vector1 img {
    max-width: 200px;
  }

  .hero-section {
    padding: 2em 1.5em;
    min-height: 60vh;
  }

  .hero-section h1 {
    font-size: 2em;
  }

  .hero-section p {
    font-size: 1.1em;
  }

  .hero-features li {
    font-size: 1em;
    padding-left: 1.8em;
  }

  .how-it-works {
    padding: 2em 1em 3em 1em;
  }

  .how-it-works h2 {
    font-size: 2em;
  }

  .steps-container {
    gap: 1.5em;
    padding: 0;
  }

  .step-card {
    max-width: 100%;
    margin: 0 1em;
  }

  .safety-promise {
    margin: 2em 1em;
    padding: 2em 1.5em;
  }

  .safety-promise h2 {
    font-size: 2em;
  }

  .safety-promise p {
    font-size: 1.1em;
  }

  .safety-list li {
    font-size: 1em;
  }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
  .container h1 {
    font-size: 2em;
    margin-top: 40px;
  }

  .vector1 img {
    max-width: 160px;
  }

  .button-row {
    margin-top: 30px;
    margin-bottom: 50px;
  }

  .signup-btn,
  .log1-btn {
    width: 100%;
    max-width: 280px;
  }

  .hero-section {
    min-height: 50vh;
  }

  .hero-section h1 {
    font-size: 1.8em;
  }

  .hero-section p,
  .safety-promise p {
    font-size: 1em;
  }

  .how-it-works h2,
  .safety-promise h2 {
    font-size: 1.8em;
  }

  .steps-container {
    flex-direction: column;
    align-items: center;
  }

  .step-card {
    margin: 0;
    max-width: 320px;
    width: 100%;
  }

  .modal-content, .modal-content1 {
    width: 95%;
    padding: 24px 16px 16px 16px;
  }

  footer nav a {
    display: inline-block;
    margin: 8px 10px;
  }
}
