/*
Theme Name: Florida Sail & Stay Custom
Theme URI: https://floridasailandstay.com
Description: Custom theme built from the design mockup. Travel booking site for hotels and activities near Florida cruise ports. Specializing in extending your Florida cruise.
Author: Florida Sail & Stay
Version: 1.0
*/

/* ============================================================
   COLOR PALETTE (extracted from design mockup)
   Tweak these variables to re-skin the whole site.
   ============================================================ */
:root {
  --teal:        #5a8b8c;  /* nav bar + primary buttons */
  --teal-dark:   #4d817f;  /* hover / darker button */
  --teal-darker: #3c6a68;  /* footer */
  --coral:       #e67d64;  /* headlines, accents, CTAs */
  --coral-dark:  #d2664c;  /* coral hover */
  --ink:         #2c2c2c;  /* body text */
  --muted:       #808080;  /* tagline / fine print */
  --bg:          #ffffff;  /* page background */
  --bg-alt:      #f5f6f5;  /* alternating section bg */
  --card-bg:     #ffffff;
  --white:       #ffffff;
  --max-width:   1200px;
  --radius:      6px;
  --shadow:      0 2px 6px rgba(0,0,0,0.08);
  --shadow-lift: 0 8px 20px rgba(0,0,0,0.14);
}

/* ============================================================
   RESET / BASE
   ============================================================ */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Open Sans', Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
}
h1, h2, h3, h4, .logo-text {
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--ink);
}
a { color: var(--teal); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--coral); }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header { background: var(--white); }
.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  flex-wrap: wrap;
}
.brand { display: flex; flex-direction: column; }
.brand a { color: inherit; }
.logo-img { max-height: 90px; width: auto; }
.logo-text {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: .5px;
}
.logo-text .amp { color: var(--coral); }
.brand-tagline {
  font-size: .78rem;
  color: var(--muted);
  letter-spacing: .5px;
  margin-top: 2px;
}

/* Nav bar */
.main-nav { background: var(--teal); }
.main-nav .container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}
.nav-menu li a {
  display: block;
  color: var(--white);
  padding: 16px 22px;
  font-family: 'Poppins', sans-serif;
  font-size: .95rem;
  font-weight: 500;
  letter-spacing: .3px;
}
.nav-menu li a:hover,
.nav-menu li.current-menu-item a {
  background: var(--teal-dark);
  color: var(--white);
}

/* Hamburger (mobile) */
.nav-toggle {
  display: none;
  background: var(--teal);
  color: #fff;
  border: 0;
  width: 100%;
  padding: 14px;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  text-align: left;
}
.nav-toggle::before { content: "\2630  Menu"; }

/* ============================================================
   FRONT PAGE
   ============================================================ */
.home-band { padding: 40px 0 56px; }
.home-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}

/* Left column */
.hero-flex {
  display: flex;
  gap: 30px;
  align-items: center;
}
.hero-art { flex: 0 0 42%; max-width: 42%; }
.hero-art img { width: 100%; height: auto; }
.hero-copy { flex: 1; min-width: 0; }
.home-intro h1 {
  color: var(--coral);
  font-size: 2.3rem;
  margin-bottom: 22px;
}
.home-intro p { margin-bottom: 16px; }
.home-tagline {
  color: var(--coral);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.4rem;
  margin-top: 24px;
}

/* Right column — Today's Quick View */
.quick-view h2 {
  color: var(--coral);
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 18px;
}
.quick-links { display: flex; flex-direction: column; gap: 14px; }
.quick-links a {
  display: block;
  background: var(--teal);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  text-align: center;
  padding: 20px 18px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform .15s ease, background .2s ease, box-shadow .2s ease;
}
.quick-links a:nth-child(3) { background: var(--teal-dark); }
.quick-links a:hover {
  background: var(--teal-darker);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lift);
}
.powered-by {
  margin-top: 26px;
  text-align: center;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.4;
}
.powered-by strong { color: var(--teal); display: block; font-size: .95rem; }

/* ============================================================
   CARD SECTIONS (Featured Stays / Activities)
   ============================================================ */
.section { padding: 56px 0; }
.section.alt { background: var(--bg-alt); }
.section-title {
  text-align: center;
  color: var(--teal);
  font-size: 2rem;
  margin-bottom: 36px;
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.card {
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .15s ease, box-shadow .2s ease;
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.card-img {
  height: 190px;
  background: var(--teal) center/cover no-repeat;
}
.card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.card-body h3 { color: var(--ink); font-size: 1.2rem; margin-bottom: 10px; }
.card-body p { font-size: .95rem; margin-bottom: 16px; flex: 1; }
.btn {
  display: inline-block;
  background: var(--coral);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: var(--radius);
  align-self: flex-start;
  transition: background .2s ease;
}
.btn:hover { background: var(--coral-dark); color: var(--white); }
.btn-ghost {
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
}
.btn-ghost:hover { background: var(--teal); color: var(--white); }

/* ============================================================
   BLOG (index.php)
   ============================================================ */
.blog-wrap { padding: 48px 0; }
.post {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
  margin-bottom: 28px;
}
.post h2 { margin-bottom: 8px; }
.post .meta { color: var(--muted); font-size: .85rem; margin-bottom: 14px; }
.page-title { color: var(--teal); margin-bottom: 28px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--teal-darker);
  color: var(--white);
  padding: 48px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding-bottom: 36px;
}
.site-footer h4 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 8px; }
.site-footer a { color: #d7e6e6; }
.site-footer a:hover { color: var(--coral); }
.footer-bar {
  border-top: 1px solid rgba(255,255,255,.15);
  text-align: center;
  padding: 18px 0;
  font-size: .85rem;
  color: #cfe0e0;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 860px) {
  .home-grid { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .home-intro h1 { font-size: 1.9rem; }
  .hero-flex { flex-direction: column; }
  .hero-art { flex-basis: auto; max-width: 100%; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .nav-toggle { display: block; }
  .main-nav .container { display: block; padding: 0; }
  .nav-menu {
    flex-direction: column;
    gap: 0;
    display: none;
  }
  .nav-menu.open { display: flex; }
  .nav-menu li a { padding: 14px 24px; border-top: 1px solid rgba(255,255,255,.12); }
  .card-grid, .footer-grid { grid-template-columns: 1fr; }
  .header-top { justify-content: center; text-align: center; }
}
