/* Reset and base styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: "Jost", Arial, sans-serif;
  color: #212121;
  background: #faf9f7;
  padding-top: 90px; /* Adjust this value to match the header height */
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  /* Add top padding to prevent content from being hidden under the fixed header */
}

/* Header */
header {
  background: #fff;
  border-bottom: 1px solid #eee;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
}
.logo {
  margin-right: 2rem;
}
.logo img {
  width: 120px;
}
.menu-button {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  margin-left: 1rem;
  order: 3;
}
.menu-button span {
  display: block;
  width: 24px;
  height: 2px;
  background: #212121;
  margin: 5px 0;
  transition: all 0.3s ease;
}
nav {
  display: flex;
  align-items: center;
  flex: 1;
}
nav a {
  margin: 0 1rem;
  color: #212121;
  text-decoration: none;
  font-weight: 500;
}
.btn-primary {
  background: #212121;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  margin-left: 2rem;
}

/* Hero */
.hero {
  background: #faf9f7;
  padding: 2rem 0 3rem 0;
}
.hero-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 4rem;
}
.hero-text {
  flex: 1 1 550px;
  padding-top: 2rem;
}
.hero-text h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}
.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
.free-text p {
  font-size: 0.75rem;
  margin-bottom: 0.5rem;
}
.store-buttons {
  display: flex;
}
.store-buttons-mobile {
  display: none;
}
.btn-store {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 16px;
  gap: 16px;

  width: 180px;
  height: 56px;

  background: #ffffff;
  border-radius: 4px;

  color: #212121;
  padding: 0.75rem 1rem;
  border-radius: 4px;
  text-decoration: none;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
}
.hero-images {
  flex: 1 1 350px;
  display: flex;
  justify-content: center;
  position: relative;
  height: 270px;
  margin-top: 0;
}
.hero-images img {
  width: 170px;
  border-radius: 1.5rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  position: absolute;
  transition: box-shadow 0.2s;
}
.hero-images img:first-child {
  left: 0;
  top: 80px;
  z-index: 2;
}
.hero-images img:last-child {
  top: 0;
  left: 180px;
  z-index: 1;
}
.hero-images-mobile {
  display: none;
}

/* Features */
.features {
  background: #fff;
  padding: 8rem 0 4rem;
}
.features h2 {
  font-size: 2.75rem;
  margin-bottom: 2rem;
  font-weight: 600;
}
.features h1 {
  font-size: 1rem;
  font-weight: 500;
  color: #929292;
  letter-spacing: 8px;
  text-transform: uppercase;
}
.features .container {
  display: flex;
  flex-direction: column;
}
.features-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
}
.features-list {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 1.5rem;
}
.features-image {
  display: flex;
  align-items: start;
  background: url("assets/looks.jpg");
  background-position: top center;
}
.feature-card {
  background: #ffffff;
  border: 1px solid #bebebe;
  border-radius: 4px;
  padding: 1.5rem;
  flex: 1;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.feature-card.active {
  background: #f2f0ee;
  border: 0;
}
.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #212121;
  font-family: "Playfair Display", "Jost", serif;
}
.feature-card p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.2;
  color: #212121;
  font-family: "Jost", Arial, sans-serif;
}

/* About */
.about {
  background: #faf9f7;
  padding: 4rem 0;
}
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
.about-image {
  flex: 0 0 500px;
  display: flex;
}
.about-image-mobile {
  display: none;
}
.about-image img {
  width: 100%;
  max-width: 500px;
}
.about-text {
  flex: 1 1 0;
}
.about-text h1 {
  font-size: 0.75rem;
  font-weight: 500;
  color: #929292;
  letter-spacing: 8px;
  text-transform: uppercase;
}
.about-text h2 {
  font-size: 2.75rem;
  margin-bottom: 1rem;
  font-family: "Playfair Display", "Jost", serif;
  font-weight: 600;
  color: #212121;
}
.about-text p {
  margin-bottom: 1.5rem;
}

/* FAQ */
.faq {
  background: #fff;
  padding: 4rem 0;
}
.faq h1 {
  font-size: 1rem;
  font-weight: 500;
  color: #929292;
  letter-spacing: 8px;
  text-transform: uppercase;
  text-align: center;
}
.faq h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
  font-family: "Playfair Display", "Jost", serif;
}

.faq-content {
  display: grid;
  grid-template-columns: 1fr 0.5fr;
  gap: 3rem;
  align-items: start;
}

.accordion {
  max-width: 100%;
  margin-bottom: 2rem;
  border: 1px solid #f2f0ee;
  background: #ffffff;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  overflow: hidden;
}
.accordion-item {
  border-bottom: 1px solid #f2f0ee;
}
.accordion-item:last-child {
  border-bottom: none;
}
.accordion-title {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 1.5rem;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
  font-family: "Jost", Arial, sans-serif;
  color: #212121;
}
.accordion-content {
  padding: 0 3.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  border-top: 1px solid #f2f0ee;
}
.accordion-item.active .accordion-content {
  padding: 2rem 2rem 3.5rem;
  max-height: 1000vh;
  opacity: 1;
  visibility: visible;
}
.accordion-item.active .accordion-title {
  font-weight: 600;
}
.accordion-title::after {
  content: "\276F";
  font-size: 1rem;
  transition: transform 0.3s ease;
}
.accordion-item.active .accordion-title::after {
  transform: rotate(90deg);
}
.faq-image {
  display: flex;
  justify-content: center;
  align-items: center;
}
.faq-image img {
  width: 300px;
  border-radius: 1rem;
}

