/* ==============================
   Visit Dillon Beach Portal
   Shared Stylesheet
   ============================== */

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Source Sans 3', 'Source Sans Pro', sans-serif;
    color: #333;
    line-height: 1.6;
    background: #fff;
}

h1, h2, h3, h4 {
    font-family: 'Merriweather', serif;
    color: #2c3e50;
}

a { color: #5a8a7a; text-decoration: none; }
a:hover { color: #3d6b5c; }

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.site-nav {
    background: #2c3e50;
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.site-nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.site-nav .nav-brand {
    font-family: 'Merriweather', serif;
    color: #c8d7d2;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
}

.site-nav .nav-brand:hover {
    color: #fff;
}

.site-nav .nav-links {
    list-style: none;
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
}

.site-nav .nav-links a {
    color: #ccd6d2;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.2s;
}

.site-nav .nav-links a:hover,
.site-nav .nav-links a.active {
    color: #fff;
}

/* Breadcrumbs */
.breadcrumbs {
    padding: 14px 0 0;
    font-size: 0.85rem;
    color: #888;
}
.breadcrumbs a { color: #5a8a7a; }

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #2c3e50 0%, #3d6b5c 100%);
    color: #fff;
    padding: 60px 0 50px;
    text-align: center;
}

.page-hero h1 {
    color: #fff;
    font-size: 2.4rem;
    margin-bottom: 12px;
}

.page-hero .subtitle {
    font-size: 1.1rem;
    opacity: 0.85;
    max-width: 650px;
    margin: 0 auto;
}

/* Guide / Page Content */
.page-content {
    padding: 40px 0 60px;
}

.page-content section {
    margin-bottom: 50px;
}

.page-content h2 {
    font-size: 1.7rem;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e8ede8;
}

.page-content h3 {
    font-size: 1.25rem;
    margin: 20px 0 10px;
}

.page-content p {
    margin-bottom: 14px;
    line-height: 1.75;
}

.page-content ul, .page-content ol {
    margin: 0 0 16px 24px;
    line-height: 1.8;
}

/* Table of Contents */
.toc {
    background: #f7faf8;
    border: 1px solid #dde8dd;
    border-radius: 8px;
    padding: 24px 28px;
    margin-bottom: 40px;
}

.toc h2 {
    font-size: 1.2rem;
    border: none;
    padding: 0;
    margin-bottom: 12px;
}

.toc ol {
    margin: 0;
    padding-left: 20px;
}

.toc li {
    margin-bottom: 6px;
}

.toc a {
    font-size: 0.95rem;
}

/* Route Cards */
.route-card {
    background: #f7faf8;
    border-left: 4px solid #5a8a7a;
    padding: 18px 22px;
    margin-bottom: 16px;
    border-radius: 0 6px 6px 0;
}

.route-card strong {
    display: block;
    margin-bottom: 4px;
    color: #2c3e50;
}

.route-card ol {
    margin: 8px 0 0 20px;
    line-height: 1.8;
}

/* Tip Boxes */
.tip-box {
    background: #fffcf0;
    border: 1px solid #e8deb0;
    border-radius: 6px;
    padding: 18px 22px;
    margin: 16px 0;
}

.tip-box strong {
    color: #8a7a2a;
}

/* Info Cards Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 16px;
}

.info-card {
    background: #f7faf8;
    border-radius: 8px;
    padding: 22px;
    border: 1px solid #e8ede8;
}

.info-card h3 {
    margin-top: 0;
    font-size: 1.15rem;
}

.info-card p {
    font-size: 0.93rem;
    margin-bottom: 8px;
}

/* Featured Card (lodging) */
.featured-card {
    background: linear-gradient(135deg, #f7faf8 0%, #eef5ee 100%);
    border: 2px solid #5a8a7a;
    border-radius: 10px;
    padding: 32px;
    margin-bottom: 32px;
}

.featured-card h3 {
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 12px;
    color: #2c3e50;
}

.featured-card .rating {
    font-size: 1.05rem;
    color: #8a7a2a;
    font-weight: 600;
    margin-bottom: 14px;
}

.featured-card .amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 16px 0;
    list-style: none;
    padding: 0;
}

.featured-card .amenities li {
    background: #fff;
    border: 1px solid #dde8dd;
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 0.88rem;
    color: #3d6b5c;
}

.featured-card .host-note {
    font-style: italic;
    color: #555;
    margin: 14px 0;
    font-size: 0.95rem;
}

.featured-card .btn-book {
    display: inline-block;
    background: linear-gradient(135deg, #5a8a7a 0%, #3d6b5c 100%);
    color: #fff;
    padding: 14px 36px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.2s, transform 0.1s;
    margin-right: 12px;
    margin-top: 6px;
}

.featured-card .btn-book:hover {
    background: linear-gradient(135deg, #3d6b5c 0%, #2c5a4a 100%);
    color: #fff;
    transform: translateY(-1px);
}

.featured-card .btn-site {
    display: inline-block;
    color: #5a8a7a;
    padding: 14px 24px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border: 1px solid #5a8a7a;
    border-radius: 5px;
    transition: background 0.2s;
    margin-top: 6px;
}

.featured-card .btn-site:hover {
    background: #f7faf8;
    color: #3d6b5c;
}

/* CTA Inline */
.cta-inline {
    background: linear-gradient(135deg, #5a8a7a 0%, #3d6b5c 100%);
    color: #fff;
    padding: 28px 32px;
    border-radius: 8px;
    text-align: center;
    margin: 30px 0;
}

.cta-inline h3 {
    color: #fff;
    margin: 0 0 8px;
    font-size: 1.3rem;
}

.cta-inline p {
    margin: 0 0 16px;
    opacity: 0.9;
}

.cta-inline .btn-book {
    display: inline-block;
    background: #fff;
    color: #3d6b5c;
    padding: 12px 32px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
}

.cta-inline .btn-book:hover {
    background: #f0f5f0;
    color: #2c3e50;
}

/* Parking Table */
.parking-table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0 20px;
    font-size: 0.92rem;
}

.parking-table th {
    background: #2c3e50;
    color: #fff;
    padding: 10px 14px;
    text-align: left;
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
}

.parking-table td {
    padding: 9px 14px;
    border-bottom: 1px solid #e8ede8;
}

.parking-table tr:nth-child(even) {
    background: #f7faf8;
}

/* Lodging Card */
.lodging-card {
    background: #f7faf8;
    border: 1px solid #e8ede8;
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 20px;
}

.lodging-card h3 {
    margin-top: 0;
    font-size: 1.2rem;
}

.lodging-card p {
    font-size: 0.93rem;
    margin-bottom: 8px;
}

/* Footer */
.site-footer {
    background: #2c3e50;
    color: #ccd6d2;
    padding: 40px 0 30px;
    text-align: center;
    margin-top: 40px;
}

.site-footer h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.site-footer h3 a {
    color: #fff;
    text-decoration: none;
}

.site-footer p {
    font-size: 0.9rem;
    margin-bottom: 6px;
}

.site-footer a {
    color: #c8d7d2;
}

.site-footer a:hover {
    color: #fff;
}

.site-footer .copyright {
    margin-top: 16px;
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Mobile */
@media (max-width: 768px) {
    .page-hero h1 { font-size: 1.8rem; }
    .site-nav .container { justify-content: center; text-align: center; }
    .site-nav .nav-links { justify-content: center; gap: 14px; }
    .featured-card { padding: 22px; }
    .featured-card .btn-book,
    .featured-card .btn-site { display: block; text-align: center; margin-right: 0; }
    .parking-table { font-size: 0.8rem; }
    .parking-table th, .parking-table td { padding: 7px 8px; }
}

/* ============================================
   HOMEPAGE — Visit Dillon Beach Portal
   Styles below are for the homepage (index.html)
   with fixed nav, full-width hero, card grids,
   featured stay, newsletter, and multi-column footer.
   ============================================ */

/* --- Homepage: Variables --- */
:root {
  --ocean-deep: #1a5276;
  --ocean-mid: #2980b9;
  --ocean-light: #3498db;
  --sand-light: #f5e6d3;
  --sand-mid: #e8d5b7;
  --sand-dark: #d4c5a9;
  --coral: #e74c3c;
  --coral-dark: #c0392b;
  --nav-bg: #1a3c4d;
  --sea-esta-green: #5a8a7a;
  --text-dark: #2c3e50;
  --text-muted: #6c7a89;
  --text-light: #5a6c7d;
  --bg-alt: #faf6f1;
  --font-heading: 'Merriweather', Georgia, 'Times New Roman', serif;
  --font-body: 'Source Sans 3', 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

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

/* --- Homepage: Accessibility --- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

:focus-visible {
  outline: 3px solid var(--ocean-light);
  outline-offset: 2px;
}

/* --- Homepage: Fixed Navigation --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--nav-bg);
  height: 64px;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.navbar .nav-brand {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
  white-space: nowrap;
  text-decoration: none;
}

.navbar .nav-brand:hover {
  color: var(--sand-light);
}

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

.navbar .nav-links a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 4px 0;
  position: relative;
  transition: color 0.25s ease;
  text-decoration: none;
}

.navbar .nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--ocean-light);
  transition: width 0.3s ease;
}

.navbar .nav-links a:hover {
  color: #fff;
  text-decoration: none;
}

.navbar .nav-links a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 4px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* --- Homepage: Hero --- */
.hero {
  position: relative;
  height: 85vh;
  min-height: 520px;
  max-height: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  margin-top: 64px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 60, 77, 0.45) 0%,
    rgba(26, 60, 77, 0.55) 50%,
    rgba(26, 60, 77, 0.7) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
  padding: 0 24px;
}

.hero h1 {
  font-size: 3.8rem;
  color: #fff;
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.hero-subtitle {
  font-size: 1.35rem;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 300;
  margin-bottom: 32px;
  line-height: 1.6;
}

/* --- Homepage: Quick Info Bar --- */
.quick-info {
  background: var(--ocean-deep);
  padding: 28px 0;
}

.quick-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.quick-info-item {
  color: #fff;
}

.quick-info-item .icon {
  font-size: 1.6rem;
  margin-bottom: 6px;
}

.quick-info-item .label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.65);
  display: block;
  margin-bottom: 2px;
}

.quick-info-item .value {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
}

/* --- Homepage: Section Styles --- */
.section {
  padding: 80px 0;
}

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

.section-heading {
  text-align: center;
  margin-bottom: 48px;
}

.section-heading h2 {
  margin-bottom: 12px;
}

.section-heading p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.section-heading h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--ocean-mid), var(--ocean-light));
  margin: 16px auto 0;
  border-radius: 2px;
}

/* --- Homepage: Card Grids --- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

/* --- Homepage: Cards --- */
.card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.card-body {
  padding: 24px;
}

.card-body h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.card-body p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 14px;
}

.card-link {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ocean-mid);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.25s ease;
  text-decoration: none;
}

