/* ==========================================================================
   Great Views Tours and Art LLC — Site Styles
   Palette: Caribbean teal, sunset gold, warm terracotta, cream
   ========================================================================== */

:root {
  --ocean: #0a6b7d;
  --ocean-dark: #064a58;
  --ocean-deep: #03323c;
  --gold: #d89a3a;
  --gold-light: #f0c06a;
  --coral: #c8553d;
  --sand: #f7f1e3;
  --cream: #fdfaf3;
  --ink: #1c2227;
  --ink-soft: #3a4450;
  --muted: #6d7680;
  --line: #e5ddc9;
  --white: #ffffff;
  --radius: 14px;
  --shadow-sm: 0 2px 8px rgba(3, 50, 60, 0.08);
  --shadow-md: 0 10px 30px rgba(3, 50, 60, 0.12);
  --shadow-lg: 0 25px 60px rgba(3, 50, 60, 0.18);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', 'Times New Roman', serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--ocean-deep);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.25rem, 5vw, 4rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); }
h3 { font-size: 1.4rem; }

p { color: var(--ink-soft); }

a { color: var(--ocean); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--coral); }

img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========== Header / Nav ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 250, 243, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--ocean-deep);
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ocean) 0%, var(--gold) 100%);
  display: grid;
  place-items: center;
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: var(--shadow-sm);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  color: var(--ink);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
}

.nav-links a.active { color: var(--ocean); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.nav-cta {
  background: var(--ocean);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  transition: all 0.2s ease;
}
.nav-cta:hover { background: var(--coral); color: var(--white) !important; transform: translateY(-1px); }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--ocean-deep);
  cursor: pointer;
}

/* ========== Hero ========== */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(3, 50, 60, 0.7) 0%, rgba(200, 85, 61, 0.35) 100%),
    linear-gradient(180deg, #1c6472 0%, #0a6b7d 40%, #0a5a6b 100%);
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 20% 20%, rgba(240, 192, 106, 0.25) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(200, 85, 61, 0.25) 0%, transparent 50%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 80px 0;
}

.hero-eyebrow {
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
  backdrop-filter: blur(6px);
  background: rgba(255, 255, 255, 0.08);
}

.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 em { color: var(--gold-light); font-style: normal; }

.hero-sub {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 36px;
  max-width: 620px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  font-family: inherit;
}

.btn-primary {
  background: var(--gold);
  color: var(--ocean-deep);
}
.btn-primary:hover {
  background: var(--gold-light);
  color: var(--ocean-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
}
.btn-secondary:hover {
  background: var(--white);
  color: var(--ocean-deep);
  border-color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--ocean);
  border: 1.5px solid var(--ocean);
}
.btn-outline:hover { background: var(--ocean); color: var(--white); }

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
}
.btn-whatsapp:hover { background: #1da851; color: var(--white); transform: translateY(-2px); }

/* ========== Sections ========== */
section { padding: 90px 0; }

.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-head .eyebrow {
  color: var(--coral);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
}

.section-head p { font-size: 1.1rem; margin-top: 16px; }

/* ========== Features / Values ========== */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  margin-top: 20px;
}

.feature {
  background: var(--white);
  padding: 32px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.feature-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--ocean) 0%, var(--ocean-dark) 100%);
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: var(--gold-light);
}

.feature h3 { margin-bottom: 10px; font-size: 1.2rem; }
.feature p { font-size: 0.95rem; }

/* ========== Tour Cards ========== */
.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.tour-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}
.tour-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.tour-img {
  height: 220px;
  background: linear-gradient(135deg, var(--ocean) 0%, var(--gold) 100%);
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 3rem;
}

