:root {
  --navy: #1a2744;
  --dark-navy: #0f1a2e;
  --gold: #c9a84c;
  --gold-light: #dfc06b;
  --cream: #f5f0e8;
  --white: #ffffff;
  --text-dark: #2c2c2c;
  --text-light: #6b6b6b;
}

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

body {
  font-family: 'Lato', sans-serif;
  color: var(--text-dark);
  background: white;
  line-height: 1.6;
}

/* HEADER / NAV */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 400;
}
.logo span { color: var(--navy); }

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

nav a {
  text-decoration: none;
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 400;
  transition: color 0.3s;
}

nav a:hover { color: var(--navy); }

/* HERO BANNER IMAGE */
.hero-banner {
  width: 100%;
  height: 500px;
  margin-top: 52px;
  overflow: hidden;
  position: relative;
}

.hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-banner-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e8f4f8 0%, #d4e9f2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: var(--navy);
}

/* HERO TEXT SECTION */
.hero-section {
  background: white;
  padding: 40px 30px;
  text-align: center;
}

.hero-section h1 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.2;
}

.hero-section h2 {
  font-family: 'Lato', sans-serif;
  font-size: 20px;
  color: var(--text-light);
  font-weight: 400;
  margin-bottom: 30px;
}

.hero-section p {
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-dark);
}

/* CRUISE SECTIONS - Two Column Layout like Arabella */
.cruise-experiences {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 30px;
}

.cruise-item {
  margin-bottom: 20px;
}

.cruise-row {
  display: grid;
  grid-template-columns: 450px 1fr;
  gap: 60px;
  align-items: center;
}

.cruise-image {
  width: 100%;
}

.cruise-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
}

.cruise-image-placeholder {
  width: 100%;
  height: 300px;
  background: linear-gradient(135deg, #e8f4f8, #d4e9f2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--navy);
  border-radius: 4px;
}

.cruise-content {
  padding-right: 40px;
}

.cruise-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  color: #b8956f;
  margin-bottom: 10px;
  font-weight: 400;
}

.cruise-item h6 {
  font-family: 'Lato', sans-serif;
  font-size: 18px;
  color: #8a8a8a;
  margin-bottom: 25px;
  font-weight: 400;
}

.cruise-item p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 30px;
}

.cruise-item em {
  color: var(--text-dark);
  font-style: italic;
}

.book-button {
  display: inline-block;
  padding: 14px 40px;
  background: #a8a8a8;
  color: white;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 25px;
  transition: background 0.3s;
}

.book-button:hover {
  background: #8a8a8a;
}

.cruise-divider {
  height: 1px;
  background: #e0e0e0;
  margin: 30px 0;
}

@media (max-width: 900px) {
  .cruise-row {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .cruise-content {
    padding-right: 0;
  }
  .cruise-divider {
    margin: 30px 0;
  }
}

/* CTS LOGO SEPARATOR - Repeating Pattern Banner like Arabella */
.logo-separator {
  width: 100%;
  overflow: hidden;
  padding: 10px 0;
}

.cts-pattern {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 28px;
  font-weight: 400;
  color: #1a2744;
  opacity: 0.08;
  letter-spacing: 30px;
  text-align: center;
  white-space: nowrap;
}

@media (max-width: 600px) {
  .cts-pattern {
    font-size: 20px;
    letter-spacing: 20px;
  }
  .logo-separator {
    padding: 15px 0;
  }
}

/* VIDEO SECTION */
.video-section {
  padding: 30px 30px;
  background: white;
  text-align: center;
  border-top: 1px solid #e5e5e5;
}

.section-label {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.video-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  color: var(--navy);
  margin-bottom: 30px;
}

.video-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.video-placeholder {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e8f4f8, #d4e9f2);
  color: var(--navy);
  font-family: 'Playfair Display', serif;
  font-size: 24px;
}

/* OFFERINGS GRID */
.offerings-section {
  padding: 40px 30px;
  background: white;
  text-align: center;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  color: var(--navy);
  margin-bottom: 20px;
}

.section-text {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-dark);
  max-width: 700px;
  margin: 0 auto 60px;
}

.offerings {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.offering-card {
  background: white;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
  color: inherit;
  display: block;
}

.offering-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.card-image {
  height: 200px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e8f4f8, #d4e9f2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--navy);
}

.card-body {
  padding: 28px 24px;
  text-align: left;
}

.card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 12px;
}

.card-body p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.card-link {
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
}

/* INSTAGRAM SECTION */
.instagram-section {
  padding: 40px 30px;
  background: white;
  text-align: center;
}

.instagram-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  color: var(--navy);
  margin-bottom: 30px;
}

.instagram-section p {
  font-size: 17px;
  color: var(--text-dark);
  margin-bottom: 50px;
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  max-width: 1100px;
  margin: 0 auto 40px;
}

.insta-item {
  aspect-ratio: 1;
  background: linear-gradient(135deg, #e8f4f8, #d4e9f2);
  border-radius: 6px;
  overflow: hidden;
}

.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.social-icons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.social-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  text-decoration: none;
  font-size: 24px;
  transition: all 0.3s;
}

.social-icon:hover {
  background: var(--gold);
  color: white;
}

/* FOOTER - Matching Arabella */
footer {
  background: var(--navy);
  border-top: 1px solid var(--navy);
  padding: 30px 30px 20px;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-about {
  max-width: 400px;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}

.footer-logo span {
  color: white;
}

.footer-about p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}

.footer-social-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: white;
  margin-bottom: 15px;
}

.footer-social-icons {
  display: flex;
  gap: 15px;
}

.footer-social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  text-decoration: none;
  font-size: 18px;
  transition: all 0.3s;
}

.footer-social-icon:hover {
  background: var(--gold);
  color: var(--navy);
}

.footer-links h4 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: white;
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-newsletter h4 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: white;
  margin-bottom: 15px;
}

.footer-newsletter p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
  line-height: 1.6;
}

.newsletter-form input {
  width: 100%;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 4px;
  margin-bottom: 10px;
  font-size: 14px;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
  width: 100%;
  padding: 12px;
  background: var(--gold);
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.newsletter-form button:hover {
  background: var(--gold-light);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .offerings {
    grid-template-columns: repeat(2, 1fr);
  }
  .insta-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  nav ul {
    display: none;
  }
}

@media (max-width: 600px) {
  .offerings {
    grid-template-columns: 1fr;
  }
  .hero-section h1 {
    font-size: 36px;
  }
  .section-title {
    font-size: 32px;
  }
}