.card-link:hover {
  gap: 8px;
  color: var(--ocean-deep);
  text-decoration: none;
}

/* --- Homepage: About Section (2-column) --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-text h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--ocean-mid), var(--ocean-light));
  margin: 16px 0 0;
  border-radius: 2px;
}

.about-text h2 {
  margin-bottom: 20px;
}

.about-text p {
  margin-bottom: 16px;
  color: #4a5b6c;
}

.about-img {
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* --- Homepage: Featured Stay --- */
.featured-stay {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--bg-alt) 0%, #f0ebe4 100%);
}

.featured-stay .section-heading h2::after {
  background: linear-gradient(90deg, var(--sea-esta-green), #7ab39e);
}

.hp-featured-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  border: 2px solid var(--sea-esta-green);
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 960px;
  margin: 0 auto 32px;
}

.hp-featured-card-img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
}

.hp-featured-card-body {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--sea-esta-green);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  width: fit-content;
}

.hp-featured-card-body h3 {
  font-size: 1.6rem;
  margin-bottom: 8px;
  color: var(--nav-bg);
}

.hp-featured-card-body .tagline {
  font-size: 1.05rem;
  color: var(--sea-esta-green);
  font-style: italic;
  margin-bottom: 16px;
}

.featured-rating {
  font-size: 0.95rem;
  color: #d4a200;
  font-weight: 600;
  margin-bottom: 16px;
}

