/* ================================
   Stone's Throw from the Beach
   Beachy Summer Vacation Theme
   ================================ */

/* CSS Variables - Beachy Color Palette */
:root {
  /* Ocean & Sky Blues */
  --ocean-deep: #1a5f7a;
  --ocean-light: #57a0c1;
  --sky-blue: #87ceeb;
  --sky-soft: #e8f4f8;

  /* Sandy Warm Tones */
  --sand-dark: #c2956e;
  --sand-light: #f4e4d4;
  --sand-cream: #faf6f1;

  /* Sunset & Coral Accents */
  --coral: #ff7f6e;
  --coral-soft: #ffb4a2;
  --sunset-orange: #f4a261;
  --sunset-pink: #e9c46a;

  /* Tropical Greens */
  --palm-green: #2d6a4f;
  --seafoam: #95d5b2;

  /* Neutrals */
  --white: #ffffff;
  --off-white: #fdfcfa;
  --text-dark: #2d3436;
  --text-medium: #636e72;
  --text-light: #b2bec3;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --section-padding: 100px;
  --container-max: 1200px;

  /* Transitions */
  --transition-smooth: all 0.3s ease;
  --transition-bounce: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background-color: var(--off-white);
  overflow-x: hidden;
}

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

a {
  color: var(--ocean-deep);
  text-decoration: none;
  transition: var(--transition-smooth);
}

a:hover {
  color: var(--coral);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-dark);
}

/* Container */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  border: none;
  transition: var(--transition-bounce);
}

.btn-primary {
  background: linear-gradient(135deg, var(--coral) 0%, var(--sunset-orange) 100%);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(255, 127, 110, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 127, 110, 0.5);
  color: var(--white);
}

.btn-large {
  padding: 18px 48px;
  font-size: 16px;
}

.btn-nav {
  padding: 10px 24px;
  background: var(--coral);
  color: var(--white);
}

.btn-nav:hover {
  background: var(--sunset-orange);
  color: var(--white);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  padding: 12px 0;
}

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

.logo {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.navbar.scrolled .logo {
  color: var(--ocean-deep);
  text-shadow: none;
}

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

.nav-links a {
  color: var(--white);
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.navbar.scrolled .nav-links a {
  color: var(--text-dark);
  text-shadow: none;
}

.nav-links a:hover {
  color: var(--sunset-orange);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-btn span {
  width: 25px;
  height: 2px;
  background: var(--white);
  transition: var(--transition-smooth);
}

.navbar.scrolled .mobile-menu-btn span {
  background: var(--text-dark);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, var(--ocean-deep) 0%, var(--ocean-light) 50%, var(--sky-blue) 100%);
  background-image:
    linear-gradient(135deg, rgba(26, 95, 122, 0.85) 0%, rgba(87, 160, 193, 0.75) 50%, rgba(135, 206, 235, 0.65) 100%),
    url('../images/background/hero-beach-1920x1080.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(to top, var(--off-white) 0%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 24px;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--white);
  margin-bottom: 16px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: var(--sand-light);
  margin-bottom: 8px;
  font-style: italic;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.hero-scroll a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

/* Highlights Section */
.highlights {
  padding: 80px 0;
  background: var(--white);
  margin-top: -60px;
  position: relative;
  z-index: 2;
  border-radius: 30px 30px 0 0;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.highlight-item {
  text-align: center;
  padding: 32px 16px;
  border-radius: 16px;
  background: var(--sand-cream);
  transition: var(--transition-bounce);
}

.highlight-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.highlight-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--ocean-light) 0%, var(--ocean-deep) 100%);
  border-radius: 50%;
}

.highlight-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--white);
}

.highlight-item h3 {
  font-size: 1.3rem;
  margin-bottom: 4px;
  color: var(--ocean-deep);
}

.highlight-item p {
  color: var(--text-medium);
  font-size: 0.9rem;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, var(--sky-soft) 0%, var(--sand-light) 100%);
  color: var(--ocean-deep);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--ocean-deep);
}

/* About Section */
.about {
  padding: var(--section-padding) 0;
  background: var(--off-white);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text .lead {
  font-size: 1.3rem;
  color: var(--ocean-deep);
  font-weight: 500;
  margin-bottom: 24px;
  line-height: 1.6;
}

.about-text p {
  margin-bottom: 20px;
  color: var(--text-medium);
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.feature-icon {
  font-size: 1.2rem;
  color: var(--sunset-orange);
}

.about-image {
  position: relative;
}

.image-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

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

.image-card-overlay {
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 200px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  border: 5px solid var(--white);
}

.image-card-overlay img {
  height: 150px;
}

/* Gallery Section */
.gallery {
  padding: var(--section-padding) 0;
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 200px);
  gap: 16px;
}

.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.3) 0%, transparent 50%);
  opacity: 0;
  transition: var(--transition-smooth);
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

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

