/**
 * InstaParadise Beach Template Styles
 * Shared CSS for all beach pages
 * Version: 1.1.0 - Fixed Navigation
 */

/* CSS Variables */
:root {

      --primary: #718DA4;
      --primary-deep: #5a7a92;
      --mako: #42474E;
      --edward: #A4AAAB;
      --spring-wood: #F1EEE4;
      --spring-wood-warm: #E8E3D8;
      --coral: #718DA4;
      --ocean: #718DA4;
      --ocean-deep: #5a7a92;
      --ocean-dark: #42474E;
      --bg: #F1EEE4;
      --bg-warm: #E8E3D8;
      --white: #ffffff;
      --text: #2a2e35;
      --text-soft: #5a6068;
      --text-light: #8a9099;
      --border: #ddd8ce;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
}

a {
  text-decoration: none;
  color: inherit;
}

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

/* Navigation — base reset (ip-nav handles actual styling) */
nav {
  position: relative;
  z-index: 100;
  background: transparent;
  padding: 0;
  min-height: unset;
  box-shadow: none;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  flex-shrink: 0;
}

.nav-logo img {
  height: auto;
  width: auto;
  max-height: 72px;
  object-fit: contain;
  display: block;
}

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

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-soft);
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

.nav-cta {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 10px 24px;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s;
  flex-shrink: 0;
}

.nav-cta:hover {
  transform: translateY(-2px);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
}

.mobile-menu span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

/* Beach Navigation (Prev/Next) */
.beach-nav {
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 16px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--bg);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  transition: all 0.2s;
}

.nav-link:hover {
  background: var(--primary);
  color: #fff;
}

.back-to-list {
  padding: 12px 24px;
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius-sm);
  font-weight: 500;
  transition: background 0.2s;
}

.back-to-list:hover {
  background: var(--primary-deep);
}

/* Hero Section */
.beach-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px 80px;
  overflow: hidden;
}

.beach-hero-bg {
  position: absolute;
  inset: 0;
  background: center/cover no-repeat;
}

.beach-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(20,24,30,0.30) 0%, rgba(20,24,30,0.52) 60%, rgba(20,24,30,0.75) 100%);
}

.beach-hero-content {
  padding-top: 90px;
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.beach-rank-badge-hero {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 100px;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(113,141,164,0.4);
}

.beach-hero h1 {
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -2px;
  color: var(--white);
  text-shadow: 0 4px 30px rgba(0,0,0,0.2);
  margin-bottom: 10px;
}

.beach-hero-location {
  font-size: 1rem;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
  margin-bottom: 6px;
}

.beach-hero-country {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
}

.beach-hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn-coral {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 13px 30px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-coral:hover {
  transform: translateY(-3px);
}

.btn-outline-white {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.45);
  padding: 13px 30px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.25);
}

/* Quick Stats */
.quick-stats {
  background: var(--white);
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  box-shadow: var(--shadow-md);
}

.qs-item {
  padding: 24px 16px;
  text-align: center;
  border-right: 1px solid rgba(0,0,0,0.06);
}

.qs-item:last-child {
  border-right: none;
}

.qs-icon {
  font-size: 1.4rem;
  margin-bottom: 6px;
}

.qs-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-light);
  margin-bottom: 4px;
}

.qs-value {
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}

/* Content Wrapper */
.content-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
}

/* Editorial Section */
.editorial-section {
  padding: 80px 48px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 72px;
  align-items: start;
}

.editorial-body h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -1px;
  color: var(--text);
  margin-bottom: 20px;
}

.editorial-body h3 {
  font-size: 1.2rem;
  margin: 32px 0 16px;
  color: var(--text);
}

.editorial-body p {
  color: var(--text-soft);
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 16px;
}

.editorial-body p.lead {
  font-size: 1.15rem;
  color: var(--text);
}

/* Sidebar */
.sidebar-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 100px;
}

.sidebar-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.sidebar-card-body {
  padding: 20px 22px;
}

.sidebar-card-body h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.sidebar-meta {
  font-size: 0.8rem;
  color: var(--text-soft);
  margin-bottom: 14px;
}

