/* =============== GLOBAL STYLES =============== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

/* Universal box-sizing for better mobile layout */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* =============== TT RAMILLAS FONT =============== */
@font-face {
  font-family: 'TT Ramillas';
  src: url('../fonts/TT Ramillas Trial Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'TT Ramillas';
  src: url('../fonts/TT Ramillas Trial Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: 'TT Ramillas';
  src: url('../fonts/TT Ramillas Trial Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'TT Ramillas';
  src: url('../fonts/TT Ramillas Trial Medium Italic.ttf') format('truetype');
  font-weight: 500;
  font-style: italic;
}

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

@font-face {
  font-family: 'TT Ramillas';
  src: url('../fonts/TT Ramillas Trial Bold Italic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
}

:root {
  --bg: #faf6ef;
  --text: #3b2f2f;
  --accent: #a67b5b;
  --light: #e8dcc6;
  --midnight: #191718;
  --shore: #6a3c21;
  --blossom: #fbf5f3;
  --soothe: #b3997e;
  --solitude: #e9e7db;
  --endure: #39271d;
  --breeze: #d0d1af;
  --dawn: #8e8d79;
  --lush: #45563a;
  --solace: #dcdacf;
  --header-font: 'TT Ramillas', serif;
  --body-font: 'Poppins', sans-serif;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden; /* Prevent horizontal scroll */
}

body {
  font-family: var(--body-font);
  margin: 0;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden; /* Prevent horizontal scroll */
  width: 100%;
  max-width: 100vw;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--header-font);
}

/* Hide coming soon section */
#coming-soon {
  display: none !important;
}

/* =============== SECTION BRANDMARK =============== */
.section-brandmark {
  position: absolute;
  top: 2rem;
  left: 2rem;
  width: 50px;
  height: auto;
  z-index: 10;
  opacity: 0.9;
}

/* =============== LANDING PAGE SECTION =============== */
#landing-page {
  position: relative;
  height: 100vh;
  background: var(--midnight) url("../assets/Homepage2.jpg") center center / cover no-repeat;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  padding: 0 3rem 2rem 3rem;
  overflow: hidden;
  opacity: 1 !important;
  transform: none !important;
}

#landing-page::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: -1;
}

.landing-brandmark {
  width: 50px;
  height: auto;
}

.landing-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.7);
  padding: 1rem 3rem;
  backdrop-filter: blur(10px);
}

.landing-announcement {
  font-size: 1.2rem;
  font-weight: 300;
  font-style: italic;
  margin: 0;
  text-align: center;
}

.landing-nav .landing-brandmark {
  position: absolute;
  left: 3rem;
}

.landing-announcement strong em {
  text-decoration: underline;
  font-weight: 400;
}

.landing-announcement a {
  color: #ffffff;
  text-decoration: underline;
  transition: opacity 0.3s ease;
}

.landing-announcement a:hover {
  opacity: 0.7;
}

.landing-nav-links {
  display: flex;
  gap: 2rem;
  position: absolute;
  right: 3rem;
}

.landing-nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  transition: opacity 0.3s ease;
}

.landing-nav-links a:hover {
  opacity: 0.7;
}

.landing-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin-top: 0;
  margin-bottom: auto;
  padding-left: 0;
  padding-top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(100vh - 120px);
}

.landing-content h1 {
  font-size: clamp(2.5rem, 12vw, 9rem);
  line-height: 1.05;
  margin-bottom: 1.5rem;
  font-weight: 400;
  color: #ffffff;
}

.landing-tagline {
  font-size: clamp(1rem, 3vw, 2.25rem);
  line-height: 1.6;
  margin-bottom: 2rem;
  font-weight: 300;
}

.landing-cta-text {
  font-size: clamp(0.9rem, 2.7vw, 1.95rem);
  line-height: 1.6;
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.5px;
  margin-bottom: 0;
  position: absolute;
  bottom: 3rem;
  left: 3rem;
  max-width: 45%;
  z-index: 1;
}

.landing-cta-btn {
  background: var(--endure);
  color: #ffffff;
  border: none;
  border-radius: 50px;
  padding: 1.1rem 3rem;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  display: none;
}

.landing-cta-btn:hover {
  background: var(--shore);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.landing-footer-text {
  position: absolute;
  bottom: 3rem;
  right: 3rem;
  z-index: 1;
  font-size: clamp(0.8rem, 1.8vw, 1.2rem);
  font-weight: 300;
  text-align: right;
  max-width: 45%;
}

/* =============== HERO 1 SECTION =============== */
#hero1 {
  position: relative;
  height: 100vh;
  background: var(--soothe);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 1rem;
  overflow: hidden;
}