.gallery-item-large {
  grid-column: span 2;
  grid-row: span 2;
}

/* Amenities Section */
.amenities {
  padding: var(--section-padding) 0;
  background: linear-gradient(180deg, var(--sky-soft) 0%, var(--off-white) 100%);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.amenity-category {
  background: var(--white);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  transition: var(--transition-bounce);
}

.amenity-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.amenity-category h3 {
  font-size: 1.2rem;
  color: var(--ocean-deep);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--coral-soft);
}

.amenity-category ul {
  list-style: none;
}

.amenity-category li {
  padding: 8px 0;
  color: var(--text-medium);
  position: relative;
  padding-left: 24px;
}

.amenity-category li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--seafoam);
  font-weight: 700;
}

/* Golf Section */
.golf {
  padding: var(--section-padding) 0;
  background: linear-gradient(135deg, var(--palm-green) 0%, var(--ocean-deep) 100%);
}

.golf .section-tag {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.golf .section-header h2 {
  color: var(--white);
}

.golf-content {
  max-width: 900px;
  margin: 0 auto;
}

.golf-intro {
  text-align: center;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 48px;
  line-height: 1.8;
}

.golf-intro strong {
  color: var(--white);
}

.golf-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.golf-course {
  background: rgba(255, 255, 255, 0.1);
  padding: 28px;
  border-radius: 16px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: var(--transition-bounce);
}

.golf-course:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.golf-course h3 {
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 8px;
}

.golf-course p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  margin: 0;
}

.golf-note {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  font-style: italic;
}

/* Location Section */
.location {
  padding: var(--section-padding) 0;
  background: var(--off-white);
}

.location-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.location-text .section-tag {
  margin-bottom: 16px;
}

.location-text h2 {
  font-size: 2.5rem;
  color: var(--ocean-deep);
  margin-bottom: 16px;
}

.location-text .lead {
  font-size: 1.2rem;
  color: var(--sand-dark);
  font-weight: 500;
  margin-bottom: 20px;
}

.location-text p {
  color: var(--text-medium);
  margin-bottom: 24px;
}

.location-features {
  display: flex;
  gap: 32px;
  margin-bottom: 32px;
}

.location-feature {
  text-align: center;
}

.location-feature strong {
  display: block;
  font-size: 1.3rem;
  color: var(--ocean-deep);
}

.location-feature span {
  font-size: 0.9rem;
  color: var(--text-light);
}

.location-address {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-medium);
  font-weight: 500;
}

.location-address svg {
  color: var(--coral);
}

.location-map {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Testimonials Section */
.testimonials {
  padding: var(--section-padding) 0;
  background: linear-gradient(135deg, var(--ocean-deep) 0%, var(--ocean-light) 100%);
}

.testimonials .section-tag {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.testimonials .section-header h2 {
  color: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.testimonial-card {
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  transition: var(--transition-bounce);
}

.testimonial-card:hover {
  transform: translateY(-8px);
}

.testimonial-rating {
  color: var(--sunset-orange);
  font-size: 1.5rem;
  margin-bottom: 20px;
  letter-spacing: 4px;
}

.testimonial-card p {
  font-style: italic;
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 20px;
}

.testimonial-author {
  color: var(--ocean-deep);
  font-weight: 600;
}

/* CTA Section */
.cta {
  padding: var(--section-padding) 0;
  background:
    linear-gradient(135deg, rgba(244, 228, 212, 0.95) 0%, rgba(250, 246, 241, 0.95) 100%),
    url('../images/background/hero-beach-1920x600.jpg');
  background-size: cover;
  background-position: center;
  text-align: center;
}

.cta-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--ocean-deep);
  margin-bottom: 16px;
}

.cta-content > p {
  font-size: 1.2rem;
  color: var(--text-medium);
  max-width: 600px;
  margin: 0 auto 40px;
}

.cta-buttons {
  margin-bottom: 40px;
}

.cta-contact p {
  color: var(--text-light);
  margin-bottom: 16px;
}

.contact-info {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ocean-deep);
  font-weight: 500;
  padding: 12px 24px;
  background: var(--white);
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: var(--transition-bounce);
}

.contact-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  color: var(--coral);
}

.contact-link svg {
  flex-shrink: 0;
}

/* Footer */
.footer {
  background: var(--text-dark);
  color: var(--white);
  padding: 60px 0 30px;
}

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

.footer-brand h3 {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 12px;
}

.footer-brand p {
  color: var(--text-light);
}