.sidebar-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.ss-item {
  background: var(--bg);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
}

.ss-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
  margin-bottom: 3px;
}

.ss-value {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}

.sidebar-hashtags {
  padding: 14px 22px 20px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.sh-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
  margin-bottom: 8px;
}

.sh-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.sh-tag {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(113,141,164,0.1);
  color: var(--primary);
}

/* Section Headers */
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: 10px;
}

.section-header {
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -1px;
  color: var(--text);
}

/* Photo Gallery */
.photo-gallery {
  padding: 80px 48px;
  background: var(--white);
}

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

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

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

.gallery-item-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
}

.gallery-item-caption {
  color: white;
  font-size: 0.85rem;
  font-weight: 500;
}

/* Photo Guide */
.photo-guide {
  background: var(--bg-warm);
  padding: 80px 48px;
}

.photo-tips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.photo-tip-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s;
}

.photo-tip-card:hover {
  transform: translateY(-4px);
}

.ptc-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
  box-shadow: 0 6px 20px rgba(113,141,164,0.25);
}

.ptc-icon.coral {
  background: linear-gradient(135deg, var(--primary), #e05555);
  box-shadow: 0 6px 20px rgba(113,141,164,0.25);
}

.ptc-icon.sand {
  background: linear-gradient(135deg, var(--sand), #c4933e);
  box-shadow: 0 6px 20px rgba(212,168,83,0.25);
}

.ptc-title {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--text);
}

.ptc-body {
  font-size: 0.86rem;
  color: var(--text-soft);
  line-height: 1.65;
}

/* Practical Info */
.practical-info {
  padding: 80px 48px;
}

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

.info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.info-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.info-card-icon {
  width: 44px;
  height: 44px;
  background: var(--bg);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.info-card h3 {
  font-size: 1.05rem;
}

.info-card p {
  font-size: 0.88rem;
  color: var(--text-soft);
  line-height: 1.7;
}

/* Local Tips */
.local-tips {
  padding: 80px 48px;
  background: var(--bg-warm);
}

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

.tip-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.tip-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.tip-icon.parking {
  background: linear-gradient(135deg, var(--primary), #e05555);
}

.tip-icon.facilities {
  background: linear-gradient(135deg, var(--sand), #c4933e);
}

.tip-card h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--text);
}

.tip-card p {
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.7;
}

.tip-card ul {
  list-style: none;
  margin-top: 12px;
}

.tip-card li {
  font-size: 0.85rem;
  color: var(--text-soft);
  margin-bottom: 6px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.tip-card li::before {
  content: '•';
  color: var(--primary);
  font-weight: 700;
}

/* Related Beaches */
.related-beaches {
  background: var(--bg-warm);
  padding: 80px 48px;
}

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

.related-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
}

.related-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(113,141,164,0.12);
}

.related-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.related-card-body {
  padding: 14px 16px 16px;
}

.related-rank {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
  margin-bottom: 4px;
}

.related-card-body h4 {
  font-size: 0.92rem;
  margin-bottom: 4px;
  color: var(--text);
}

.related-card-body p {
  font-size: 0.78rem;
  color: var(--text-soft);
}

/* Share Section */
.share-section {
  padding: 60px 48px;
  text-align: center;
}

.share-section h2 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.share-section p {
  color: var(--text-soft);
  margin-bottom: 24px;
  font-size: 0.92rem;
}

.share-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 100px;
  font-size: 0.86rem;
  font-weight: 600;
  transition: transform 0.2s;
  cursor: pointer;
  border: none;
}

.share-btn:hover {
  transform: translateY(-2px);
}

.share-pinterest {
  background: #E60023;
  color: white;
}

.share-whatsapp {
  background: #25D366;
  color: white;
}

.share-twitter {
  background: #1DA1F2;
  color: white;
}

.share-copy {
  background: var(--primary);
  color: white;
}

.copy-confirmation {
  display: none;
  font-size: 0.82rem;
  color: #059669;
  font-weight: 600;
  margin-top: 10px;
}

