/* ================= GLOBAL VARIABLES ================= */
:root {
  --gold: #c5a063;
  --gold-dark: #a58246;
  --text: #3d3d3d;
  --text-light: #666;
  --white: #FFFFFF;
  --light: #F9F7F3;
  --border: #EAE7DF;
  --shadow: 0px 2px 6px rgba(0,0,0,0.1);
  --logo-height: 60px;
  --logo-height-tablet: 45px;
  --logo-height-mobile: 35px;
}

/* ================= RESET & BASE STYLES ================= */
.cruises * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', 'Helvetica', sans-serif;
}

/*body {
  background-color: var(--light);
  color: var(--text);
  line-height: 1.6;
  display: flex;
  justify-content: center;
  padding: 20px 0;
  min-height: 100vh;
  width: 100%;
}
*/
.cruises .container {
  width: 990px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
  padding: 0;
}

/* ================= LOGO HEADER STYLES ================= */
.logo-header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 25px 30px;
  width: 100%;
  position: relative;
}

.logo-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 30px;
  right: 30px;
  height: 1px;
  background: var(--border);
}

.page-logo {
  height: var(--logo-height);
  width: auto;
  display: block;
  object-fit: contain;
  margin: 0 auto;
  max-width: 100%;
}

/* ================= BRAND-SPECIFIC LOGO SIZES ================= */
.seabourn-page .page-logo { height: 40px; }
.regent-page .page-logo { height: 80px; }
.silversea-page .page-logo { height: 80px; }
.oceania-page .page-logo { height: 60px; }
.four-seasons-page .page-logo { height: 110px; }
.ritz-carlton-page .page-logo { height: 55px; }
.orient-express-page .page-logo { height: 80px; }

/* ================= PROMO HEADING ================= */
.promo-heading {
  text-align: center;
  margin-bottom: 20px;
  padding: 35px 30px;
  position: relative;
}

.promo-heading h1 {
  font-size: 25px;
  color: var(--gold-dark);
  margin-bottom: 15px;
  font-weight: 500;
  line-height: 1.3;
}

.promo-heading p {
  font-size: 17px;
  color: var(--text);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ================= SECTION STYLES WITH SHADOW SEPARATION ================= */
.section-container {
  background: var(--white);
  padding: 30px 30px;
  margin-bottom: 25px;
  width: 100%;
  position: relative;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08); 
  border-radius: 8px;

}


.section-container:not(:last-of-type)::after {
  display: none;
}

.section-heading {
  font-size: 22px;
  color: var(--gold-dark);
  text-align: left;
  margin-bottom: 15px;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.3;
}

.section-subheading {
  font-size: 15px;
  color: var(--text-light);
  text-align: left;
  margin-bottom: 20px;
  font-weight: 300;
  line-height: 1.6;
  max-width: 700px;
}

/* ================= MOBILE & TABLET RESPONSIVE ADJUSTMENTS ================= */

/* Tablet (768px and below) */
@media (max-width: 768px) {
  
  .cruises .container {
    width: 95%;
    margin: 0 auto;
  }
  
  .page-logo {
    height: var(--logo-height-tablet);
  }

  
  .logo-header {
    padding: 20px 15px;
  }
  
  .logo-header::after {
    left: 15px;
    right: 15px;
  }
  
  .promo-heading {
    padding: 25px 15px;
    margin-bottom: 15px;
  }
  
  .promo-heading p {
    font-size: 15px;
  }
  
  .section-container {
    padding: 20px 15px;
    margin-bottom: 20px;
  }
  
  .section-subheading {
    font-size: 14px;
  }
}

/* Mobile (480px and below) */
@media (max-width: 480px) {
  .page-logo {
    height: var(--logo-height-mobile);
  }
  
  /* Scale down further for mobile */
  .seabourn-page .page-logo { height: 30px; }
  .regent-page .page-logo { height: 60px; }
  .silversea-page .page-logo { height: 32px; }
  .oceania-page .page-logo { height: 35px; }
  .four-seasons-page .page-logo { height: 80px; }
  .ritz-carlton-page .page-logo { height: 45px; }
  .orient-express-page .page-logo { height: 60px; }
  .promo-heading p {
    font-size: 14px;
  }
  
  .section-subheading {
    font-size: 13px;
  }
}