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

.content-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

body {
  font-family: "Roboto", sans-serif;
  line-height: 1.6;
  background-color: #f4f4f4;
}

header {
  background-color: transparent; /* Make the background transparent */
  padding: 1rem 2rem;
  box-shadow: none; /* Remove the shadow if needed */
  position: absolute; /* Make header sit on top of the content */
  width: 100%;
  top: 0;
  left: 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1440px;
  margin: auto;

  header img {
    height: 60px;
  }

  nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
  }

  nav ul li {
    margin: 0 10px;
  }

  nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: 500;
  }
  @media (max-width: 768px) {
    nav ul li:not(:last-child) {
      display: none; /* Hide all items except the last one (Get App button) */
    }
  }
}

.btn-get-app {
  background-color: #ff6347;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 5px;
}

.hero {
  background-image: url("assets/images/bella_banner.png");
  background-size: cover;
  background-position: center;
  height: 100%;
  display: flex;
  align-items: start;
  justify-content: center;
  padding-top: 140px;
}

.hero .content {
  color: #fff;
  text-align: center;
  font-family: "Open Sans";
  font-size: 54px;
  font-style: italic;
  font-weight: 300;
  line-height: normal;
}

.hero h1 {
  color: #fff;
  text-align: center;
  font-family: "Open Sans";
  font-size: 42px;
  font-style: italic;
  font-weight: 300;
  line-height: normal;
  max-width: 800px;
  margin: 0 auto;
}

/* Favorite Genre Section */
.favorite-genre {
  padding: 4rem 2rem;
  text-align: center;
  background-color: #fff;
}

.genre-container {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
  justify-content: center;
  align-items: center;
}

