/* Lemonaid Website Styles */

/* Import Google Fonts - Inter */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-green: #b2ec5d;
  --lemon-yellow: #f2f26b;
  --background-color: #fff8e1;
  --text-color: #333333;
  --section-padding: 80px 20px;
}

body {
  font-family: "Inter", sans-serif;
  background-color: var(--background-color);
  color: var(--text-color);
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 20px;
  font-weight: 700;
}

h1 {
  font-size: 3.5rem;
  color: #333;
}

h2 {
  font-size: 2.5rem;
  color: #333;
}

h3 {
  font-size: 1.8rem;
}

p {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

/* Header & Navigation */
header {
  padding: 20px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  background-color: rgba(242, 242, 127, 1);
  backdrop-filter: blur(5px);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--text-color);
}

.logo img {
  height: 40px;
  margin-right: 10px;
}

.logo img.small-logo {
  height: 48px;
  width: auto;
  border-radius: 10px;
  margin-right: 10px;
  min-height: 4px;
}

.logo h1 {
  font-size: 1.8rem;
  margin: 0;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 30px;
}

nav ul li a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  transition: color 0.3s;
}

nav ul li a:hover,
nav ul li a.active {
  color: var(--primary-green);
}

/* Introduction Section */
.introduction {
  padding: var(--section-padding);
  background-color: rgba(255, 248, 225, 0.9);
}

.intro-container {
  display: flex;
  align-items: center;
  /* gap: 50px; */
}

.intro-text {
  flex: 1;
}

.intro-image {
  flex: 1;
  text-align: center;
}

.intro-image img {
  max-width: 100%;
}

/* Download Section */
.download {
  padding: var(--section-padding);
  background: linear-gradient(
    135deg,
    var(--primary-green) 0%,
    var(--lemon-yellow) 100%
  );
  text-align: center;
}

.download h2 {
  margin-bottom: 30px;
}

.store-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.store-button {
  display: inline-block;
  padding: 15px 30px;
  background-color: #333;
  color: white;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  transition: transform 0.3s, background-color 0.3s;
}

.store-button:hover {
  transform: translateY(-5px);
  background-color: #222;
}

.store-button.app-store {
  background-color: transparent;
  padding: 0;
}

.store-button.app-store:hover {
  background-color: transparent;
  transform: translateY(-5px);
}

.store-button.app-store img {
  height: 40px;
  width: auto;
}

/* Footer */
footer {
  padding: 40px 20px;
  background-color: #333;
  color: white;
  text-align: center;
}

.footer-links {
  margin-bottom: 20px;
}

.footer-links a {
  color: white;
  margin: 0 15px;
  text-decoration: none;
  padding: 5px 10px;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.footer-links a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .intro-container,
  .insights-container,
  .problem-content,
  .feature-content {
    flex-direction: column;
  }

  .problem-phone,
  .feature-text,
  .feature-phones {
    flex: 0 0 100%;
    margin-bottom: 30px;
  }

  .problem-header,
  .feature-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .problem-header h2,
  .feature-header h2 {
    margin-bottom: 5px;
  }

  .feature-phones {
    height: 700px;
  }

  .phone-item {
    width: 40%;
  }

  .phone-item:nth-child(1) {
    top: 5%;
    left: 10%;
    width: 35%;
  }

  .phone-item:nth-child(2) {
    top: 5%;
    right: 10%;
    width: 35%;
  }

  .phone-item:nth-child(3) {
    top: 35%;
    left: 10%;
    width: 35%;
  }

  .phone-item:nth-child(4) {
    top: 35%;
    right: 10%;
    width: 35%;
  }

  .phone-item:nth-child(5) {
    top: 65%;
    left: 30%;
    width: 40%;
  }

  .store-buttons {
    flex-direction: column;
    align-items: center;
  }

  nav ul {
    display: none;
  }
}
