/* RST Blog — Rent A Scooter Tulum */
/* Luxury Edition: Black, Gold, Cream, Elegant */

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

:root {
  --black: #0a0a0a;
  --dark: #141414;
  --gold: #c9a96e;
  --gold-light: #dfc08a;
  --gold-glow: rgba(201,169,110,0.15);
  --cream: #faf8f4;
  --warm-white: #f5f2ed;
  --text: #2a2a2a;
  --text-light: #6b6b6b;
  --text-muted: #999;
  --border: rgba(201,169,110,0.2);
  --whatsapp: #25D366;
}

body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  line-height: 1.85;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

/* ===== NAV BAR ===== */
.nav {
  background: var(--black);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 75px;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(201,169,110,0.15);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo-text {
  color: #fff;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.nav-logo-text span { color: var(--gold); }
.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
  list-style: none;
}
.nav-links a {
  color: #bbb;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: transparent !important;
  border: 1.5px solid var(--gold) !important;
  color: var(--gold) !important;
  padding: 9px 24px;
  border-radius: 0;
  font-weight: 600 !important;
  font-size: 0.75rem !important;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s;
}
.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--black) !important;
}

/* Mobile nav */
.nav-toggle { display: none; background: none; border: none; color: var(--gold); font-size: 1.5rem; cursor: pointer; }
@media (max-width: 768px) {
  .nav { padding: 0 20px; }
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 75px;
    left: 0;
    right: 0;
    background: var(--black);
    flex-direction: column;
    padding: 30px;
    gap: 20px;
    border-bottom: 1px solid rgba(201,169,110,0.15);
  }
  .nav-links.active { display: flex; }
}

/* ===== HERO (Index page) ===== */
.hero {
  background: linear-gradient(165deg, #0a0a0a 0%, #1a1610 50%, #0f0d0a 100%);
  color: #fff;
  text-align: center;
  padding: 100px 30px 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 50% 80%, rgba(201,169,110,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3.4rem;
  margin-bottom: 20px;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.5px;
  position: relative;
}
.hero h1 span { color: var(--gold); font-style: italic; }
.hero p {
  color: #999;
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 35px;
  font-weight: 300;
  letter-spacing: 0.3px;
  line-height: 1.8;
  position: relative;
}
.hero-cta {
  display: inline-block;
  background: transparent;
  color: var(--gold);
  padding: 16px 45px;
  border: 1.5px solid var(--gold);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: all 0.4s;
  position: relative;
}
.hero-cta:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201,169,110,0.2);
}
@media (max-width: 768px) {
  .hero h1 { font-size: 2.2rem; }
  .hero { padding: 60px 20px 50px; }
  .hero-cta { padding: 14px 30px; font-size: 0.75rem; }
}

/* ===== BLOG INDEX ===== */
.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--black);
  margin: 55px 0 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
  letter-spacing: 0.5px;
}
.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 35px;
}
.post-card {
  background: #fff;
  border-radius: 2px;
  padding: 30px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  transition: all 0.35s ease;
  border: 1px solid rgba(0,0,0,0.06);
  position: relative;
}
.post-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 30px;
  right: 30px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.35s;
}
.post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
  border-color: var(--border);
}
.post-card:hover::after { opacity: 1; }
.post-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  margin-bottom: 10px;
  line-height: 1.45;
  font-weight: 600;
}
.post-card h3 a {
  color: var(--black);
  text-decoration: none;
  transition: color 0.3s;
}
.post-card h3 a:hover { color: var(--gold); }
.post-card p {
  color: var(--text-light);
  font-size: 0.88rem;
  margin-bottom: 14px;
  line-height: 1.6;
  font-weight: 300;
}
.tag {
  display: inline-block;
  background: transparent;
  color: var(--gold);
  font-size: 0.65rem;
  padding: 4px 12px;
  border: 1px solid var(--border);
  border-radius: 0;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ===== BLOG POST ===== */
.post-header {
  background: linear-gradient(165deg, #0a0a0a 0%, #1a1610 50%, #0f0d0a 100%);
  color: #fff;
  padding: 65px 30px 50px;
  text-align: center;
  position: relative;
}
.post-header::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(201,169,110,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.post-header h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.6rem;
  max-width: 800px;
  margin: 0 auto 18px;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.3px;
  position: relative;
}
.post-meta {
  color: var(--text-muted);
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
}
.post-meta a { color: var(--gold); text-decoration: none; }
.post-meta a:hover { text-decoration: underline; }
@media (max-width: 768px) {
  .post-header h1 { font-size: 1.8rem; }
  .post-header { padding: 40px 20px 30px; }
}

.post-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 50px 25px 70px;
  background: #fff;
}
.post-body h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.6rem;
  margin: 50px 0 18px;
  color: var(--black);
  padding-top: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.post-body h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;
  margin: 30px 0 12px;
  color: var(--text);
  font-weight: 600;
}
.post-body p {
  margin-bottom: 20px;
  font-size: 1rem;
  color: var(--text);
  font-weight: 300;
  line-height: 1.9;
}
.post-body a { color: var(--gold); font-weight: 500; text-decoration: none; border-bottom: 1px solid var(--border); transition: all 0.2s; }
.post-body a:hover { border-bottom-color: var(--gold); }
.post-body ul, .post-body ol {
  margin: 18px 0 22px 25px;
}
.post-body li {
  margin-bottom: 12px;
  font-size: 1rem;
  color: var(--text);
  font-weight: 300;
  line-height: 1.8;
}

/* Breadcrumb */
.breadcrumb {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
}
.breadcrumb a { color: var(--gold); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

/* Highlight box */
.highlight {
  background: var(--warm-white);
  border-left: 3px solid var(--gold);
  padding: 25px 30px;
  margin: 30px 0;
  border-radius: 0;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text);
  line-height: 1.8;
}

/* CTA Box */
.cta-box {
  background: var(--black);
  color: #fff;
  border-radius: 0;
  padding: 50px 40px;
  margin: 55px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201,169,110,0.12);
}
.cta-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(201,169,110,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.cta-box h3 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--gold);
  font-size: 1.6rem;
  margin-bottom: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
  position: relative;
}
.cta-box p {
  color: #888;
  font-size: 0.9rem;
  margin-bottom: 25px;
  font-weight: 300;
  letter-spacing: 0.3px;
  position: relative;
}
.cta-button {
  display: inline-block;
  background: transparent;
  color: var(--gold);
  padding: 16px 45px;
  border: 1.5px solid var(--gold);
  border-radius: 0;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: all 0.4s;
  position: relative;
}
.cta-button:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201,169,110,0.2);
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1060px;
  margin: 0 auto;
  padding: 40px 30px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--black);
  color: #666;
  text-align: center;
  padding: 50px 30px;
  margin-top: 0;
  border-top: 1px solid rgba(201,169,110,0.12);
}
.footer a { color: var(--gold); text-decoration: none; transition: color 0.3s; }
.footer a:hover { color: var(--gold-light); }
.footer-links {
  display: flex;
  justify-content: center;
  gap: 35px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.footer-links a {
  color: #888;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom { font-size: 0.75rem; color: #444; margin-top: 18px; letter-spacing: 0.5px; }

/* ===== SUBTLE DIVIDER ===== */
.divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 30px;
  opacity: 0.5;
}

/* ===== SMOOTH SCROLL ===== */
html { scroll-behavior: smooth; }

/* ===== SELECTION ===== */
::selection {
  background: var(--gold);
  color: var(--black);
}