.featured-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.amenity-tag {
  background: #f0f7f4;
  color: #3d6b5e;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid #c8e0d6;
}

.featured-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.other-stays {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.other-stays a {
  font-weight: 600;
}

/* --- Homepage: Getting Here --- */
.getting-here-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.getting-here-content p {
  font-size: 1.05rem;
  color: #4a5b6c;
  margin-bottom: 16px;
}

.directions-summary {
  background: #fff;
  border-radius: 12px;
  padding: 28px 32px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  text-align: left;
  margin: 28px 0;
}

.directions-summary ol {
  list-style: decimal;
  padding-left: 20px;
}

.directions-summary li {
  margin-bottom: 8px;
  color: #4a5b6c;
}

/* --- Homepage: Blog Cards --- */
.blog-card .card-meta {
  font-size: 0.82rem;
  color: #9ba8b5;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.blog-card .card-body h3 {
  font-size: 1.15rem;
}

/* --- Homepage: Newsletter --- */
.newsletter {
  background: var(--ocean-deep);
  padding: 64px 0;
  text-align: center;
}

.newsletter h2 {
  color: #fff;
  margin-bottom: 10px;
}

.newsletter h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--ocean-light), #5dade2);
  margin: 14px auto 0;
  border-radius: 2px;
}

.newsletter p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  margin-bottom: 28px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
  gap: 0;
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 14px 20px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-right: none;
  border-radius: 8px 0 0 8px;
  font-size: 1rem;
  font-family: var(--font-body);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  outline: none;
  transition: border-color 0.25s ease;
}

.newsletter-form input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input[type="email"]:focus {
  border-color: var(--ocean-light);
}

.newsletter-form button {
  padding: 14px 28px;
  border-radius: 0 8px 8px 0;
  border: none;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}

.newsletter-success {
  display: none;
  color: #2ecc71;
  font-weight: 600;
  font-size: 1.05rem;
  margin-top: 16px;
}

.newsletter-success.visible {
  display: block;
}

