/* Reset + Font */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Apply base font */
body {
  font-family: 'Comic Sans MS', cursive;
  overflow: hidden;
  animation: fadeIn 1.5s ease-in;
}

/* Page load animation */
@keyframes fadeIn {
  from { opacity: 0; transform: scale(1.05); }
  to { opacity: 1; transform: scale(1); }
}

/* Background */
.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('zomb.png') no-repeat left bottom fixed;
  background-size: contain;
  background-color: #000;
  z-index: -2;
}

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

/* Navbar */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(40, 36, 37, 0.85);
  padding: 1rem 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 10;
}

.logo {
  font-size: 1.8rem;
  color: #66040f;
  font-weight: bold;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
}

.nav-links li {
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #fffbfb;
  font-size: 1.1rem;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #ff4b4b;
}

/* Main */
main {
  width: 100%;
  height: calc(100vh - 80px);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.center-content {
  z-index: 2;
  padding: 20px;
}

/* Quote Styling */
.quote-text {
  font-size: 2.2rem;
  font-family: 'Chewy', cursive;
  font-weight: bold;
  color: #fff9ec;
  text-shadow: 2px 2px 5px #000;
  margin-bottom: 30px;
  line-height: 1.5;
}

/* Start Button */
.start-btn {
  position: relative;
  display: inline-block;
  cursor: pointer;
  transition: transform 0.3s;
}

.start-btn:hover {
  transform: scale(1.05);
}

.start-btn img {
  width: 200px;
  max-width: 80vw;
}

.btn-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: bold;
  color: #093522;
  font-size: 1rem;
  pointer-events: none;
  font-family: 'Chewy', cursive;
}

/* Responsive */
@media (max-width: 600px) {
  .quote-text {
    font-size: 1.5rem;
  }

  .btn-text {
    font-size: 0.9rem;
  }

  .start-btn img {
    width: 150px;
  }
}
/* Global background */
body {
  background-color: #83956E;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* FIND LOVE PAGE STYLES */
.findlove-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 5%;
  gap: 40px;
  flex-wrap: wrap;
}

.image-container img.large-img {
  max-width: none;
  width: 500px;
  height: auto;
}

.text-content {
  max-width: 500px;
  color: #fff;
}

.text-content h1 {
  font-size: 32px;
  margin-bottom: 15px;
  font-weight: bold;
}

.text-content .pink {
  color: #ffe3f4; /* Light pink for visibility */
}

.text-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #f9f9f9;
  margin-bottom: 20px;
}

.gender-select {
  margin-bottom: 15px;
  font-size: 16px;
  color: #fff;
}

.gender-select label {
  margin-right: 15px;
  font-weight: bold;
}

.find-now-button {
  padding: 10px 20px;
  background-color: #555;
  color: #fff;
  border: none;
  border-radius: 20px;
  font-size: 16px;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.find-now-button:hover {
  background-color: #333;
}

/* Nav Bar Tweaks */
nav {
  background-color: #333;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav .logo {
  font-size: 20px;
  color: #a20a74;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 15px;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.nav-links li a.active {
  background-color: #d1127e;
  color: #fff;
  padding: 5px 10px;
  border-radius: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .findlove-section {
    flex-direction: column;
    text-align: center;
  }

  .image-container img.large-img {
    width: 300px;
  }

  .text-content {
    padding: 0 20px;
  }
}
