@font-face {
  font-family: "Gotham";
  src: url("./fonts/Gotham-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Gotham";
  src: url("./fonts/Gotham-Book.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Gotham";
  src: url("./fonts/Gotham-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Gotham";
  src: url("./fonts/Gotham-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Gotham";
  src: url("./fonts/Gotham-BookItalic.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
}

:root {
  --pink: #c7387b;
  --dark: #0f1221;
  --light: #fff6fb;
  --text: #181a2a;
}

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

body {
  font-family: "Gotham", sans-serif;
  color: var(--text);
  background: #f8f4f1;
  overflow-x: hidden;
}

/* --- Section 1: Hero --- */
#section1 {
  padding-top: 5rem;
  background-color: #f8f4f1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100vw;
  position: relative;
  clip-path: ellipse(85% 100% at top);
  padding-bottom: 35vh;
  z-index: 2;
}

#section1 #upperText {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  z-index: 1;
  text-align: center;
  padding: 0 1rem;
}

#section1 #upperText h1 {
  font-size: 48px;
  font-weight: 700;
  color: #0f1221;
  margin-bottom: 1.5rem;
}

#section1 #upperText h5 {
  font-size: 2rem;
  font-weight: 600;
  margin: 0;
}

#section1 #upperText h5:first-of-type {
  color: #c0c0c0;
}

#section1 #upperText h5:last-of-type {
  color: #6b7280;
  margin-bottom: 0.5rem;
}

#section1 #upperText h2 {
  color: var(--pink);
  font-size: 2rem;
  font-weight: 700;
}

#section1 #middleImg {
  position: relative;
  top: -80px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#section1 #middleImg img {
  height: 485px;
  max-width: 100%;
  object-fit: contain;
}

#section1 #middleImgText {
  font-family: "Gotham", sans-serif;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid black;
  border-radius: 24px;
  font-size: 13px;
  font-weight: 700;
  color: #181a2a;
  padding: 7px 40px;
  background-color: #f8f4f1;
  white-space: nowrap;
  transition: all 0.3s ease;
  cursor: pointer;
}

#section1 #middleImgText:hover {
  background-color: var(--dark);
  color: #fff;
  border-color: var(--dark);
}

#section1 #imagesOfSection1 {
  display: flex;
  width: 100vw;
  justify-content: center;
  flex-wrap: nowrap;
  overflow-x: hidden;
  gap: 10px;
}

#section1 #imagesOfSection1 img {
  width: 15vw;
  opacity: 0.5;
  transition: width 0.3s ease, opacity 0.3s ease;
  flex-shrink: 1;
}

#section1-LastText {
  font-family: "Gotham", sans-serif;
  width: 70vw;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 32px;
  position: relative;
  top: -290px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-block: 50px;
  box-sizing: border-box;
  gap: 25px;
  z-index: 3;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

#section1-LastText p {
  color: #000000;
  font-size: 24px;
  text-align: center;
  line-height: 1.5;
  font-weight: 400;
}

/* --- Section 2: Dark Area --- */
#section2 {
  position: relative;
  top: -600px;
  background-color: #181a2a;
  width: 100vw;
  clip-path: ellipse(134% 100% at top);
  z-index: 1;
  padding-bottom: 10rem;
}

#section2 #images {
  display: flex;
  width: 100vw;
  justify-content: center;
  padding-top: 14rem;
  flex-wrap: nowrap;
  overflow-x: hidden;
}

#section2 #images img {
  width: 15vw;
  opacity: 0.5;
  flex-shrink: 1;
}

/* Comparison Section Layout */
.comparison-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 4rem;
  padding: 21rem 1rem 0;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.comparison-col {
  flex: 1;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.col-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2.5rem;
  gap: 1rem;
}

.col-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #cdf0dd;
  text-align: center;
  text-transform: none;
}

.col-header .red-cross {
  color: #e74c3c;
  font-size: 3rem;
}

.col-header .green-check {
  color: white;
  background-color: #00cc00;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 2rem;
}

.comparison-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}

.comp-item {
  width: 100%;
  border-radius: 50px;
  padding: 1.2rem 2rem;
  color: white;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 80px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s;
  position: relative;
}

.comp-item:hover {
  transform: translateY(-3px);
}

/* Specific Styles */
.red-item {
  background: #d65d89;
}

.green-item {
  background: #3bcba1;
}

.comp-item .main-text {
  display: block;
  line-height: 1.3;
}