/* Email Section */
.email-section {
  padding: 60px 48px;
  background: var(--bg-warm);
}

.email-card {
  background: linear-gradient(135deg, var(--primary-deep), var(--primary));
  border-radius: var(--radius-lg);
  padding: 48px;
}

.email-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.email-content h2 {
  color: white;
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.email-content p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
  font-size: 1rem;
}

.email-form {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.email-form input {
  padding: 14px 20px;
  border-radius: 100px;
  border: none;
  font-size: 0.92rem;
  min-width: 280px;
  font-family: 'DM Sans', sans-serif;
}

.email-form input:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255,255,255,0.3);
}

/* Footer */
footer {
  background: var(--text);
  color: white;
  padding: 56px 48px;
}

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

.footer-brand h4 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.footer-logo {
  height: 36px;
  width: auto;
  margin-bottom: 10px;
  opacity: 0.90;
  display: block;
}
.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 14px;
}

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

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

.footer-col a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  max-width: 1000px;
  margin: 28px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

.footer-bottom a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin-left: 16px;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .editorial-section {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .sidebar-card {
    position: static;
  }
  
  .gallery-grid,
  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  nav {
    padding: 0 24px;
  }
  
  .nav-links {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  nav {
    height: 60px;
    padding: 0 16px;
  }
  
  .nav-logo span {
    display: none;
  }
  
  .nav-links {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: white;
    padding: 20px;
    gap: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    flex-direction: column;
  }
  
  .nav-links.mobile-open {
    display: flex;
  }
  
  .mobile-menu {
    display: flex;
  }
  
  .beach-nav {
    padding: 12px 20px;
  }
  
  .beach-hero {
    min-height: 70vh;
    padding-bottom: 40px;
  }
  
  .quick-stats {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .qs-item:nth-child(3n) {
    border-right: none;
  }
  
  .content-wrapper {
    padding: 0 20px;
  }
  
  .editorial-section {
    padding: 40px 20px;
  }
  
  .photo-gallery,
  .photo-guide,
  .practical-info,
  .local-tips,
  .related-beaches {
    padding: 40px 20px;
  }
  
  .gallery-grid,
  .photo-tips-grid,
  .info-grid,
  .tips-grid,
  .related-grid,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  footer {
    padding: 40px 20px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .email-card {
    padding: 32px 20px;
  }
  
  .email-form input {
    min-width: unset;
    width: 100%;
  }
}
/* Footer column styling */
.footer-grid > div h4 {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.9);
}

.footer-grid > div ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-grid > div li {
  margin-bottom: 8px;
}

.footer-grid > div a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-grid > div a:hover {
  color: white;
}

/* Newsletter Section */
.newsletter-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
  color: white;
  padding: 80px 48px;
  text-align: center;
}

.newsletter-section h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  color: white;
}

.newsletter-section p {
  font-size: 1.1rem;
  margin-bottom: 32px;
  opacity: 0.9;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.email-form {
  display: flex;
  gap: 12px;
  justify-content: center;
  max-width: 500px;
  margin: 0 auto;
}

.email-form input {
  flex: 1;
  padding: 16px 20px;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-family: 'DM Sans', sans-serif;
}

.email-form input:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255,255,255,0.3);
}

.email-form button {
  padding: 16px 32px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}

.email-form button:hover {
  background: #ff5252;
}

@media (max-width: 640px) {
  .email-form {
    flex-direction: column;
  }
  
  .email-form button {
    width: 100%;
  }
}


/* ═══════════════════════════════════════════════════
   SHARED IP-NAV STYLES (same as homepage)
   ═══════════════════════════════════════════════════ */
nav#ip-nav {
  position: absolute; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; padding: 14px 40px;
}
.ip-nav-left  { flex: 1; display: flex; justify-content: flex-start; align-items: center; gap: 32px; }
.ip-nav-center{ flex: 1; display: flex; justify-content: center; }
.ip-nav-right { flex: 1; display: flex; justify-content: flex-end; align-items: center; }
.ip-logo-img  { height: 34px; width: auto; }
.ip-nav-links { display: flex; gap: 28px; list-style: none; margin: 0; padding: 0; }
.ip-nav-links a { font-family: 'DM Sans',sans-serif; font-size: 0.88rem; font-weight: 500;
  color: rgba(255,255,255,0.9); transition: color 0.2s; text-decoration: none; }