.hero1-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.hero1-logo {
  width: min(80vw, 1050px);
  max-height: 60vh;
  object-fit: contain;
  margin-bottom: 2rem;
  margin-left: -5%;
}

#hero1 h1 {
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
  color: #ffffff;
  font-weight: 500;
  letter-spacing: -0.5px;
}

#hero1 .tagline {
  max-width: 700px;
  margin: 1rem auto 1.5rem;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #ffffff;
  font-weight: 300;
}

#hero1 .cta-btn {
  background: #ffffff;
  color: #3b2f2f;
  border: none;
  border-radius: 50px;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  margin: 1.5rem 0 1rem;
}

#hero1 .cta-btn:hover {
  background: #f5f5f5;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

#hero1 .mini-note {
  font-size: 0.95rem;
  color: #ffffff;
  font-weight: 400;
  position: absolute;
  bottom: 4.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

#hero1 .scroll-hint {
  color: #ffffff;
}

/* =============== HERO 2 SECTION (RENAMED FROM HERO) =============== */
#hero2 {
  position: relative;
  height: 100vh;
  background: url("../assets/Homepage1.jpg") center center / cover no-repeat;
  color: #faf6ef;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 1rem;
  overflow: hidden;
}

#hero2::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4); /* dark overlay for text clarity */
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  text-align: left;
  margin-left: 5%;
  margin-right: auto;
}

#hero2 h1 {
  font-size: 8rem;
  margin-bottom: 1.5rem;
  color: var(--breeze);
  font-weight: 400;
  letter-spacing: -0.5px;
  line-height: 1.1;
}

#hero2 .tagline {
  max-width: 700px;
  margin: 0 0 2rem 0;
  font-size: 1.92rem;
  line-height: 1.7;
  color: #ffffff;
  font-weight: 300;
}

#hero2 .cta-btn {
  background: #ffffff;
  color: #3b2f2f;
  border: none;
  border-radius: 50px;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  margin: 0;
}

#hero2 .cta-btn:hover {
  background: #f5f5f5;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

#hero2 .see-inside {
  position: absolute;
  bottom: 6rem;
  font-size: 1.5rem;
  color: #ffffff;
  font-weight: 400;
  z-index: 1;
}

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  font-size: 1.5rem;
  animation: bounce 1.5s infinite;
  z-index: 2;
  color: #faf6ef;
}


/* =============== STORY SECTION =============== */
#story {
  background: #faf6ef;
  padding: 6rem 2rem 4rem;
  display: flex;
  justify-content: center;
  scroll-margin-top: 5rem;
}

#story ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

#story ul li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.2rem;
}

#story ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
}


.story-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  max-width: 1000px;
}

.story-text {
  flex: 1 1 400px;
}

.story-text h2 {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.story-text p {
  margin-bottom: 1rem;
}

.story-image img {
  width: 350px;
  border-radius: 12px;
  box-shadow: none;           /* remove shadow outline */
  background: transparent;    /* remove any box background */
  display: block;
  margin: 0 auto;
}


/* =============== STORY PAGES (1, 2, 3) =============== */
.story-page {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 4rem 2rem;
  background: var(--soothe); /* Updated to Soothe */
}

/* Story 2 - same soothe background */
#story2 {
  background: var(--soothe);
}

/* Story pages positioning */
#story1, #story3 {
  background: var(--soothe);
}

.story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 1400px;
  width: 100%;
  align-items: stretch;
}

.story-text-column {
  background: var(--soothe); /* Updated to Soothe */
  color: var(--midnight);
  padding: 3rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 1.1rem;
  line-height: 1.8;
}