.comp-item .main-text.uppercase {
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 0.5px;
}

.comp-item .sub-text {
  display: block;
  font-size: 0.9rem;
  font-weight: 400;
  margin-top: 4px;
  opacity: 0.95;
}

/* Mobile Responsive */
@media (max-width: 900px) {
  .comparison-container {
    flex-direction: column;
    align-items: center;
    gap: 4rem;
    padding-top: 9rem;
  }

  .comparison-col {
    width: 100%;
    max-width: 450px;
  }
}

#section2 #Section2MiddleText #middleText {
  padding-top: 6rem;
  color: #f8f4f1;
  display: flex;
  text-align: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.5;
  width: 90%;
  margin: 0 auto;
}

#section2 #Section2LastContent {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding-top: 5rem;
  padding-bottom: 9rem;
  flex-wrap: wrap;
  gap: 3rem;
}

#section2 #Section2LastContent>div {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

#section2 #Section2LastContent img {
  max-width: 12rem;
  object-fit: contain;
}

#section2 #Section2LastContent span {
  display: block;
}

#section2 #Section2LastContent span:nth-child(2) {
  color: #c7387b;
  font-size: 3rem;
  font-weight: 700;
  margin-top: 1rem;
}

#section2 #Section2LastContent span:nth-child(3) {
  color: #f8f4f1;
  font-size: 2rem;
  font-weight: 700;
}

/* --- Section 3: The Story --- */
#section3 {
  width: 100vw;
  background-color: #f8f4f1;
  position: relative;
  top: -800px;
  text-align: center;
  font-size: 1.8rem;
  padding-bottom: 5rem;
}

#section3 #headingText {
  padding-top: 20rem;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

#section3 #textAndImgContent {
  padding-top: 3rem;
  width: 90%;
  max-width: 70rem;
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr 1.3fr;
  margin: auto;
  padding-bottom: 7rem;
  align-items: center;
}

#section3 #img {
  grid-row: 1/3;
  grid-column: 1/2;
}

#section3 #img img {
  width: 100%;
  border-radius: 20px;
}

#section3 #upperText {
  grid-column: 2/3;
  font-size: 1.3rem;
  font-weight: 400;
  text-align: left;
  line-height: 1.6;
}

#section3 #lowerText {
  grid-column: 2/3;
  background-color: #c7387b;
  color: #f8f4f1;
  font-size: 1rem;
  font-weight: 400;
  border-radius: 20px;
  padding: 2rem;
  text-align: left;
  line-height: 1.8;
}

/* --- Section 4: Don't just take our word --- */
#section4 {
  background-color: #f8f4f1;
  position: relative;
  top: -800px;
}

#section4 #textsAndLogos {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  margin: auto;
  padding: 0 1rem;
}

#section4 #textsAndLogos #heading {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  max-width: 90%;
}

#section4 #textsAndLogos img {
  width: 175px;
  margin: auto;
}

#section4 #textsAndLogos #logo img {
  width: 100%;
  max-width: 625px;
}

#section4 #footerImgs {
  padding-top: 4rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  width: 100vw;
  margin: auto;
  overflow: hidden;
  padding-bottom: 5rem;
  flex-wrap: wrap;
}

#section4 #footerImgs img {
  width: 30vw;
  min-width: 300px;
  border-radius: 12px;
}

/* --- Section 5: Not For Everyone --- */
#section5 {
  position: relative;
  top: -850px;
  display: flex;
  background-color: #f8f4f1;
  justify-content: center;
  align-items: center;
  gap: 5rem;
  padding: 0 5%;
}

#section5 img {
  width: 35vw;
  min-width: 300px;
}

#section5 #texts {
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.8rem;
  flex: 1;
  min-width: 300px;
}

#section5 #texts h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
}

#section5 #texts h5 {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.5;
}

#section5 #texts button {
  font-family: "Gotham", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50px;
  padding: 12px 60px;
  color: aliceblue;
  background-color: #000000;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, background-color 0.2s;
}

#section5 #texts button:hover {
  transform: scale(1.05);
  background-color: var(--pink);
}

/* Fix gap after #section5 */
.award-section {
  margin-top: -850px;
  position: relative;
  z-index: 2;
  background-color: #f8f4f1;
  padding: 5rem 0;
}

.award-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.award-content {
  flex: 1;
}

.award-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--pink);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.award-text {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text);
}