.footer h4 {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-contact a,
.footer-links a {
  color: var(--text-light);
  display: block;
  margin-bottom: 10px;
}

.footer-contact a:hover,
.footer-links a:hover {
  color: var(--coral-soft);
}

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

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

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 60px;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    gap: 16px;
    display: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    color: var(--text-dark);
    text-shadow: none;
  }

  .mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero {
    background-attachment: scroll;
  }

  .highlights-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-content,
  .location-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image {
    order: -1;
  }

  .image-card-overlay {
    display: none;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .amenities-grid {
    grid-template-columns: 1fr;
  }

  .golf-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 150px);
  }

  .gallery-item-large {
    grid-column: span 2;
    grid-row: span 1;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .location-features {
    flex-direction: column;
    gap: 16px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .contact-info {
    flex-direction: column;
    gap: 16px;
  }
}

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

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 200px);
  }

  .gallery-item-large {
    grid-column: span 1;
  }

  .btn-large {
    padding: 16px 36px;
    font-size: 14px;
  }
}

/* ================================
   Blog Styles
   ================================ */

/* Blog Hero */
.blog-hero {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, var(--ocean-deep) 0%, var(--ocean-light) 100%);
  text-align: center;
}

.blog-hero .section-tag {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.blog-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 16px;
}

.blog-hero-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Blog Listing */
.blog-listing {
  padding: var(--section-padding) 0;
  background: var(--off-white);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.blog-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: var(--transition-bounce);
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

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

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-content {
  padding: 24px;
}

.blog-card-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
  font-size: 0.85rem;
}

.blog-card-category {
  color: var(--coral);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.blog-card-date {
  color: var(--text-light);
}

.blog-card h2 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  line-height: 1.4;
}

.blog-card h2 a {
  color: var(--ocean-deep);
}

.blog-card h2 a:hover {
  color: var(--coral);
}

.blog-card p {
  color: var(--text-medium);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.blog-card-link {
  color: var(--ocean-deep);
  font-weight: 600;
  font-size: 0.9rem;
}

.blog-card-link:hover {
  color: var(--coral);
}

/* Blog Post */
.blog-post {
  padding-top: 80px;
}

.post-header {
  padding: 60px 0 40px;
  background: linear-gradient(135deg, var(--sky-soft) 0%, var(--sand-light) 100%);
  text-align: center;
}

.post-meta {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.post-category {
  color: var(--coral);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.post-date {
  color: var(--text-medium);
}

.post-header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--ocean-deep);
  max-width: 800px;
  margin: 0 auto 16px;
  line-height: 1.3;
}

.post-description {
  font-size: 1.2rem;
  color: var(--text-medium);
  max-width: 700px;
  margin: 0 auto;
}

.post-featured-image {
  max-width: 1000px;
  margin: -20px auto 0;
  padding: 0 24px;
}

.post-featured-image img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.image-credit {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 12px;
  font-style: italic;
}

.post-content {
  padding: 60px 0;
}

.container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.post-content h2 {
  font-size: 1.8rem;
  color: var(--ocean-deep);
  margin: 48px 0 20px;
}

.post-content h3 {
  font-size: 1.4rem;
  color: var(--ocean-deep);
  margin: 36px 0 16px;
}

.post-content p {
  margin-bottom: 20px;
  color: var(--text-dark);
  line-height: 1.8;
}

.post-content ul,
.post-content ol {
  margin: 20px 0;
  padding-left: 24px;
}

.post-content li {
  margin-bottom: 10px;
  line-height: 1.7;
  color: var(--text-dark);
}

.post-content strong {
  color: var(--ocean-deep);
}

.post-content blockquote {
  margin: 32px 0;
  padding: 24px 32px;
  background: var(--sand-cream);
  border-left: 4px solid var(--coral);
  border-radius: 0 12px 12px 0;
  font-style: italic;
  color: var(--text-medium);
}

.post-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 24px 0;
}

.post-footer {
  padding: 60px 0;
  background: var(--off-white);
}

.post-cta {
  text-align: center;
  padding: 48px;
  background: linear-gradient(135deg, var(--ocean-deep) 0%, var(--ocean-light) 100%);
  border-radius: 20px;
  margin-bottom: 48px;
}

.post-cta h3 {
  color: var(--white);
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.post-cta p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
}

.post-navigation {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.post-nav-link {
  flex: 1;
  padding: 20px;
  background: var(--white);
  border-radius: 12px;
  transition: var(--transition-smooth);
}

.post-nav-link:hover {
  background: var(--sand-cream);
}

.post-nav-link span {
  display: block;
  font-size: 0.85rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.post-nav-link strong {
  color: var(--ocean-deep);
  font-size: 1rem;
}

.post-nav-next {
  text-align: right;
}

/* Blog Responsive */
@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .blog-hero {
    padding: 120px 0 40px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .post-navigation {
    flex-direction: column;
  }

  .post-nav-next {
    text-align: left;
  }

  .post-cta {
    padding: 32px 24px;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .hero-scroll,
  .cta-buttons,
  .footer {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 40px 0;
  }
}