.tour-img.airport    { background: linear-gradient(135deg, #0a6b7d 0%, #1c9bb0 100%); }
.tour-img.dunns      { background: linear-gradient(135deg, #0f7a5a 0%, #4db889 100%); }
.tour-img.negril     { background: linear-gradient(135deg, #d89a3a 0%, #f0c06a 100%); }
.tour-img.custom     { background: linear-gradient(135deg, #c8553d 0%, #e88867 100%); }
.tour-img.drone      { background: linear-gradient(135deg, #064a58 0%, #0a6b7d 100%); }

.tour-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ocean-deep);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.tour-body {
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.tour-body h3 { margin-bottom: 10px; }
.tour-body p { font-size: 0.95rem; flex: 1; }

.tour-meta {
  display: flex;
  gap: 16px;
  margin: 18px 0;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--muted);
}

.tour-meta span { display: flex; align-items: center; gap: 6px; }

.tour-price {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 16px;
}

.tour-price .amount {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--ocean-deep);
}

.tour-price .unit { color: var(--muted); font-size: 0.9rem; }

.tour-card .btn { width: 100%; justify-content: center; }

/* ========== About / Split sections ========== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.split-img {
  height: 480px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--ocean-dark) 0%, var(--gold) 100%);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.split-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 30% 30%, rgba(240, 192, 106, 0.5) 0%, transparent 40%),
    radial-gradient(circle at 70% 70%, rgba(200, 85, 61, 0.5) 0%, transparent 40%);
}

.split h2 { margin-bottom: 20px; }
.split p { margin-bottom: 16px; font-size: 1.05rem; }

.alt-bg { background: var(--sand); }

/* ========== Gallery ========== */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.gallery-item {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: grid;
  place-items: center;
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  padding: 24px;
  text-align: center;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.gallery-item:hover { transform: scale(1.02); }

.gallery-item:nth-child(1) { background: linear-gradient(135deg, #0a6b7d 0%, #1c9bb0 100%); }
.gallery-item:nth-child(2) { background: linear-gradient(135deg, #d89a3a 0%, #f0c06a 100%); }
.gallery-item:nth-child(3) { background: linear-gradient(135deg, #0f7a5a 0%, #4db889 100%); }
.gallery-item:nth-child(4) { background: linear-gradient(135deg, #c8553d 0%, #e88867 100%); }
.gallery-item:nth-child(5) { background: linear-gradient(135deg, #064a58 0%, #0a6b7d 100%); }
.gallery-item:nth-child(6) { background: linear-gradient(135deg, #3d6b8f 0%, #7ba8c4 100%); }
.gallery-item:nth-child(7) { background: linear-gradient(135deg, #a8763d 0%, #d89a3a 100%); }
.gallery-item:nth-child(8) { background: linear-gradient(135deg, #0a4052 0%, #0a6b7d 100%); }

/* ========== Testimonials ========== */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.testimonial {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius);
  border-left: 4px solid var(--gold);
  box-shadow: var(--shadow-sm);
}

.testimonial p {
  font-style: italic;
  font-size: 1.05rem;
  margin-bottom: 20px;
  color: var(--ink);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ocean) 0%, var(--gold) 100%);
  display: grid;
  place-items: center;
  color: var(--white);
  font-weight: 700;
}

.testimonial-name { font-weight: 600; color: var(--ocean-deep); }
.testimonial-meta { font-size: 0.85rem; color: var(--muted); }

.stars { color: var(--gold); margin-bottom: 12px; letter-spacing: 2px; }

/* ========== CTA banner ========== */
.cta-banner {
  background: linear-gradient(135deg, var(--ocean-deep) 0%, var(--ocean) 100%);
  color: var(--white);
  text-align: center;
  padding: 80px 24px;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(240, 192, 106, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(200, 85, 61, 0.2) 0%, transparent 50%);
}

.cta-banner h2 { color: var(--white); margin-bottom: 16px; position: relative; }
.cta-banner p { color: rgba(255, 255, 255, 0.9); max-width: 560px; margin: 0 auto 28px; position: relative; }
.cta-banner .btn { position: relative; }

/* ========== Contact ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 { margin-bottom: 16px; }
.contact-info > p { margin-bottom: 32px; font-size: 1.05rem; }

.contact-list { list-style: none; margin-bottom: 32px; }

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.contact-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--sand);
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--ocean);
  font-size: 1.2rem;
}

.contact-list .label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  font-weight: 600;
}

.contact-list .value {
  display: block;
  color: var(--ocean-deep);
  font-weight: 500;
  font-size: 1.05rem;
  margin-top: 2px;
}

.social-row { display: flex; gap: 12px; }

.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--ocean);
  transition: all 0.2s ease;
  font-weight: 700;
}
.social-btn:hover { background: var(--ocean); color: var(--white); transform: translateY(-2px); }

.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ocean-deep);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--cream);
  color: var(--ink);
  transition: border-color 0.2s, background 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--ocean);
  background: var(--white);
}

.form-group textarea { min-height: 140px; resize: vertical; }

/* ========== Footer ========== */
.site-footer {
  background: var(--ocean-deep);
  color: rgba(255, 255, 255, 0.75);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col h4 {
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 600;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: rgba(255, 255, 255, 0.75); font-size: 0.95rem; }
.footer-col a:hover { color: var(--gold-light); }

.footer-brand { color: var(--white); font-family: 'Playfair Display', serif; font-size: 1.3rem; margin-bottom: 14px; display: flex; align-items: center; gap: 12px; }

.footer-about { font-size: 0.95rem; line-height: 1.7; margin-bottom: 16px; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
}

/* ========== Page header (sub pages) ========== */
.page-hero {
  background: linear-gradient(135deg, var(--ocean-dark) 0%, var(--ocean) 100%);
  color: var(--white);
  padding: 80px 0 70px;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(240, 192, 106, 0.25) 0%, transparent 40%),
    radial-gradient(circle at 20% 80%, rgba(200, 85, 61, 0.2) 0%, transparent 40%);
}

.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p { color: rgba(255, 255, 255, 0.9); font-size: 1.15rem; max-width: 640px; }

.breadcrumb {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-bottom: 14px;
}
.breadcrumb a { color: rgba(255, 255, 255, 0.9); }

/* ========== Art Page ========== */
.art-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.art-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.art-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.art-img {
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, var(--ocean) 0%, var(--gold) 100%);
}

.art-img.a1 { background: linear-gradient(135deg, #0a6b7d 0%, #f0c06a 100%); }
.art-img.a2 { background: linear-gradient(135deg, #0f7a5a 0%, #d89a3a 100%); }
.art-img.a3 { background: linear-gradient(135deg, #c8553d 0%, #f0c06a 100%); }
.art-img.a4 { background: linear-gradient(135deg, #064a58 0%, #c8553d 100%); }
.art-img.a5 { background: linear-gradient(135deg, #3d6b8f 0%, #d89a3a 100%); }
.art-img.a6 { background: linear-gradient(135deg, #a8763d 0%, #0f7a5a 100%); }

.art-body { padding: 20px 22px; }
.art-body h3 { font-size: 1.15rem; margin-bottom: 4px; }
.art-body .price { color: var(--coral); font-weight: 600; margin-bottom: 10px; }
.art-body p { font-size: 0.9rem; margin-bottom: 14px; }

/* ========== Utility ========== */
.text-center { text-align: center; }
.mt-4 { margin-top: 40px; }
.success-msg {
  background: #e3f5ef;
  color: #0f7a5a;
  padding: 14px;
  border-radius: 10px;
  margin-top: 16px;
  display: none;
  border: 1px solid #b7e3d0;
}

/* ========== Responsive ========== */
@media (max-width: 880px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 20px 24px;
    gap: 16px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
  }
  .nav-links.open { display: flex; }
  .menu-toggle { display: block; }

  .split { grid-template-columns: 1fr; gap: 32px; }
  .split-img { height: 320px; order: -1; }

  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }

  section { padding: 60px 0; }

  .hero { min-height: 70vh; }
}

@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .contact-form { padding: 28px 22px; }
}
