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

body, html {
  font-family: 'Segoe UI', sans-serif;
  background-color: #fff;
  color: #222;
}

/* Navbar */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 2rem;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  height: 45px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links li a {
  text-decoration: none;
  color: #444;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #e36414;
}

.nav-cta .btn {
  padding: 0.6rem 1.2rem;
  background: #e36414;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
}

/* Hero Section */
.hero {
  background: linear-gradient(to right, #fff5e6, #ffe6cc);
  padding: 4rem 2rem;
}

.hero-content {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 2rem;
  text-align: center;
}

.hero-text h1 {
  font-size: 2.2rem;
  color: #222;
}

.hero-text p {
  font-size: 1.1rem;
  margin: 1rem 0;
  color: #555;
}

.hero-text .btn {
  background: #222;
  color: #fff;
  padding: 0.7rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
}

.hero-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
}

/* Responsive Layout */
@media(min-width: 768px) {
  .hero-content {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
  }

  .hero-text {
    flex: 1;
    padding-right: 2rem;
  }

  .hero-image {
    flex: 1;
  }
}

/* Common Styles */
.container {
  max-width: 1140px;
  margin: auto;
  padding: 2rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.5rem;
  margin: 1rem 0;
}

p {
  color: #555;
  line-height: 1.6;
}

.btn {
  background: #222;
  color: #fff;
  padding: 0.6rem 1.2rem;
  border: none;
  text-decoration: none;
  border-radius: 4px;
  display: inline-block;
  margin-top: 1rem;
}

.btn-secondary {
  background: #e36414;
}

/* Section 2: Platform Features */
.platform-section {
  background: #f9f9f9;
  text-align: center;
}

.brands {
  padding: 2rem;
}

.brand-logos {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.brand-logos img {
  height: 40px;
  max-width: 120px;
}

/* Section 3: Campaigns */
.campaign-section {
  background: #fff;
}

.campaign-info {
  text-align: center;
  margin-bottom: 2rem;
}

.recent-work .work-gallery {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.work-card {
  max-width: 250px;
  background: #f1f1f1;
  border-radius: 8px;
  overflow: hidden;
}

.work-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.work-card p {
  padding: 0.5rem;
}

/* Section 4: Influencer Grid */
.influencer-contact {
  background: #fefefe;
  padding-bottom: 4rem;
}

.influencer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.influencer-grid img {
  width: 200px;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
}

/* Contact Form */
.contact-form {
  max-width: 600px;
  margin: 3rem auto 0;
  background: #f2f2f2;
  padding: 2rem;
  border-radius: 8px;
}

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

.contact-form input,
.contact-form textarea {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 100%;
}

.contact-form button {
  background: #e36414;
  color: white;
  padding: 0.8rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

/* Footer */
.site-footer {
  background-color: #222;
  color: #eee;
  padding: 2rem 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-left,
.footer-right {
  flex: 1 1 300px;
}

.footer-logo {
  height: 40px;
  margin-bottom: 1rem;
}

.footer-right p,
.footer-left p {
  margin: 0.5rem 0;
}

.footer-right a {
  color: #ffa94d;
  text-decoration: none;
}

.footer-right a:hover {
  text-decoration: underline;
}

/* Founder Section */
.founder-section {
  background: #fff8f0;
  padding: 3rem 2rem;
}

.founder-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}

.founder-image img {
  width: 200px;
  height: 300px;
  border-radius: 12px;
  object-fit: cover;
  border: 4px solid #1B082F;
}

.founder-info {
  flex: 1;
}

.founder-info h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.founder-info h4 {
  font-size: 1.2rem;
  color: #e36414;
  margin-bottom: 1rem;
}

.founder-info p {
  line-height: 2.2;
  color: #444;
}

/* Footer CTA */
.footer-cta {
  background-color: #1e1e1e;
  color: #ffffff;
  padding: 40px 20px;
  text-align: center;
  border-radius: 10px;
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.footer-cta h2 {
  font-size: 28px;
  color: #f26b1d;
  margin-bottom: 20px;
}

.footer-cta p {
  font-size: 16px;
  line-height: 1.7;
  color: #dddddd;
  margin-bottom: 30px;
}

.footer-cta .cta-button {
  background-color: #f26b1d;
  color: #fff;
  padding: 14px 30px;
  font-size: 16px;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.footer-cta .cta-button:hover {
  background-color: #ff812f;
}

/* FAQ Section */
.faq-section {
  background-color: #f9f9f9;
  padding: 50px 20px;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 10px;
}

.faq-section h2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 30px;
  color: #1e1e1e;
}

.faq-item {
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
}

.faq-question {
  width: 100%;
  background-color: #f1f1f1;
  color: #1e1e1e;
  padding: 1em;
  font-size: 1rem;
  text-align: left;
  border: none;
  outline: none;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #e0e0e0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  background-color: #fafafa;
  border-left: 3px solid #f26b1d;
  color: #333;
  font-size: 15px;
  border-radius: 0 0 8px 8px;
  transition: max-height 0.5s ease, padding 0.3s ease;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 1000px;
  padding: 16px 20px;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}
html { scroll-behavior: smooth; }
/* ─────────────────────────────────────────────
   MOBILE‑ONLY NAVBAR TWEAKS  (≤ 768 px wide)
   ───────────────────────────────────────────── */
@media (max-width: 768px) {

  /* 1️⃣ Let items wrap instead of leaking sideways */
  .navbar {
    flex-wrap: wrap;
    padding: 0.8rem 1.2rem;
  }

  /* 2️⃣ Rearranged navbar layout for mobile */
  .logo {
    order: 1;
  }

  .nav-links {
    order: 2;
    width: 100%;
    justify-content: center;
    gap: 1rem;
    margin-top: 0.4rem;
  }

  .nav-cta {
    order: 3;
    width: 100%;
    text-align: center;
    margin-top: 0.6rem;
  }

  /* 3️⃣ Text sizing for smaller screens */
  .nav-links li a {
    font-size: 0.9rem;
  }

  .nav-cta .btn {
    font-size: 0.9rem;
    padding: 0.55rem 1.1rem;
  }
}

/* Optional: Prevent horizontal scrolling on small screens */
body {
  overflow-x: hidden;
}