/* --- Homepage: Multi-column Footer --- */
.footer {
  background: var(--nav-bg);
  color: rgba(255, 255, 255, 0.8);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h4 {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1rem;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  transition: color 0.25s ease;
  text-decoration: none;
}

.footer-col a:hover {
  color: #fff;
}

.social-links {
  display: flex;
  gap: 16px;
  margin-top: 4px;
}

.social-links a {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
}

.social-links a:hover {
  color: var(--ocean-light);
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
}

.footer-tagline {
  font-style: italic;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 8px;
}

.footer-copyright {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
}

/* --- Homepage: Buttons --- */
.btn-primary {
  display: inline-block;
  background: var(--coral);
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--coral-dark);
  color: #fff;
  transform: translateY(-1px);
  text-decoration: none;
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--ocean-mid);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  padding: 12px 30px;
  border-radius: 8px;
  border: 2px solid var(--ocean-mid);
  cursor: pointer;
  transition: all 0.25s ease;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.btn-secondary:hover {
  background: var(--ocean-mid);
  color: #fff;
  text-decoration: none;
}

.btn-secondary--white {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-secondary--white:hover {
  background: #fff;
  color: var(--nav-bg);
  border-color: #fff;
}

.hp-btn-book {
  display: inline-block;
  background: var(--sea-esta-green);
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.2s ease;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.hp-btn-book:hover {
  background: #4a7568;
  color: #fff;
  transform: translateY(-1px);
  text-decoration: none;
}

/* --- Homepage: Tag Utility --- */
.tag {
  display: inline-block;
  background: #eef5fb;
  color: var(--ocean-mid);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============================================
   Homepage Responsive
   ============================================ */

@media (max-width: 1200px) {
  .hero h1 { font-size: 3.2rem; }
}

@media (max-width: 900px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .about-img {
    order: -1;
  }

  .hp-featured-card {
    grid-template-columns: 1fr;
  }

  .hp-featured-card-img {
    min-height: 280px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero h1 { font-size: 2.8rem; }
}

@media (max-width: 768px) {
  .navbar .nav-toggle {
    display: flex;
  }

  .navbar .nav-links {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--nav-bg);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 40px;
    gap: 0;
    z-index: 999;
  }

  .navbar .nav-links.open {
    display: flex;
  }

  .navbar .nav-links a {
    font-size: 1.1rem;
    padding: 16px 0;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .navbar .nav-links a::after {
    display: none;
  }

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

  .hero h1 {
    font-size: 2.3rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .quick-info-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .section {
    padding: 56px 0;
  }

  .featured-stay {
    padding: 56px 0;
  }

  .hp-featured-card-body {
    padding: 28px 24px;
  }

  .featured-actions {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .newsletter {
    padding: 48px 0;
  }

  .newsletter-form {
    flex-direction: column;
    gap: 12px;
  }

  .newsletter-form input[type="email"] {
    border-right: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
  }

  .newsletter-form button {
    border-radius: 8px;
  }
}

@media (max-width: 480px) {
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .hero {
    height: 60vh;
    min-height: 360px;
  }

  .hero h1 {
    font-size: 1.9rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .quick-info-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .section {
    padding: 44px 0;
  }

  .section-heading {
    margin-bottom: 32px;
  }

  .card-img {
    height: 180px;
  }

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

  .hp-featured-card-img {
    min-height: 220px;
  }

  .hp-featured-card-body {
    padding: 24px 20px;
  }

  .directions-summary {
    padding: 20px;
  }

  .btn-primary,
  .btn-secondary,
  .hp-btn-book {
    padding: 12px 24px;
    font-size: 0.95rem;
  }
}

/* ==============================
   Standardized Nav Toggle
   ============================== */
.nav-toggle {
    display: none;
    background: rgba(255,255,255,0.15);
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 6px 12px;
    border-radius: 4px;
    line-height: 1;
}

@media (max-width: 768px) {
    .nav-toggle { display: block; }
    .site-nav .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        padding-top: 12px;
        gap: 8px;
    }
    .site-nav .nav-links.open { display: flex; }
    .nav-container { flex-wrap: wrap; }
}

/* ==============================
   Standardized Footer (.site-footer)
   ============================== */
.site-footer {
    background: #1a3c4d;
    color: #a8bdb5;
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 25px;
}

.footer-brand h3 {
    font-family: 'Merriweather', serif;
    color: #c8d7d2;
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #8aa89e;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    color: #a8bdb5;
    font-size: 0.9rem;
    text-decoration: none;
}

.footer-links a:hover { color: #fff; }

.footer-stay p {
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.footer-stay a {
    color: #c8d7d2;
    font-weight: 600;
}

.footer-stay a:hover { color: #fff; }

.footer-copyright {
    text-align: center;
    font-size: 0.8rem;
    color: #6b8a80;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    .footer-links { align-items: center; }
}