.award-heading a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.award-heading a:hover {
  color: var(--dark);
}

.award-text a {
  color: var(--pink);
  text-decoration: none;
  font-weight: 700;
}

.award-text a:hover {
  text-decoration: underline;
}

.award-visual {
  flex: 0 0 350px;
  display: flex;
  justify-content: center;
}

.award-visual img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* --- Mobile / Responsive Overrides --- */

/* Max width 1024px (Tablets / Small Laptops) */
@media (max-width: 1024px) {
  #section1 #upperText h1 {
    font-size: 40px;
  }

  #section1 #middleImg img {
    height: 400px;
  }

  #section2 {
    top: -400px;
    clip-path: ellipse(150% 100% at top);
  }

  #section3 {
    top: -600px;
  }

  #section4 {
    top: -600px;
  }

  #section5 {
    top: -650px;
  }

  .award-section {
    margin-top: -650px;
  }
}

/* Max width 768px (Mobile) */
@media (max-width: 768px) {

  /* Section 1 */
  #section1 {
    padding-top: 6rem;
    clip-path: ellipse(150% 100% at top);
    padding-bottom: 20vh;
  }

  #section1 #upperText h1 {
    font-size: 32px;
    margin-bottom: 1rem;
  }

  #section1 #upperText h5 {
    font-size: 1.2rem;
  }

  #section1 #upperText h2 {
    font-size: 1.2rem;
  }

  #section1 #middleImg img {
    height: 300px;
  }

  #section1 #middleImg {
    top: -60px;
  }

  #section1 #middleImgText {
    padding: 5px 20px;
    font-size: 12px;
  }

  #section1 #imagesOfSection1 {
    flex-wrap: nowrap;
    justify-content: center;
    gap: 5px;
  }

  #section1 #imagesOfSection1 img {
    width: 22vw;
  }

  #section1 #imagesOfSection1 img:nth-child(n + 5) {
    display: none;
  }

  #section1-LastText {
    width: 90vw;
    top: -100px;
    padding-block: 30px;
  }

  #section1-LastText p {
    font-size: 18px;
  }

  /* Section 2 */
  #section2 {
    top: -180px;
    clip-path: ellipse(200% 100% at top);
    padding-top: 8rem;
  }

  #section2 h1 {
    font-size: 2.5rem;
  }

  #section2 #cards1,
  #section2 #cards2 {
    flex-direction: column;
    align-items: center;
  }

  #section2 #cards1 .topCard,
  #section2 #cards2 .bottomCard {
    width: 90%;
    height: auto;
    min-height: 12rem;
  }

  #section2 #cards2 .bottomCard .cards2Texts2 {
    position: relative;
    bottom: auto;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  #section2 #Section2MiddleText #middleText {
    font-size: 1.4rem;
    padding-top: 3rem;
  }

  #section2 #Section2LastContent {
    flex-direction: column;
    gap: 4rem;
  }

  .comparison-container {
    padding: 0;
  }

  /* Section 3 */
  #section3 {
    top: -150px;
    padding-top: 2rem;
  }

  #section3 #headingText {
    padding-top: 2rem;
    font-size: 2.5rem;
  }

  #section3 #textAndImgContent {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  #section3 #img {
    grid-row: 1;
    grid-column: 1;
    margin: auto;
  }

  #section3 #upperText {
    grid-row: 2;
    grid-column: 1;
    text-align: center;
  }

  #section3 #lowerText {
    grid-row: 3;
    grid-column: 1;
  }

  /* Section 4 */
  #section4 {
    top: -150px;
  }

  #section4 #textsAndLogos #heading {
    font-size: 2rem;
  }

  #section4 #footerImgs img {
    width: 90vw;
    margin-bottom: 1rem;
  }

  .award-section {
    top: -150px;
    margin-top: 0;
    padding: 3rem 0;
  }

  .award-container {
    flex-direction: column-reverse;
    text-align: center;
    gap: 2rem;
  }

  .award-heading {
    font-size: 2rem;
  }

  .award-visual {
    flex: 0 0 auto;
    width: 200px;
  }

  /* Section 5 */
  #section5 {
    top: -150px;
    flex-direction: column-reverse;
    gap: 2rem;
    padding-bottom: 4rem;
  }

  #section5 img {
    width: 80vw;
    align-self: center;
  }

  #section5 #texts {
    align-items: center;
    text-align: center;
  }

  .contact-section {
    margin-top: -150px;
  }
}
