:root {
  --primary-orange: #c34b12;
  --white: #ffffff;
  --grey-900: #2e2e2e;
  --grey-700: #495057;
  --grey-400: #ced4da;
  --beige-50: #fdfcfa;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Lato", sans-serif;
  line-height: 1.8;
  color: var(--grey-900);
  background-color: var(--beige-50);
  overflow-x: hidden;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Header */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1.5rem 0;
  transition: all 0.3s ease;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: var(--primary-orange);
  text-decoration: none;
  transition: transform 0.3s ease, color 0.3s ease;
}

.logo:hover {
  color: var(--grey-900);
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--grey-900);
  font-weight: 500;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary-orange);
}

.cta-button {
  background: var(--primary-orange);
  color: var(--white);
  padding: 12px 28px;
  border: none;
  border-radius: 50px;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(195, 75, 18, 0.3);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-image: url("../assets/party.png");
  background-size: cover;
  background-position: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-text h1 {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 4rem;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
}

.hero-text h2 {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 2rem;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeInUp 1s ease 0.2s forwards;
}

.hero-text p {
  font-family: "Lato", sans-serif;
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  animation: fadeInUp 1s ease 0.4s forwards;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  animation: fadeInUp 1s ease 0.6s forwards;
}

.btn-primary {
  background: var(--primary-orange);
  color: var(--white);
  padding: 16px 32px;
  border: none;
  border-radius: 50px;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  padding: 16px 32px;
  border: 2px solid var(--white);
  border-radius: 50px;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--primary-orange);
}

/* How It Works */
.how-it-works {
  padding: 6rem 0;
  background: var(--white);
}

.section-title {
  text-align: center;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 3rem;
  margin-bottom: 3rem;
  color: var(--grey-900);
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--primary-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--white);
}

.step h3 {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--grey-900);
}

.step p {
  font-family: "Lato", sans-serif;
  font-size: 1.3rem;
  color: var(--grey-700);
  line-height: 1.8;
}

/* Testimonials */
.testimonials {
  padding: 6rem 0;
  background: var(--beige-50);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-left: 4px solid var(--primary-orange);
  transition: transform 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-5px);
}

.testimonial-content {
  font-family: "Lato", sans-serif;
  font-style: italic;
  font-size: 1.3rem;
  color: var(--grey-700);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.testimonial-author {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--grey-900);
}

.testimonial-role {
  font-family: "Lato", sans-serif;
  font-size: 1.1rem;
  color: var(--primary-orange);
}

/* CTA Section */
.cta-section {
  padding: 6rem 0;
  background: var(--primary-orange);
  color: var(--white);
  text-align: center;
}

.cta-section h2 {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
}

.cta-section p {
  font-family: "Lato", sans-serif;
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.app-badges {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.app-badge {
  display: inline-block;
  transition: transform 0.3s ease;
}

.app-badge:hover {
  transform: scale(1.05);
}

.app-badge img {
  height: 60px;
  border-radius: 10px;
}

/* Footer */
footer {
  background: var(--grey-900);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.footer-section h3 {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.footer-section a {
  font-family: "Lato", sans-serif;
  font-size: 1.2rem;
  color: var(--grey-400);
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--primary-orange);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--grey-700);
  color: var(--grey-400);
  font-size: 1.2rem;
}

/* Help, Security, Terms, Privacy, and Contact Pages */
.help,
.security,
.terms,
.privacy,
.contact {
  padding: 8rem 0;
  background: var(--beige-50);
}

.help-section,
.security-section,
.terms-section,
.privacy-section,
.contact-section {
  margin-bottom: 3rem;
  padding: 2.5rem;
  background: var(--white);
  border: 2px solid var(--primary-orange);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.help-section:hover,
.security-section:hover,
.terms-section:hover,
.privacy-section:hover,
.contact-section:hover {
  transform: translateY(-5px);
}

.help-section h3,
.security-section h3,
.terms-section h3,
.privacy-section h3,
.contact-section h3 {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--grey-900);
  margin-bottom: 1.5rem;
}

.help-section p,
.security-section p,
.terms-section p,
.privacy-section p,
.contact-section p {
  font-family: "Lato", sans-serif;
  font-size: 1.3rem;
  color: var(--grey-700);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.help-section ul,
.security-section ul,
.terms-section ul,
.privacy-section ul,
.contact-section ul {
  font-family: "Lato", sans-serif;
  font-size: 1.3rem;
  color: var(--grey-700);
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.help-section li,
.security-section li,
.terms-section li,
.privacy-section li,
.contact-section li {
  margin-bottom: 0.75rem;
}

.help-section a,
.security-section a,
.terms-section a,
.privacy-section a,
.contact-section a {
  color: var(--primary-orange);
  text-decoration: none;
  transition: color 0.3s ease;
}

.help-section a:hover,
.security-section a:hover,
.terms-section a:hover,
.privacy-section a:hover,
.contact-section a:hover {
  color: var(--grey-900);
}

.help-subsection {
  margin-bottom: 2.5rem;
  padding: 2rem;
  background: var(--beige-50);
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.help-subsection h4 {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--grey-900);
  margin-bottom: 1rem;
}

.help-subsection h5 {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--grey-900);
  margin-bottom: 0.75rem;
  margin-top: 1.5rem;
}

.contact-form {
  background: var(--white);
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 3rem;
}

.contact-form h4 {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--grey-900);
  margin-bottom: 1.5rem;
}

.contact-form h5 {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--grey-900);
  margin-bottom: 1rem;
}

.contact-form label {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--grey-900);
  display: block;
  margin-bottom: 0.75rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1.2rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--grey-400);
  border-radius: 8px;
  font-family: "Lato", sans-serif;
  font-size: 1.3rem;
  color: var(--grey-900);
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary-orange);
  outline: none;
}

.contact-form button {
  background: var(--primary-orange);
  color: var(--white);
  padding: 16px 32px;
  border: none;
  border-radius: 50px;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(195, 75, 18, 0.3);
}

.effective-date {
  font-family: "Lato", sans-serif;
  font-size: 1.3rem;
  color: var(--grey-700);
  margin-bottom: 3rem;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .hero-text h1 {
    font-size: 3rem;
  }

  .hero-text h2 {
    font-size: 1.6rem;
  }

  .nav-links {
    display: none;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .app-badges {
    flex-direction: column;
    align-items: center;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .help-section h3,
  .security-section h3,
  .terms-section h3,
  .privacy-section h3,
  .contact-section h3 {
    font-size: 1.6rem;
  }

  .help-section p,
  .help-section li,
  .security-section p,
  .security-section li,
  .terms-section p,
  .terms-section li,
  .privacy-section p,
  .privacy-section li,
  .contact-section p,
  .contact-section li {
    font-size: 1.2rem;
  }

  .help-section h4,
  .security-section h4,
  .terms-section h4,
  .privacy-section h4,
  .contact-section h4 {
    font-size: 1.4rem;
  }

  .help-section h5,
  .security-section h5,
  .terms-section h5,
  .privacy-section h5,
  .contact-section h5 {
    font-size: 1.2rem;
  }

  .contact-form {
    padding: 2rem;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 1.2rem;
  }

  .contact-form button {
    font-size: 1.2rem;
  }

  .help-section,
  .security-section,
  .terms-section,
  .privacy-section,
  .contact-section {
    padding: 2rem;
  }

  .help-subsection {
    padding: 1.5rem;
  }
}