.story-text-column h2 {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.story-text-column p {
  margin-bottom: 1.5rem;
}

.story-text-column p:not(.highlight-text):not(.quote):not(.closing-text) {
  margin-bottom: 1rem;
}

.story-text-column .highlight-text {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.story-text-column .quote {
  font-style: italic;
  font-size: 1rem;
  margin: 1.5rem 0;
  padding: 1rem 1.5rem;
  padding-left: 1.5rem;
  border-left: 3px solid var(--endure);
  background: rgba(0, 0, 0, 0.05);
  border-radius: 4px;
}

.story-page .closing-text {
  font-size: 1rem;
  margin-top: 2rem;
  margin-bottom: 0.3rem;
  text-align: center;
  font-weight: 400;
  color: var(--midnight);
  position: relative;
  z-index: 1;
}

.story-text-column .closing-text {
  display: none;
}

.story-image-column {
  background: var(--soothe); /* Updated to Soothe */
  display: flex;
  align-items: stretch;
  overflow: hidden;
  min-height: 100vh; /* Make proportionate to viewport height */
}

.story-image-column img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Story 1 - zoom windowseat.jpg to remove white border */
#story1 .story-image-column img {
  transform: scale(1.05); /* Zoom in by 5% */
}

/* Story 3 - use Ramillas font family */
#story3 .story-text-column {
  font-family: var(--header-font);
}

/* Story 2 - single column text with image on right */
#story2 .story-text-column {
  font-size: 1.2rem;
}

/* Story 3 - image on left, text on right */
#story3 .story-content {
  grid-template-columns: 1fr 1fr;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .story-content {
    grid-template-columns: 1fr;
  }
  
  .story-text-column {
    padding: 2rem;
  }
  
  .story-image-column {
    min-height: 50vh;
  }
  
  #story3 .story-content {
    grid-template-columns: 1fr;
  }
  
  /* Reverse order on mobile for story 3 so image appears first */
  #story3 .story-image-column {
    order: -1;
  }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

/* =============== STORY 4 SECTION (RENAMED FROM PRIMARY FEATURES) =============== */
#story4 {
  background: var(--midnight); /* Midnight color */
  color: #ffffff;
  padding: 4rem 2rem 6rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  overflow-x: hidden;
}

/* Also apply to #primary-features for backward compatibility */
#primary-features {
  background: var(--midnight); /* Midnight color */
  color: #ffffff;
  padding: 4rem 2rem 6rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  overflow-x: hidden;
}

.features-header {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto 4rem;
  width: 100%;
  padding: 0 2rem;
  box-sizing: border-box;
}

.features-logo-left,
.features-logo-right {
  display: none;
}

.features-logo-right {
  width: 255px; /* 85% of 300px (down by 15%) */
  margin-left: -40px; /* shift left */
}

.features-title {
  font-size: 2.5rem;
  font-weight: 400;
  letter-spacing: 1px;
  margin: 0;
  color: #ffffff;
  text-align: center;
}

.features-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  padding: 0 2rem;
  width: 100%;
  box-sizing: border-box;
  align-items: start; /* Ensure consistent alignment */
}

.feature-item {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start; /* Align content to the left */
}

.feature-images {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.feature-img {
  width: 180px;
  height: 180px;
  border-radius: 8px;
  object-fit: cover;
}

.feature-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
  color: #ffffff;
}

.feature-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: #e0e0e0;
  font-weight: 300;
  text-align: justify;
  margin-bottom: 0.8rem;
}

.feature-note {
  font-size: 0.9rem;
  font-style: italic;
  color: #b0b0b0;
  margin-top: 0.5rem;
}

.features-cta {
  text-align: center;
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.features-cta .scroll-hint {
  position: static;
  margin: 0;
  animation: bounce 1.5s infinite;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1rem;
}

.cta-text {
  font-size: 1.2rem;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 1rem;
}

.cta-btn-white {
  background: #ffffff;
  color: #1a1a1a;
  border: none;
  border-radius: 50px;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
  margin-top: 1rem;
}

.cta-btn-white:hover {
  background: #f5f5f5;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 255, 255, 0.3);
}

/* Features section - make both CTAs the same size */
.features-cta .cta-btn-white,
.features-cta .cta-btn-outline {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .feature-img {
    width: 150px;
    height: 150px;
  }
}

@media (max-width: 768px) {
  /* Keep header layout horizontal on mobile - logos stay left/right */
  .features-header {
    gap: 0.5rem;
    margin-bottom: 2rem;
    padding: 0 0.5rem;
  }
  
  .features-logo-left {
    width: 30px; /* 50% of 60px - makes header appear broader */
  }
  
  .features-logo-right {
    width: 127.5px; /* 50% of 255px - makes header appear broader */
    margin-left: -20px;
  }
  
  .features-title {
    font-size: 1.5rem;
  }
  
  .feature-img {
    width: 120px;
    height: 120px;
  }
  
  .features-grid {
    padding: 0 1rem; /* Reduce padding on mobile */
    gap: 2rem;
  }
  
  #story4 {
    padding: 3rem 0.5rem 4rem; /* Reduce section padding */
  }
}


