/* GENERAL ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap');
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700&display=swap");
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Inter', sans-serif;
color: #000;
}
a {
text-decoration: none;
color: black;
}

/* NAV BAR ---------- */
.nav-container {
position: absolute;
top: 0;
left: 0;
right: 0;
padding-top: 1rem;
z-index: 100;
background-color: transparent;
}
.navbar {
display: flex;
justify-content: space-between;
align-items: center;
width: 100%;
padding: 32px;
}
.nav-links {
list-style: none;
display: flex;
gap: 1.5rem;
margin: 0;
padding: 0;
}
.nav-links li a {
text-decoration: none;
color: #717171;
font-size: 1rem;
transition: color 0.3s;
}
.nav-links li a:hover {
color: #000;
}

/* LOGO ---------- */
.logo {
font-size: 1.5rem;
font-weight: bold;
}
.logo a {
text-decoration: none;
color: black;
}

/* START-HERO SECTION ---------- */
.hero {
height: 100vh;
background: linear-gradient(to bottom, #f3cfc1 0%, #dfe8e5 100%);;
background-repeat: no-repeat;
background-position: center center;
background-size: cover; 
display: flex;
align-items: center;
position: relative;
}
.hero-content {
margin-left: 2rem;  
}
.hero-title {
font-size: 3rem;
margin-bottom: 1rem;
line-height: 1.2;
max-width: 1000px;
}
.hero-subtitle {
font-size: 1.25rem;
margin-bottom: 1.5rem;
line-height: 1.6;
max-width: 900px; 
color: #444;
}
.hero-button {
background-color: #040404;
color: #fff;
font-size: 1rem;
padding: 0.75rem 1.5rem;
border: none;
border-radius: 20px;
transition: background-color 0.3s;
}
.hero-button:hover {
background-color: #444;
}

/* START-BENEFITS SECTION ---------- */
.benefits-bg {
width: 100%;
background: linear-gradient(to top, #f3cfc1 0%, #dfe8e5 100%);;
background-repeat: no-repeat;
background-position: top center;
background-size: cover; 
padding-bottom: 2rem;
}
.benefits {
max-width: 1200px;    
margin: 0 auto;   
padding: 2rem 1rem; /* Top/bottom and right/left */   
}
.benefit {
display: flex;
align-items: center;
justify-content: space-between;
gap: 2rem;            
margin-bottom: 2rem;   
}
.benefit.reverse {
flex-direction: row-reverse;
}
.benefit-image {
width: 50%;
height: auto;
object-fit: cover; 
display: block;   
border-radius: 50px; 
}
.benefit-text {
width: 50%;
}
.benefit-text h2 {
font-size: 2rem;
margin-bottom: 1rem;
line-height: 1.2;
}
.benefit-text p {
font-size: 1.125rem; 
line-height: 1.5;
}

/* FOOTER ---------- */
.meet-dreampals {
min-height: 100vh; 
text-align: center;
padding: 0 1rem 4rem 1rem;
background: url("aboutus-footer-bg.png") no-repeat center center;
background-size: cover;
display: flex;
flex-direction: column;
}
.meet-container {
max-width: 1000px;
margin: 0 auto;
text-align: center;
}
.meet-container.top {
padding-top: 5rem;
}
.meet-title {
font-size: 2.5rem;
margin-bottom: 1rem;
line-height: 1.2;
}
.meet-subtitle {
font-size: 1.125rem;
line-height: 1.5;
color: #444;
margin-bottom: 2rem;
}
.meet-button {
background-color: #040404;
color: #fff;
font-size: 1rem;
padding: 0.75rem 1.5rem;
border: none;
border-radius: 20px;
cursor: pointer;
transition: background-color 0.3s;
}
.meet-button:hover {
background-color: #444;
}

/* Dark Mode Gradient Backgrounds */
body.dark-mode {
    background: linear-gradient(to bottom, #c48b84 0%, #12213c 100%);
  }
  
  .dark-mode .hero {
    background: linear-gradient(to bottom, #c48b84 0%, #12213c 100%);;
  }
  
  .dark-mode .benefits-bg {
    background: linear-gradient(to top, #c48b84 0%, #12213c 100%);;
  }
  
  /* Text and element colors for dark mode */
  .dark-mode {
    color: #f0f0f0;
  }
  
  .dark-mode a,
  .dark-mode .logo a,
  .dark-mode .hero-subtitle {
    color: lightgray;
  }
  
  .dark-mode .nav-links li a {
    color: lightgray;
  }
  
  .dark-mode .nav-links li a:hover {
    color: #ffffff;
  }
  
  .dark-mode .hero-button,
  .dark-mode .meet-button {
    background-color: #ffffff;
    color: #000;
  }
  
  /* Toggle Button Styles */
  .theme-toggle {
    margin-left: auto;
    padding-right: 1rem;
  }
  
  #darkModeToggle {
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    padding: 0.5rem;
    transition: transform 0.3s ease;
  }
  
  #darkModeToggle:hover {
    transform: scale(1.1);
  }