.favorite-genre h2 {
  color: #484848;
  text-align: center;
  font-family: "Open Sans";
  font-size: 44px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.genre-description {
  color: #484848;
  text-align: center;
  font-family: "Open Sans";
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.667px;
}

.genre-image img {
  width: 100%;
  /* max-width: 1000px; Adjust width if necessary */
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Adjusting for responsive design */
@media (max-width: 768px) {
  .favorite-genre h2 {
    font-size: 28px;
  }

  .genre-description {
    font-size: 16px;
  }
}

.about-section {
  padding: 4rem 2rem;
  text-align: center;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  gap: 253px;
  padding-top: 253px;
}

.about-container {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  gap: 30px;
  width: 100%;
}

.about-container-desc {
  width: 45%;
  display: flex;
  flex-direction: column;
  gap: 22px;
  text-align: left;
  justify-content: center;
}
.about-container-image {
  width: 55%;
}
.about-container-image img {
  width: 100%;
  height: auto;
  display: block;
}

.about-container-desc h2 {
  color: #484848;
  font-family: "Open Sans";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.667px;
}
.about-container-desc p {
  color: #5d5d5d;
  font-family: "Open Sans";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 35px; /* 175% */
  letter-spacing: 0.556px;
}

.about-container-desc-app-feature {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 22px;
  text-align: left;
  justify-content: start;
}
.about-container-desc-app-feature h3 {
  color: #484848;
  text-align: left;
  font-family: "Open Sans";
  font-size: 44px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.appFeature {
  display: flex;
  gap: 10px;
}
.appFeatureDesc {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.appFeatureDescTitle {
  color: #484848;
  font-family: "Open Sans";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.667px;
}

.appFeatureDescDesc {
  color: #5d5d5d;
  font-family: "Open Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 155.556% */
  letter-spacing: 0.5px;
}
.appFeatureDiv {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Footer section div */

.footer-container {
  background-color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.footer-app-div {
  background-color: #063d51;
  height: 454px;
  width: 100%;
  display: flex;
  gap: 167px;
  justify-content: center;
  align-items: center;
}

.footer-app-img-div {
  position: absolute;
  top: 0px;
  width: 100%;
  height: 100%;
  background-color: #063d51;
  opacity: 50%;
  border-radius: 30.4px;
}

.app-div {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.app-div p {
  color: #fff;
  font-family: "Open Sans";
  font-size: 24px;
  font-style: italic;
  font-weight: 300;
  line-height: normal;
}

.main-footer-div {
  background-color: #005778;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.footer-detail {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: auto;

  h4 {
    color: #fff;
    font-family: "Open Sans";
    font-size: 44px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }
  p {
    color: #fff;
    font-family: "Open Sans";
    font-size: 18px;
    font-style: italic;
    font-weight: 300;
    line-height: normal;
  }
}

.footer-nav {
  color: #fff;
  font-family: "Open Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1440px;
  margin: auto;

  header img {
    height: 60px;
  }

  nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
  }

  nav ul li {
    margin: 0 10px;
  }

  nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: 500;
  }

  p {
    color: #c0c0c0;
    font-family: "Open Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 40px;
  }
}

.desktop-view-header {
  display: flex !important;
}
.mobile-view-header {
  display: none !important;
}

/* Already defined for wider screens */
@media (max-width: 768px) {
  /* Hero section text size for small screens */
  .hero {
    padding-top: 20px;
  }
  .content {
    padding-top: 70px;
  }

  .hero h1 {
    font-size: 30px;
    padding: 0px 10px;
  }

  /* Favorite Genre section adjustments */
  .favorite-genre h2 {
    font-size: 28px;
  }

  .genre-description {
    font-size: 16px;
  }

  .about-container-desc-app-feature {
    width: 100%;
  }

  .header-container {
    justify-content: space-between;
    padding: 0px;
  }

  .footer-nav {
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: center;

    nav ul {
      list-style: none;
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }

    .desktop-view-header {
      display: none !important;
    }
    .mobile-view-header {
      display: flex !important;
    }
    p {
      padding: 20px;
    }
  }
  .about-container {
    flex-direction: column; /* Stack the image and text on smaller screens */
    gap: 40px;
  }
  .about-container-reverse {
    flex-direction: column-reverse !important ;
  }

  .about-container-image,
  .about-container-desc {
    width: 100%; /* Set each section to full width */
    gap: 22px;
  }

  /* Footer section layout for small screens */
  .footer-app-div {
    flex-direction: column;
    gap: 30px;
    height: auto;
  }
}

/* Further adjustments for very small screens */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 24px;
  }

  .genre-image img {
    max-width: 100%;
    height: auto;
  }
}

/* Footer app div base styles */
.footer-app-div {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  padding: 20px;
  gap: 20px; /* Space between app-div items */
}

.app-div {
  text-align: center;
}

.app-div img {
  width: 160px;
  height: 160px;
}

.app-div p {
  margin-top: 10px;
  font-size: 16px;
}

/* Responsive for tablets */
@media (max-width: 768px) {
  .footer-app-div {
    flex-direction: row;
    justify-content: space-between;
  }

  .app-div img {
    width: 120px;
    height: 120px;
  }

  .app-div p {
    font-size: 14px;
  }
}

/* Responsive for mobile phones */
@media (max-width: 480px) {
  .footer-app-div {
    flex-direction: column;
    gap: 30px;
  }

  .app-div img {
    width: 100px;
    height: 100px;
  }

  .app-div p {
    font-size: 12px;
  }
}

.download-footer-container {
  background-color: #fff8f6;
  width: 100%;
  height: 546px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.download-footer-container-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 1440px;
  width: 100%;
  margin: auto;
}

.download-app-sec {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;

  p {
    color: #000;
    text-align: center;
    font-family: "Open Sans";
    font-size: 45px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }
}

.app-download-icon {
  display: flex;
  gap: 20px;
  margin: 0px 10px;
}

.dummy-mobile-container {
  display: block;
}

.store-div {
  width: "222px";
  height: "75px";
  cursor: pointer;
}

@media (max-width: 1024px) {
  .download-app-sec {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;

    p {
      color: #000;
      text-align: center;
      font-family: "Open Sans";
      font-size: 25px;
      font-style: normal;
      font-weight: 400;
      line-height: normal;
    }
  }

  /* Reduce padding for mobile devices */
  .about-section {
    padding: 2rem 1rem;
    gap: 50px;
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .about-container-desc h2 {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.667px;
  }
  .about-container-desc p {
    font-size: 18px;
    font-weight: 400;
    line-height: 30px; /* 175% */
    letter-spacing: 0.556px;
  }

  .about-container-desc-app-feature {
    gap: 15px;
  }
  .about-container-desc-app-feature h3 {
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }

  .appFeatureDiv {
    gap: 30px;
  }

  .appFeatureDesc {
    gap: 5px;
  }

  .appFeatureDescTitle {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.667px;
  }

  .appFeatureDescDesc {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.5px;
  }
}

@media (max-width: 768px) {
  .btn-get-app {
    padding: 0.4rem 0.9rem;
    font-size: 14px;
  }

  header {
    padding: 0.5rem 1rem;
  }

  .app-download-icon {
    gap: 10px;
  }

  .dummy-mobile-container {
    display: none;
  }

  .about-container-desc h2 {
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.667px;
  }
  .about-container-desc p {
    font-size: 15px;
    font-weight: 400;
    line-height: 25px; /* 175% */
    letter-spacing: 0.556px;
  }

  /* Reduce padding for mobile devices */
  .about-section {
    padding-top: 65px;
    padding-bottom: 65px;
  }

  .about-container-desc-app-feature {
    gap: 12px;
  }
  .about-container-desc-app-feature h3 {
    font-family: "Open Sans";
    font-size: 35px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }

  .appFeatureDiv {
    gap: 20px;
  }

  .appFeatureDesc {
    gap: 5px;
  }

  .appFeatureDescTitle {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.6px;
  }

  .appFeatureDescDesc {
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0.5px;
  }

  .appFeature {
    display: flex;
    gap: 15px;
  }
}
.pp {
  margin: auto;
  max-width: 1440px;
}

.pp h3 {
  color: #484848;
  text-align: left;
  font-family: "Open Sans";
  font-size: 44px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.ppTitle {
  color: #484848;
  font-family: "Open Sans";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.667px;
}

.ppListTitle {
  color: #484848;
  font-family: "Open Sans";
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.ppDesc {
  color: #5d5d5d;
  font-family: "Open Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 155.556% */
  letter-spacing: 0.5px;
}

.ppList {
  display: flex;
  flex-direction: column;
  text-align: start;
  gap: 30px;
}

.plTen {
  padding-left: 10px;
}
.plFifty {
  padding-left: 50px;
}

.ppContent {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ppHeader {
  border: 1px solid black;
  background-color: #421b10;
}

.ppSection {
  padding: 4rem 2rem;
  text-align: center;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  gap: 253px;
  padding-top: 153px;
}

.ppImageSection {
  padding-top: 10px;
  display: flex;
  gap: 50px;
}

@media (max-width: 1024px) {
  .pp h3 {
    font-size: 40px;
  }
  .ppTitle {
    font-size: 22px;
    font-weight: 600;
  }
  .ppListTitle {
    font-size: 18px;
    font-weight: 600;
  }

  .ppDesc {
    font-size: 16px;
    line-height: 24px;
  }
  .ppSection {
    padding: 2rem 1rem;
    gap: 50px;
    padding-top: 150px;
    padding-bottom: 100px;
  }
}

@media (max-width: 768px) {
  .pp h3 {
    font-size: 35px;
  }
  .ppTitle {
    font-size: 18px;
  }
  .ppListTitle {
    font-size: 17px;
    font-weight: 600;
  }

  .ppDesc {
    font-size: 14px;
    line-height: 22px;
  }
  .ppSection {
    padding-top: 100px;
    padding-bottom: 65px;
  }
  .ppImageSection{
    padding-top: 10px;
  display: flex;
  flex-direction: column;
  }
}