/* =============== WAITLIST SECTION (existing form) =============== */
#waitlist {
  background: linear-gradient(135deg, var(--lush) 0%, var(--shore) 25%, var(--soothe) 50%, var(--breeze) 75%, var(--lush) 100%);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
  padding: 4rem 1rem 6rem;
  display: flex;
  justify-content: center;
  scroll-margin-top: 5rem;
  min-height: 100vh;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.container {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 2rem;
  max-width: 700px;
  width: 100%;
}

.progress {
  height: 6px;
  background: var(--light);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.progress-bar {
  height: 6px;
  background: var(--accent);
  width: 0%;
  transition: width 0.4s ease;
}

.question {
  display: none;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}
.question.active {
  display: flex;
  animation: fadeIn 0.4s ease;
}

.radio-group,
.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  text-align: left;
  margin: 1rem 0;
}

.radio-group label,
.checkbox-group label {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  cursor: pointer;
  padding: 0.8rem;
  border-radius: 8px;
  transition: background 0.2s;
}

.radio-group label:hover,
.checkbox-group label:hover {
  background: #f9f9f9;
}

.radio-group input[type="radio"],
.checkbox-group input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 0.2rem;
  flex-shrink: 0;
  cursor: pointer;
}

.radio-group label span,
.checkbox-group label span {
  flex: 1;
}

input, select, textarea {
  padding: 0.8rem;
  border: 1px solid var(--light);
  border-radius: 8px;
  width: 100%;
  font-family: inherit;
  background: #fffdf9;
}

button {
  background: var(--accent);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 0.8rem 1.2rem;
  cursor: pointer;
  font-size: 1rem;
  transition: 0.3s;
}
button:hover {
  background: var(--light);
  color: var(--text);
}

.fine-print {
  font-family: var(--header-font);
  font-size: 0.75rem;
  line-height: 1.5;
  color: #666;
  text-align: left;
  margin: 1rem 0;
  padding: 0.5rem;
}

.form-disclaimer {
  font-size: 0.65rem;
  line-height: 1.4;
  color: #888;
  text-align: center;
  margin: 1rem 0;
  padding: 0.5rem;
}

.consent-container {
  margin: 1.5rem 0;
  text-align: left;
}

.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  cursor: pointer;
}

.consent-checkbox {
  margin-top: 0.3rem;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  cursor: pointer;
}

.consent-text {
  font-family: var(--header-font);
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text);
}

@keyframes fadeIn {
  from {opacity: 0; transform: translateY(10px);}
  to {opacity: 1; transform: translateY(0);}
}

footer {
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
  color: #6a5b5b;
}

#statusMessage {
  font-size: 1rem;
  color: #444;
  text-align: center;
  margin-top: 1rem;
  animation: fadeIn 0.4s ease;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

section {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}
section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============== STORY 5 SECTION (RENAMED FROM COMING SOON) - KIV =============== */
#story5 {
  background: #1a1a1a; /* Darker shade for Story 5 */
  color: #ffffff;
  padding: 4rem 2rem 6rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  overflow-x: hidden;
}

.coming-soon-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto 4rem;
  width: 100%;
  padding: 0 2rem;
  box-sizing: border-box;
}

.coming-soon-logo-left,
.coming-soon-logo-right {
  width: 60px;
  height: auto;
}

.coming-soon-logo-right {
  width: 255px;
  margin-left: -40px;
}

.coming-soon-title {
  font-size: 2.5rem;
  font-weight: 400;
  letter-spacing: 1px;
  margin: 0;
  color: #ffffff;
  text-align: center;
}

.coming-soon-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  padding: 0 2rem;
  width: 100%;
  box-sizing: border-box;
  align-items: start; /* Ensure consistent alignment */
}

.coming-soon-item {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start; /* Align content to the left */
}

.coming-soon-images {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.coming-soon-img {
  width: 180px;
  height: 180px;
  border-radius: 8px;
  object-fit: cover;
}

.coming-soon-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
  color: #ffffff;
}

.coming-soon-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: #e0e0e0;
  font-weight: 300;
  text-align: justify;
  margin-bottom: 0.8rem;
}

.coming-soon-note {
  font-size: 0.9rem;
  font-style: italic;
  color: #b0b0b0;
  margin-top: 0.5rem;
}