/* Footer */
footer {
  background: #faf9f7;
  padding: 2rem 0;
  text-align: center;
  color: #888;
  font-size: 1rem;
}
footer p {
  font-weight: 300;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-content,
  .about-content,
  .features-list {
    flex-direction: column;
  }
  .hero-images,
  .features-image,
  .about-content {
    flex-direction: column;
  }
  .about {
    padding: 1rem 0;
  }
  .about-content {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .about-image img {
    display: none;
  }
  .about-image-mobile img {
    width: 100%;
    height: auto;
    margin-bottom: 1.5rem;
  }
  .about-text h2 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
  }
  .about-text p {
    font-size: 1rem;
    line-height: 1.2;
    margin-bottom: 0.5rem;
  }
  .hero {
    padding-bottom: 0;
  }
  .hero-content {
    flex-direction: column;
    gap: 0;
  }
  .hero-text {
    flex: 1;
    padding-top: 0;
  }
  .hero-text h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  .hero-text p {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  .free-text p {
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
  }
  .store-buttons-mobile {
    display: flex;
    margin-top: -15rem;
    margin-left: -4px;
    padding: 15rem 0 2rem;

    a img {
      max-width: 120px;
      padding: 0;
    }
  }
  .hero-images {
    display: none;
  }
  .hero-images-mobile {
    display: flex;
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow: hidden;
  }

  .hero-images-mobile img {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-width: 100%;
    display: block;
  }

  .btn-store {
    display: flex;
    flex-direction: row;
    gap: 16px;
    padding: 0;
    background: none;

    width: 120px;
    height: 40px;
  }

  .hero-images img {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
  }
  .hero-images img:first-child {
    left: 50%;
    transform: translateX(-50%);
    top: 0;
  }
  .hero-images img:last-child {
    display: none;
  }
  .store-buttons {
    display: none;
  }
  .features {
    padding-top: 3rem;
  }
  .features-image img {
    width: 100%;
    max-width: 350px;
  }
  .faq-content {
    grid-template-columns: 1fr;
  }
  .accordion-title {
    padding: 1.25rem;
    font-size: 1rem;
  }
  .accordion-content {
    padding: 0 1.25rem;
  }
  .accordion-item.active .accordion-content {
    padding: 1.25rem;
  }
  .faq-image {
    display: none;
  }
  .logo {
    margin-right: 0;
  }
  .menu-button {
    display: block;
    order: 3;
    margin-right: 1.5rem;
  }
  header .container {
    justify-content: space-between;
  }
  .btn-primary {
    display: none !important;
  }
  nav {
    position: fixed;
    top: 90px;
    left: 0;
    width: 100%;
    height: calc(100vh - 90px);
    background: #fff;
    padding: 2rem;
    flex-direction: column;
    align-items: flex-start;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    order: 4;
  }
  nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  nav a {
    margin: 1rem 0;
    width: 100%;
    padding: 0.75rem 0;
    font-size: 1.25rem;
    border-bottom: 1px solid #f2f0ee;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #212121;
  }
  nav a i {
    font-size: 1.5rem;
    width: 24px;
    text-align: center;
    color: #212121;
    display: inline-block;
  }
  nav a:last-child {
    border-bottom: none;
  }
  .mobile-download-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    margin-top: 2rem;
    padding: 1rem;
    text-align: center;
    background: #212121;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
  }
  .mobile-download-btn i {
    font-size: 1.25rem;
    color: #fff;
    display: inline-block;
  }
  .menu-button.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .menu-button.active span:nth-child(2) {
    opacity: 0;
  }
  .menu-button.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

  .features .container h1 {
    font-size: 0.75rem;
  }

  .features .container h2 {
    font-size: 1.25rem;
  }

  .features-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .features-image {
    background: url("assets/looks-mobile.png");
    height: 222px;
    order: -1;
    margin-bottom: 1rem;
  }

  .features-list {
    grid-template-rows: auto;
    gap: 1rem;
  }

  .features-image img {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
  }

  .feature-card {
    padding: 1.25rem;
  }

  .feature-card h3 {
    font-size: 1.25rem;
  }

  .features h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }

  .faq {
    padding: 2rem 0;
  }

  .faq .container h1 {
    font-size: 0.75rem;
    text-align: start;
  }

  .faq .container h2 {
    font-size: 1.25rem;
    text-align: start;
  }

  .faq h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
  }

  .accordion-content p {
    font-size: 1rem;
    font-family: "Jost", Arial, sans-serif;
  }
}

.font-playfair {
  font-family: "Playfair Display", "Jost", serif;
}

/* Privacy Policy Styles */
.privacy-policy {
  padding: 80px 0;
  background-color: #fff;
}

.privacy-policy h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
  color: #333;
}

.privacy-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.privacy-content h2 {
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
  color: #333;
}

.privacy-content p {
  margin-bottom: 1rem;
  line-height: 1.6;
  color: #666;
}

.privacy-content ul {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.privacy-content li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
  color: #666;
}

.privacy-content a {
  color: #333;
  text-decoration: underline;
}

.privacy-content a:hover {
  color: #666;
}

@media (max-width: 768px) {
  .privacy-policy {
    padding: 40px 0;
  }

  .privacy-policy h1 {
    font-size: 2rem;
  }

  .privacy-content h2 {
    font-size: 1.3rem;
  }
}
