/*
 * Shared stylesheet for the Lemonade Life MVP site.
 *
 * A dark theme with bright accents evokes the playful,
 * energetic vibe of turning life's lemons into lemonade.
 */

:root {
  --background-color: #111111;
  --primary-color: #fdd835; /* lemon yellow accent */
  --secondary-color: #ffffff;
  --card-bg-color: #1a1a1a;
  --font-family: 'Poppins', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  background-color: var(--background-color);
  color: var(--secondary-color);
  line-height: 1.6;
}

/* Navigation styling */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
}

.nav .logo {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
}

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

.nav ul li {
  margin-left: 1.5rem;
}

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

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

/* Hero section styling */
.hero {
  height: 90vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-overlay {
  background-color: rgba(0, 0, 0, 0.55);
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
}

.hero-overlay h1 {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.hero-overlay p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.btn {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--background-color);
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn:hover {
  background-color: var(--secondary-color);
  color: var(--background-color);
  transform: translateY(-2px);
}

.btn.small {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

/* Experience section styling */
.experiences {
  padding: 5rem 2rem;
  margin-top: 80px; /* offset for fixed header */
}

.experiences h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--primary-color);
}

.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.card {
  background-color: var(--card-bg-color);
  padding: 2rem;
  border-radius: 10px;
  width: 260px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.card h3 {
  margin-top: 1rem;
  color: var(--primary-color);
}

.card p {
  margin: 1rem 0 1.5rem;
  font-size: 0.95rem;
}

#qr1, #qr2, #qr3, #qr4 {
  margin: 0 auto;
  width: 128px;
  height: 128px;
}

/* Footer styling */
footer {
  text-align: center;
  padding: 1rem 0;
  background-color: rgba(0, 0, 0, 0.8);
  color: var(--secondary-color);
  margin-top: 2rem;
  font-size: 0.8rem;
}

/* Experience pages specific styles */
.experience-hero {
  height: 60vh;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.experience-content {
  padding: 4rem 2rem;
  text-align: center;
}

.experience-content h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

@media (max-width: 768px) {
  .hero-overlay h1 {
    font-size: 2.5rem;
  }
  .hero-overlay p {
    font-size: 1rem;
  }
  .nav ul li {
    margin-left: 1rem;
  }
  .card {
    width: 100%;
  }
}

/* About page styling */
.about {
  padding: 4rem 2rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.about h2 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.about p {
  margin-bottom: 2rem;
  font-size: 1rem;
}

/* Contact page styling */
.contact {
  padding: 4rem 2rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.contact form {
  display: flex;
  flex-direction: column;
}

.contact label {
  margin-bottom: 0.5rem;
  color: var(--primary-color);
  font-weight: 600;
}

.contact input,
.contact textarea {
  padding: 0.7rem;
  border: none;
  border-radius: 5px;
  margin-bottom: 1.5rem;
  background-color: #222222;
  color: var(--secondary-color);
}

.contact textarea {
  resize: vertical;
  min-height: 120px;
}

.contact button {
  align-self: flex-start;
  cursor: pointer;
}