.ip-nav-links a:hover, .ip-nav-links a.active { color: #fff; }
.ip-dropdown { position: relative; }
.ip-dropdown-menu { position: absolute; top: calc(100% + 8px); left: 0; background: #fff;
  border-radius: 12px; box-shadow: 0 10px 40px rgba(0,0,0,0.18); padding: 8px 0;
  min-width: 180px; list-style: none; opacity: 0; visibility: hidden;
  transform: translateY(-6px); transition: all 0.2s ease; pointer-events: none; z-index: 10; }
.ip-dropdown:hover .ip-dropdown-menu,
.ip-dropdown:focus-within .ip-dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto; }
.ip-dropdown-menu a { display: block; padding: 10px 16px; font-size: 0.85rem;
  color: #2a2e35; white-space: nowrap; transition: all 0.15s; }
.ip-dropdown-menu a:hover { background: #F1EEE4; color: #718DA4; padding-left: 20px; }
.ip-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer;
  padding: 8px; border: none; background: none; }
.ip-hamburger span { display: block; width: 24px; height: 2px; background: #fff;
  border-radius: 2px; transition: transform 0.3s ease, opacity 0.3s ease; }
.ip-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ip-hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.ip-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.ip-overlay { display: none; position: fixed; inset: 0; z-index: 998;
  background: rgba(0,0,0,0.3); opacity: 0; transition: opacity 0.3s; }
.ip-overlay.open { opacity: 1; }
.ip-drawer { position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  background: #fff; transform: translateY(-100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 8px 32px rgba(0,0,0,0.18); border-bottom: 3px solid #718DA4; }
.ip-drawer.open { transform: translateY(0); }
.ip-drawer-hdr { display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; border-bottom: 1px solid rgba(0,0,0,0.07); }
.ip-drawer-hdr img { height: 30px; width: auto; }
.ip-drawer-x { width: 40px; height: 40px; border-radius: 50%; border: none;
  background: #F1EEE4; cursor: pointer; font-size: 1.2rem; color: #2a2e35; transition: background 0.2s; }
.ip-drawer-x:hover { background: #718DA4; color: #fff; }
.ip-drawer-list { list-style: none; padding: 12px 0; margin: 0; }
.ip-drawer-list li a { display: flex; align-items: center; padding: 14px 24px;
  font-family: 'DM Sans',sans-serif; font-size: 1rem; font-weight: 500;
  color: #2a2e35; min-height: 48px; transition: color 0.15s, background 0.15s; }
.ip-drawer-list li a:hover { color: #718DA4; background: rgba(113,141,164,0.08); }
.ip-drawer-cta { padding: 16px 20px 24px; border-top: 1px solid rgba(0,0,0,0.07); }
.ip-drawer-cta button { display: block; width: 100%; padding: 16px; text-align: center;
  background: #718DA4; color: #fff; border: none; border-radius: 100px;
  font-size: 1rem; font-weight: 700; cursor: pointer; font-family: 'DM Sans',sans-serif; }

/* Logo overlay top-left over hero */
.ip-hero-logo { position: absolute; top: 16px; left: 40px; z-index: 1001; }
.ip-hero-logo img { height: 46px; width: auto; opacity: 0.90; }

/* ═══════════════════════════════════════════════════
   TEMPLATE ADDITIONS — new sections
   ═══════════════════════════════════════════════════ */

/* Primary CTA button (beach pages) */
.btn-primary-beach {
  background: var(--primary, #718DA4);
  color: #fff;
  border: none;
  padding: 13px 30px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(113,141,164,0.35);
}
.btn-primary-beach:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(113,141,164,0.45); }

/* Practical info grid (new layout) */
.practical-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.practical-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.05);
}
.practical-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}
.practical-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #2a2e35;
  margin-bottom: 8px;
}
.practical-card p {
  font-size: 0.88rem;
  color: #5a6068;
  line-height: 1.7;
}

/* Photo tip cards */
.photo-tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 0;
}
.photo-tip-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform 0.2s, box-shadow 0.2s;
}
.photo-tip-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.tip-icon { font-size: 2rem; margin-bottom: 12px; }
.photo-tip-card h3 { font-size: 1rem; font-weight: 700; color: #2a2e35; margin-bottom: 8px; }
.photo-tip-card p { font-size: 0.87rem; color: #5a6068; line-height: 1.65; margin-bottom: 12px; }
.tip-best-for {
  font-size: 0.75rem; font-weight: 600; color: #718DA4;
  text-transform: uppercase; letter-spacing: 0.8px;
  padding: 4px 10px; background: rgba(113,141,164,0.08);
  border-radius: 100px; display: inline-block;
}

/* Prev/next navigation */
.beach-nav-prevnext {
  background: #F1EEE4;
  border-bottom: 1px solid #ddd8ce;
}
.beach-nav-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.prevnext-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #2a2e35;
  padding: 10px 0;
  transition: color 0.2s;
}
.prevnext-link:hover { color: #718DA4; }
.prevnext-arrow { font-size: 1.3rem; color: #718DA4; }
.prevnext-label { display: block; font-size: 0.72rem; color: #8a9099; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.prevnext-name { display: block; font-size: 0.95rem; font-weight: 600; }

/* Sidebar stats grid */
.sidebar-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 16px 0;
}
.ss-item { background: #F1EEE4; border-radius: 10px; padding: 12px; text-align: center; }
.ss-label { font-size: 0.7rem; color: #8a9099; text-transform: uppercase; letter-spacing: 0.8px; font-weight: 600; margin-bottom: 4px; }
.ss-value { font-size: 1rem; font-weight: 700; color: #2a2e35; }

/* Hashtag list */
.sidebar-hashtags { padding: 16px 20px; border-top: 1px solid rgba(0,0,0,0.06); }
.sh-label { font-size: 0.72rem; color: #8a9099; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; margin-bottom: 8px; }
.sh-list { display: flex; flex-wrap: wrap; gap: 6px; }
.sh-tag { font-size: 0.78rem; color: #718DA4; background: rgba(113,141,164,0.1);
  padding: 4px 10px; border-radius: 100px; font-weight: 500; }

/* Footer brand */
/* .footer-logo defined above */
footer { border-top: 3px solid #718DA4; }

/* Mobile additions */
@media (max-width: 768px) {
  nav#ip-nav .ip-nav-left { display: none !important; }
  nav#ip-nav .ip-nav-center { display: none !important; }
  nav#ip-nav { justify-content: center; }
  nav#ip-nav .ip-nav-right { flex: unset; justify-content: center; }
  .ip-hamburger { display: flex; }
  .ip-hero-logo { left: 20px; top: 12px; }
  .ip-hero-logo img { height: 34px; }
  .practical-grid { grid-template-columns: 1fr; }
  .beach-nav-container { padding: 12px 20px; }
  .prevnext-name { font-size: 0.85rem; }
}

/* ═══ BOTTOM MOBILE NAV ═══ */
.ip-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
  background: #fff;
  border-top: 1px solid rgba(0,0,0,0.08);
  padding: 6px 0 10px;
  justify-content: space-around;
  align-items: center;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.06);
}
.ip-bottom-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-decoration: none;
  color: #8a9099;
  font-size: 0.65rem;
  font-weight: 500;
  padding: 4px 8px;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: color 0.2s;
}
.ip-bottom-link:hover, .ip-bottom-link.active {
  color: #718DA4;
}
.ip-bottom-icon {
  font-size: 1.3rem;
  line-height: 1;
}
.ip-bottom-label {
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0.2px;
}

@media (max-width: 768px) {
  .ip-bottom-nav { display: flex; }
  /* Add bottom padding so content isn't hidden behind bottom nav */
  body { padding-bottom: 64px; }
  footer { padding-bottom: 20px; }
}