.coming-soon-cta {
  text-align: center;
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.coming-soon-cta .scroll-hint {
  position: static;
  margin: 0;
  animation: bounce 1.5s infinite;
}

.cta-btn-outline {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  border-radius: 50px;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  line-height: 1.5;
  text-decoration: none;
  display: inline-block;
}

.cta-btn-outline:hover {
  background: #ffffff;
  color: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 255, 255, 0.3);
}

@media (max-width: 1024px) {
  .coming-soon-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .coming-soon-img {
    width: 150px;
    height: 150px;
  }
}

@media (max-width: 768px) {
  /* Keep header layout horizontal on mobile - logos stay left/right */
  .coming-soon-header {
    gap: 0.5rem;
    margin-bottom: 2rem;
    padding: 0 0.5rem;
  }
  
  .coming-soon-logo-left {
    width: 30px; /* 50% of 60px - makes header appear broader */
  }
  
  .coming-soon-logo-right {
    width: 127.5px; /* 50% of 255px - makes header appear broader */
    margin-left: -20px;
  }
  
  .coming-soon-title {
    font-size: 1.5rem;
  }
  
  .coming-soon-img {
    width: 120px;
    height: 120px;
  }
  
  .cta-btn-outline {
    font-size: 0.9rem;
    padding: 0.9rem 2rem;
  }
  
  .coming-soon-grid {
    padding: 0 1rem; /* Reduce padding on mobile */
    gap: 2rem;
  }
  
  #coming-soon {
    padding: 3rem 0.5rem 4rem; /* Reduce section padding */
  }

  /* Hero 2 Mobile Adjustments */
  #hero2 {
    justify-content: flex-start;
    padding-top: 15vh;
    background-position: 35% center;
  }

  .hero-content {
    margin-left: 0;
    padding: 0 1.5rem;
    text-align: left;
  }

  #hero2 h1 {
    font-size: 3.5rem;
    line-height: 1.05;
    margin-bottom: 1rem;
  }

  #hero2 .tagline {
    position: static;
    font-size: 1.1rem;
    line-height: 1.5;
    max-width: 100%;
    margin: 0 0 1.5rem 0;
  }

  #hero2 .cta-btn {
    padding: 0.9rem 2rem;
    font-size: 1rem;
  }

  #hero2 .see-inside {
    font-size: 1rem;
    bottom: 4rem;
  }

  /* Landing Page Mobile Adjustments */
  #landing-page {
    background-position: 75% center;
    padding: 0 1.5rem 2rem 1.5rem;
  }

  .landing-nav {
    padding: 0.75rem 1.5rem;
  }

  .landing-nav .landing-brandmark {
    width: 35px;
    left: 1.5rem;
  }

  .landing-announcement {
    font-size: clamp(0.75rem, 2.5vw, 1rem);
    padding: 0 50px;
  }

  .landing-nav-links {
    right: 1.5rem;
    gap: 1rem;
  }

  .landing-nav-links a {
    font-size: 0.85rem;
  }

  .landing-content {
    padding-top: 6rem;
    max-width: 100%;
    margin-top: 2rem;
  }

  .landing-content h1 {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }

  .landing-tagline {
    font-size: clamp(0.9rem, 3vw, 1.2rem);
  }

  .landing-cta-text {
    font-size: clamp(0.85rem, 2.5vw, 1.1rem);
    max-width: 90%;
    left: 1.5rem;
    bottom: 8rem;
  }

  .landing-footer-text {
    font-size: clamp(0.85rem, 2.5vw, 1rem);
    right: 1.5rem;
    left: 1.5rem;
    max-width: 90%;
    text-align: left;
    bottom: 3rem;
  }
}

/* Medium to large laptop screen adjustments for landing page to prevent overlap */
@media (min-width: 769px) and (max-width: 1600px) {
  .landing-cta-text {
    max-width: 38%;
    font-size: clamp(0.9rem, 1.5vw, 1.6rem);
    left: 2rem;
  }

  .landing-footer-text {
    max-width: 38%;
    font-size: clamp(0.8rem, 1.3vw, 1rem);
    right: 2rem;
  }
}

/* Smaller laptop adjustments */
@media (min-width: 769px) and (max-width: 1366px) {
  .landing-cta-text {
    max-width: 35%;
    font-size: clamp(0.85rem, 1.3vw, 1.3rem);
  }

  .landing-footer-text {
    max-width: 35%;
    font-size: clamp(0.75rem, 1.2vw, 0.95rem);
  }
}