
/* ================================
   Global Variables
   ================================ */
:root {
  --orange: #ff6600;
  --dark: #111;
  --light: #fdfaf7;
  --lighter: #fffaf4;
  --text: #333;
  --border: #eee;
  --radius: 12px;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  --font-main: 'Inter', sans-serif;
}

/* ================================
   Base Styles
   ================================ */
body {
  margin: 0;
  font-family: var(--font-main);
  background: var(--light);
  color: var(--text);
}

/* ================================
   Navbar/Header
   ================================ */
header.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo {
  width: 48px;
  height: 48px;
}

.logo-text {
  font-weight: 700;
  font-size: 1.4rem;
  color: #111;
}

nav a {
  margin: 0 15px;
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
}

.auth-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-install {
  background: #000;
  color: #fff;
  padding: 10px 16px;
  border-radius: 24px;
  font-size: 14px;
  text-decoration: none;
}

.signup {
  background: var(--orange);
  color: #fff;
  padding: 8px 14px;
  border-radius: var(--radius);
  font-weight: 500;
  text-decoration: none;
}

/* ================================
   Hero Section
   ================================ */
main {
  text-align: center;
  padding: 80px 20px 40px;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

.hero .highlight {
  color: var(--orange);
}

.hero .subtext {
  max-width: 600px;
  margin: 0 auto 24px;
  font-size: 16px;
  color: #555;
}

.hero-form {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px auto 10px;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-form input {
  padding: 14px 18px;
  width: 300px;
  border: 1px solid #ccc;
  border-radius: var(--radius);
  font-size: 16px;
}

.hero-form button {
  background: var(--orange);
  color: #fff;
  padding: 14px 22px;
  border: none;
  border-radius: var(--radius);
  font-size: 16px;
  cursor: pointer;
}

#error {
  color: red;
  margin-top: 10px;
}

/* ================================
   How It Works Section
   ================================ */
.how-it-works {
  background: var(--lighter);
  padding: 60px 20px;
  text-align: center;
}

.how-it-works h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}

.how-image-container {
  max-width: 1000px;
  margin: 0 auto;
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.how-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
}

/* ================================
   Feature Section
   ================================ */
.feature-section {
  background: #fff;
  padding: 60px 20px;
  text-align: center;
}

.feature-heading h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.feature-heading .highlight {
  color: var(--orange);
}

.cta-button {
  background: var(--orange);
  color: #fff;
  padding: 12px 20px;
  border-radius: 24px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 40px;
}

.feature-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.feature-image {
  width: 100%;
  max-width: 600px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.feature-text {
  text-align: left;
  font-size: 15px;
  color: #444;
  max-width: 600px;
}

.feature-text p {
  margin-bottom: 16px;
}

.feature-text ul {
  padding-left: 20px;
  list-style-type: none;
}

.feature-text li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 1.5em;
}

.feature-text li::before {
  content: "🔥";
  position: absolute;
  left: 0;
  top: 0;
}

/* ================================
   Comments Section
   ================================ */
.comments-section {
  background-color: #fff;
  padding: 80px 20px;
}

.comments-container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.comments-image img {
  max-width: 480px;
  width: 100%;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.comments-text {
  max-width: 560px;
  color: #333;
}

.comments-text h2 {
  font-size: 1.75rem;
  margin-bottom: 16px;
}

.comments-text .highlight {
  color: var(--orange);
}

.comments-text p {
  font-size: 16px;
  color: #555;
  margin-bottom: 16px;
}

.comments-text ul {
  padding-left: 20px;
  list-style: none;
}

.comments-text ul li {
  margin-bottom: 12px;
  font-size: 15px;
  color: #444;
}

.try-btn {
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 12px 20px;
  font-size: 14px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  cursor: pointer;
}


/* ================================
   FAQ SECTION STYLES
   ================================ */

.faq-section {
  background: var(--lighter);
  padding: 80px 20px;
  max-width: 800px;
  margin: 0 auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* FAQ Heading */
.faq-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: var(--text);
}

/* Each FAQ Item */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}

/* Question Button */
.faq-question {
  background: none;
  border: none;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  width: 100%;
  text-align: left;
  padding: 10px 0;
  position: relative;
  transition: color 0.2s ease;
}

/* Expand/Collapse Icon */
.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 10px;
  font-size: 1.5rem;
  color: var(--text);
  transition: transform 0.2s ease;
}

/* Active State */
.faq-question.active::after {
  content: '−';
}

/* FAQ Answer (Collapsible Content) */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: #555;
  font-size: 15px;
  padding: 0;
}

/* Inner paragraph spacing */
.faq-answer p {
  margin: 10px 0 0;
}

/* Responsive Tweaks */
@media (max-width: 600px) {
  .faq-section {
    padding: 60px 16px;
  }

  .faq-section h2 {
    font-size: 1.75rem;
  }

  .faq-question {
    font-size: 1rem;
  }
}


/* ================================
   Footer - Horizontal Layout
   ================================ */
.site-footer {
  background-color: #f8f8f8;
  padding: 60px 20px 30px;
  font-size: 14px;
  color: #333;
  border-top: 1px solid #e0e0e0;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 60px;
}

.footer-left {
  max-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo {
  height: 70px;
  margin-bottom: 20px;
}

.footer-left p {
  margin: 0;
  color: #555;
  line-height: 1.6;
  font-size: 15px;
}

.footer-links {
  display: flex;
  gap: 100px;
  flex: 1;
  justify-content: space-between;
}

.footer-column h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #222;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a {
  text-decoration: none;
  color: #555;
  transition: color 0.2s ease;
}

.footer-column ul li a:hover {
  color: #000;
}

.footer-bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  padding-top: 20px;
  border-top: 1px solid #e0e0e0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #777;
}

.instagram-icon {
  height: 20px;
  width: 20px;
}


/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
}





/* ================================
   Responsive Design
   ================================ */
@media (max-width: 768px) {
  .comments-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .comments-text {
    max-width: 100%;
    padding: 0 10px;
  }

  .comments-text ul {
    text-align: left;
    padding-left: 30px;
  }

  .comments-text h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .nav-home,
  .nav-how,
  .nav-faqs {
    display: none !important;
  }
}


.btn-download-app {
  background: var(--orange);
  color: #fff;
  padding: 10px 16px;
  border-radius: 24px;
  font-size: 14px;
  text-decoration: none;
  font-weight: 500;
}

