@font-face {
  font-family: "Ivy Presto Display";
  src: url("/typography/fonnts.com-Ivy-Presto-Display-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Ivy Presto Display";
  src: url("/typography/fonnts.com-Ivy-Presto-Display-Light.otf") format("opentype");
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: "Ivy Presto Display";
  src: url("/typography/fonnts.com-Ivy-Presto-Display-Semi-Bold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Ivy Presto Display";
  src: url("/typography/fonnts.com-Ivy-Presto-Headline-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Ivy Presto Display";
  src: url("/typography/fonnts.com-Ivy-Presto-Headline-Semi-Bold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
}
h1 {
    font-family: "Ivy Presto Headline", serif;
    font-weight: 600;
    line-height: 100%;
    font-size: 84px;
}
span {
    font-family: "Ivy Presto Display", serif;
    font-weight: 300;
    font-style: italic;
}
h2 {
    font-family: "Ivy Presto Headline", serif;
    font-size: 64px;
    font-weight: 600;
    line-height: 110%;
}
h3 {
   font-family: "Ivy Presto Headline", serif;
   font-size: 56px;
   font-weight: 600;
   line-height: 110%;
}
h4 {
  font-family: "Ivy Presto Headline", serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 100%;
}
h6 {
  font-family: "Ivy Presto Headline", serif;
  font-size: 24px;
  font-weight: 600;
}
p {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 130%;
  margin: 0;
}
b {
    font-weight: 600;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --dark-blue: #152257;
    --dark-purple: #672076;
    --light-blue: #7CA6DB;
    --orange: #E4562E;
    --magenta: #C80181;
    --white: #fff;
    --black: #101010;
    --gray: #FAFAF8;
    --pale-bule: #E2EFFF;
}
.btn.magenta{
    background-color: var(--magenta);
    color: var(--white);
    padding: 16px 24px;
    border: none;
    font-size: 18px;
    font-weight: 500;
    align-items: center;
    display: flex;
    text-align: center;
    gap: 10px;
}
.btn {
    background-color: none;
    color: var(--white);
    padding: 16px 24px;
    display: flex;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    text-decoration: none;
    justify-content: center;
    border: 1px solid var(--white);

}
@media (max-width: 1024px) {
  h1 {
    font-size: 65px;
  }
  h2 {
    font-size: 60px;
  }
  h3 {
    font-size: 50px;
  }
  h4 {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 55px;
  }
  h2 {
    font-size: 50px;
  }
  h3 {
    font-size: 45px;
  }
  h4 {
    font-size: 24px;
  }
}
@media (max-width: 450px) {
  h1 {
    font-size: 40px;
  }
  h2 {
    font-size: 35px;
  }
  h3 {
    font-size: 30px;
  }
  h4 {
    font-size: 20px;
  }
}


/* ======================================== */
.hero-wrapper {
  min-height: 100vh;
  position: relative;
  background: linear-gradient(135deg, #5b005e, #9a006e);
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.site-header {
  padding: 25px 24px;
}

.header-container {
  max-width: 1400px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
}

.logo img {
  width: 230px;
  height: 45px;
}

.nav {
  font-family: "Poppins", sans-serif;
  display: flex;
  gap: 26px;
}

.nav a {
  color: var(--white);
  text-transform: uppercase;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  padding-bottom: 8px;
  border-bottom: 2px solid transparent; 
}

.nav a:hover {
  opacity: 1;
}

.nav a.active {
  font-weight: 600;
  border-bottom-color: var(--white);
  opacity: 1;
}

.header-btn {
  width: 125px;
  display: flex;
  justify-content: center;
  border: 1px solid var(--white);
  padding: 14px 24px;
  text-decoration: none;
  color: var(--white);
  font-size: 16px;
  font-family: "Poppins", sans-serif;
}

.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: #fff;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 64px;
  display: flex;
  align-items: center;
  gap: 80px;
}

.hero-image {
  width: 40%;
  flex: 0 0 42%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image img {
  width: 850px;
  height: auto;
  object-fit: cover;
}

.hero-content {
  padding: 0px 0px 20px 0px;
  max-width: 620px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 45px;
}

.hero-content_upper {
  display: flex;
  flex-direction: column;
  gap: 45px;
}

.hero-content_lower {
  background-color: var(--orange);
  color: var(--white);
  border-radius: 80px 0px;
  width: 100%;
  padding: 42px 62px;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.profile-points {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 130%;
  margin: 0;
  padding-left: 34px;
}


@media (max-width: 1024px) {
  .hero-wrapper {
    gap: 60px;
  }
  .hero-content_upper {
    text-align: left;
    gap: 30px;
  }
  .hero-content {
    gap: 30px;
  }
  .hero-container {
    flex-direction: column;
  }
}
@media (max-width: 991px) {
  .nav {
    display: none;      
    flex-direction: column;
    gap: 15px;
    background: var(--magenta);
    padding: 20px;
    position: absolute;
    top: 90px;           
    left: 0;
    width: 100%;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    z-index: 1000;
  }

  .nav.active {
    display: flex;      
  }

  .menu-toggle svg {
    color: var(--white);
    width: 32px;
    height: 32px;
  }
  
  .menu-toggle {
    display: block;      
  }

  .nav-menu.active {
    display: block; 
  }

  .hero-container {
    align-items: center;
    flex-direction: column;
    text-align: center;
  }
  .hero-image img {
    width: 80%;
  }
  .header-btn {
    display: none;
  }

  .hero-actions {
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .hero-container {
    gap: 40px;
  }
  .hero-image {
    width: 80%;
  }
}
@media (max-width: 576px) {
  .hero-container {
    padding: 0px;
  }
  .hero {
    padding: 0px 20px;
  }
  .hero-image img {
    max-width: 280px;
  }
  .hero-content_lower {
    padding: 40px 20px;
  }
}


/* Why Bring Section */
.why-bring {
  background: var(--pale-bule);
  padding: 100px 20px;
}

.why-bring_content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 100px;
  align-items: center;
}

.why-bring_content h4 {
  font-style: italic;
  font-weight: 400;
}

.why-bring__heading {
  display: flex;
  flex-direction: column;
  gap: 45px;
  align-items: center;
  text-align: center;
}

.why-bring__heading span {
  color: var(--magenta);
}

.why-bring__heading img {
  width: 420px;
}

.why-bring__subtitle {
  font-size: 14px;
  color: #333;
}

.why-bring__cards {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.why-bring_cards_upper {
  display: flex;
  flex-direction: row;
  gap: 40px;
}

.why-bring_cards_upper
.why-bring__card {
  border-radius: 45px 0px;
  height: 700px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.why-bring_cards_lower {
  display: flex;
  flex-direction: row;
  gap: 40px;
}

.why-bring_cards_lower 
.why-bring__card {
  border-radius: 45px 0px;
  height: 425px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.why-bring__card {
  padding: 80px 72px;
  color: #fff;
  min-height: 180px;
}

.why-bring__card h4 {
  font-style: italic;
  font-weight: 300;
}

.why-bring__card img {
  width: 65px;
  height: 58px;
}

.card-1 {background: radial-gradient(212.94% 110.37% at 61.06% 53.72%, #C80180 0%, #152257 100%);}
.card-2 {background: linear-gradient(175.32deg, #152257 -37.6%, #C80180 95.14%);}
.card-3 {background: linear-gradient(1.21deg, #152257 -22.28%, #C80180 100.46%);}
.card-4 {background: linear-gradient(139.81deg, #152257 -55.9%, #C80180 103.56%);}
.card-5 {background: linear-gradient(235.35deg, #152257 -38.33%, #C80180 81.91%);}


.why-bring__presence {
  max-width: 1245px;
  margin: 0 auto;
  width: 100%;
}

.why-bring__presence-list {
  display: flex;
  flex-direction: column;
  gap: 45px;
}

.why-bring__presence-list li {
  display: flex;
  flex-direction: row;
  gap: 55px;
  align-items: center;
}

.why-bring__presence-list li h4 {
  font-weight: 600;
  font-style: normal;
  padding: 29px 0px 29px 120px;
  width: 100%;
  max-width: 560px;
  background-color: var(--white);
  color: var(--magenta);
}
@media (max-width: 1024px) {
  .why-bring_content {
    gap: 50px;
  }
  .why-bring_cards_upper .why-bring__card {
    padding: 40px 30px;
    height: 550px;
  }
  .why-bring_cards_lower .why-bring__card {
    padding: 40px 30px;
    height: 350px;
  }
  .why-bring__presence-list li h4 {
    max-width: 450px;
    padding: 29px 0px 29px 50px;
  }
}
@media (max-width: 768px) {
  .why-bring {
    padding: 50px 20px;
  }
  .why-bring_cards_upper {
    gap: 10px;
  }
  .why-bring_cards_lower {
    gap: 10px;
  }
  .why-bring__heading img {
    width: 310px;
  }
  .why-bring__presence-list li h4 {
    max-width: 300px;
    padding: 29px 20px;
  }
  .why-bring__presence-list li {
    gap: 25px;
  }
}
@media (max-width: 600px) {
  .why-bring_cards_upper {
    gap: 20px;
    flex-direction: column;
  }
  .why-bring_cards_upper .why-bring__card {
    height: 300px;
  }
  .why-bring_cards_lower {
    gap: 20px;
    flex-direction: column;
  }
  .why-bring_cards_lower .why-bring__card {
    height: 300px;
  }
  .why-bring__cards {
    gap: 20px;
  }
  .why-bring__presence-list li {
    flex-direction: column;
    align-items: start;
    gap: 15px;
  }
  .why-bring__presence-list li h4 {
    width: 100%;
    max-width: 100%;
  }
}

/* Signature Topics */
.signature-topics {
  background: var(--dark-blue);
  padding: 100px 20px;
  color: #fff;
}

.signature-container {
  max-width: 1400px;
  margin: auto;
  display: flex;
  flex-direction: row;
  gap: 40px;
  justify-content: space-between;
}

.signature-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.signature-left_content {
  max-width: 430px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 54px;
}

.signature-heading_content {
  display: flex;
  flex-direction: column;
  gap: 45px;
}

.signature-heading_content h2 {
  font-style: italic;
  font-weight: 300;
}

.signature-heading_content span {
  font-weight: 600;
  color: var(--orange);
  font-style: normal;
}

.signature-heading_content img {
  width: 63px;
  height: 63px;
}

.speaker-img {
  margin-left: -60px;
  position: relative;
}

.speaker-img img {
  width: 100%;
  object-fit: cover;
}

.signature-right_content {
  display: flex;
  flex-direction: row;
  gap: 100px;
  max-width: 855px;
  width: 100%;
}

.journey-line {
  position: relative;
  width: 2px;
  background: rgba(255,255,255,0.25);
  border-radius: 10px;
  height: auto;
  min-height: 100%;
  display: block;
  justify-content: center;
}

.line-progress {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 0%;
  background: white;
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(255,255,255,0.9);
  transition: height 0.15s ease-out, width 0.25s ease;
}

.signature-right {
  display: flex;
  flex-direction: column;
  gap: 70px;
}

.episode-step {
  display: flex;
  flex-direction: row;
  gap: 62px;
  align-items: center;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.episode-step.active {
  opacity: 1;
}

.step-content {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.step-content_lower span {
  font-size: 32px;
  line-height: 37px;
}

.step-content_lower ul {
  margin-left: 34px;
  font-size: 32px;
  font-family: "Ivy Presto Display", serif;
  line-height: 37px;
  font-weight: 300;
  font-style: italic;
}

@media (max-width: 1024px) {
  .signature-container {
    flex-direction: column;
    gap: 50px;
  }
  .signature-left_content {
    gap: 40px;
  }
  .signature-left {
    gap: 30px;
  }
  .speaker-img {
    margin-left: 0px;
  }
  .speaker-img img {
    max-width: 230px;
  }
  .step-content_lower span {
    font-size: 28px;
  }
  .step-content_lower ul {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .signature-right_content {
    gap: 35px;
  }
  .episode-step {
    gap: 20px;
  }
  .signature-right {
    gap: 35px;
  }
  .step-content {
    gap: 15px;
  }
  .step-content_lower span {
    font-size: 24px;
  }
  .step-content_lower ul {
    font-size: 24px;
  }
}
@media (max-width: 450px) {
  .step-content_lower span {
    font-size: 20px;
  }
  .step-content_lower ul {
    font-size: 20px;
  }
}

/* Room Section */
.room-section {
  padding: 100px 20px;
  background: #fff;
}

.room-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.room-header {
  display: flex;
  flex-direction: column;
  gap: 45px;
  align-items: center;
}

.room-header span {
  color: var(--magenta);
}

.room-header img {
  width: 430px;
}

.room-wrapper {
  position: relative;
  margin-top: 80px;
  display: flex;
  justify-content: center;
}

.room-image {
  overflow: hidden;
}

.room-image img {
  width: 100%;
  height: 100%;
}

.quote {
  position: absolute;
  max-width: 410px;
  width: 100%;
  padding: 40px 45px;
  color: #fff;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.quote h6 {
  font-weight: 300;
  font-style: italic;
}

.q1 {
  background: var(--magenta);
  top: 20%;
  left: -120px;
  border-radius: 45px 0px;
}

.q2 {
  background: #7aa7dc;
  top: 10%;
  right: -50px;
  border-radius: 0px 45px;
}

.q3 {
  background: #6a1b9a;
  bottom: 20%;
  left: -50px;
  border-radius: 45px 0px;
}

.q4 {
  background: #d55fa6;
  bottom: 25%;
  right: -80px;
  border-radius: 0px 45px;
}

@media (max-width: 1024px) {
  .quote {
    position: static;
    margin: 16px auto;
  }

  .room-wrapper {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 600px) {
  .room-header img {
    width: 310px;
  }
  .room-wrapper {
    margin-top: 50px;
  }
}

/* Booking Section */
.booking-wrapper {
  position: relative;
  background-image: url("/assets/booking-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 850px;
}

.booking-content {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.booking-content span {
  font-weight: 300;
  font-style: italic;
}
@media (max-width: 768px) {
  .booking-wrapper {
    height: 450px;
  }
  .booking-content img {
    width: 310px;
  }
  .booking-content {
    bottom: 40px;
  }
}


/* Contact information */
.contact-info-section {
  background: linear-gradient(195.24deg, #152257f1 -20.17%, #C80180 112.52%);
  color: #ffffff;
  padding: 100px 20px;
}

.contact-info-container {
  align-items: center;
  max-width: 995px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 68px;
}

.contact-info {
  display: flex;
  flex-direction: row;
  gap: 45px;
  align-items: start;
}

.contact-info-left {
  max-width: 570px;
  display: flex;
  flex-direction: column;
  gap: 45px;
}

.contact-info-list {
  padding-left: 20px;
}

.contact-info-list li {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  line-height: 1.6;
}

.contact-info-right {
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 45px;
}

.contact-info-right a {
  font-family: "Poppins", sans-serif;
  display: inline-block;
  font-size: 24px;
  font-weight: 600;
  line-height: 140%;
  color: var(--white);
  text-decoration: none;
}

.contact-info-card {
  background: var(--white);
  color: var(--dark-blue);
  padding: 35px 55px;
  border-radius: 45px 0px;
  max-width: 850px;
}

.contact-info-italic {
  font-style: italic;
  font-weight: 500;
}
@media (max-width: 768px) {
  .contact-info-section {
    padding: 50px 20px;
  }
  .contact-info {
    width: 100%;
    flex-direction: column;
  }
  .contact-info-container {
    gap: 45px;
  }
}
@media (max-width: 600px) {
  .contact-info-card {
    padding: 35px 25px;
  }
}


/* Footer */
.site-footer {
  background: #1E285F;
  color: #ffffff;
  padding: 58px 20px 65px 20px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.footer-inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 40px;
  justify-content: space-around;
}

.footer-brand {
  width: 45%;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.footer-brand img {
  width:  230px;
  height: 50px;
}

.footer-brand p {
  font-family: "Ivy Presto Display";
  font-style: italic;
}

.footer-menu_wrapper {
  width: 55%;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  gap: 30px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer-col h6 {
  font-family: "Poppins", sans-serif;
  color: var(--orange);
  font-size: 16px;
  text-transform: uppercase;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 39px;
}

.footer-col a {
  font-family: "Poppins", sans-serif;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}

.footer-col a:hover::before {
  content: "";
  position: absolute;
  left: -16px;
  top: 2px;
  height: 25px;
  width: 2px;
  background: var(--white);
}

.footer-col a.active {
  position: relative;
  display: inline-block;
}

.footer-col a.active::before {
  content: "";
  position: absolute;
  left: -16px;
  top: 2px;
  height: 25px;
  width: 2px;
  background: var(--white);
}

.footer-menu_right {
  display: flex;
  flex-direction: column;
  gap: 49px;
}

.footer-menu_privacy {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer-menu_privacy h6 {
  font-family: "Poppins", sans-serif;
  color: var(--orange);
  font-size: 16px;
  text-transform: uppercase;
}

.footer-menu_privacy ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 39px;
}

.footer-menu_privacy a {
  font-family: "Poppins", sans-serif;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}

.footer-menu_privacy a:hover::before {
  content: "";
  position: absolute;
  left: -16px;
  top: 2px;
  height: 25px;
  width: 2px;
  background: var(--white);
}

.footer-menu_privacy a.active {
  position: relative;
  display: inline-block;
}

.footer-menu_privacy a.active::before {
  content: "";
  position: absolute;
  left: -16px;
  top: 2px;
  height: 25px;
  width: 2px;
  background: var(--white);
}

.footer-contact_wrapper h6{
  font-family: "Poppins", sans-serif;
  color: var(--orange);
  font-size: 16px;
  text-transform: uppercase;
}

.footer-contact_wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer-contact p{
  font-family: "Ivy Presto Display";
  font-size: 18px;
  font-style: italic;
}

.footer-contact a{
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 600s;
  color: var(--white);
  text-decoration: none;
}

.footer-bottom {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-bottom p {
  font-family: "Ivy Presto Display";
  font-style: italic;
}

.footer-bottom small {
  font-family: "Poppins", sans-serif;
  font-size: 10px;
}

@media (max-width: 900px) {
  .footer-inner {
    flex-direction: column;
  }

  .footer-brand {
    width: 100%;
  }

  .footer-menu_wrapper {
    width: 100%;
  }
}

@media (max-width: 425px) {
  .site-footer {
    padding: 40px 25px;
  }

  .footer-menu_wrapper {
    flex-direction: column;
  }
}