/* SocialTravelNews.com - travel/video brand theme
   Fonts: Space Grotesk (headlines) + Inter (body) via Google Fonts
   Palette: deep teal + sunset coral accent on a light background */

:root {
  --stn-bg: #f5f9fa;
  --stn-surface: #ffffff;
  --stn-text: #172b32;
  --stn-text-muted: #4d6169;
  --stn-teal: #0d3b4f;
  --stn-teal-dark: #082630;
  --stn-coral: #ff6b45;
  --stn-coral-dark: #e2532e;
  --stn-border: #dbe6e9;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--stn-bg);
  color: var(--stn-text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
}

h1, h2, h3, .site-title {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--stn-teal-dark);
}

a {
  color: var(--stn-coral-dark);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Header / nav */

.site-header {
  background: var(--stn-teal);
  color: #ffffff;
  padding: 2.5rem 1.5rem 2rem;
  text-align: center;
}

.site-header .site-title {
  color: #ffffff;
  font-size: 2rem;
  margin: 0;
  letter-spacing: -0.02em;
}

.site-header .site-title span {
  color: var(--stn-coral);
}

.site-header .site-tagline {
  color: #cfe3e9;
  font-size: 0.95rem;
  margin-top: 0.5rem;
}

nav {
  background: var(--stn-teal-dark);
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 0.75rem 1rem;
}

nav a {
  color: #eaf3f5;
  font-weight: 600;
  font-size: 0.95rem;
}

nav a:hover {
  color: var(--stn-coral);
  text-decoration: none;
}

/* Main content */

main {
  max-width: 780px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4rem;
}

.hero {
  text-align: center;
  margin-bottom: 2.5rem;
}

.hero h1 {
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
}

.hero p {
  color: var(--stn-text-muted);
  font-size: 1.1rem;
  max-width: 620px;
  margin: 0 auto;
}

.coming-soon-badge {
  display: inline-block;
  background: var(--stn-coral);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}

.cta-row {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 2rem 0;
}

.btn {
  display: inline-block;
  padding: 0.85rem 1.6rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
}

.btn:hover {
  text-decoration: none;
}

.btn-primary {
  background: var(--stn-coral);
  color: #ffffff;
}

.btn-primary:hover {
  background: var(--stn-coral-dark);
}

.btn-secondary {
  background: var(--stn-surface);
  color: var(--stn-teal);
  border: 2px solid var(--stn-teal);
}

.btn-secondary:hover {
  background: var(--stn-teal);
  color: #ffffff;
}

.card {
  background: var(--stn-surface);
  border: 1px solid var(--stn-border);
  border-radius: 12px;
  padding: 1.75rem;
  margin-bottom: 1.5rem;
}

.card h2 {
  font-size: 1.3rem;
  margin-top: 0;
}

.about-page h1 {
  font-size: 2rem;
}

.about-page h2 {
  font-size: 1.2rem;
  margin-top: 1.75rem;
}

.contact-box {
  background: var(--stn-surface);
  border: 1px solid var(--stn-border);
  border-radius: 12px;
  padding: 1.5rem;
  margin-top: 2rem;
}

/* Blog + destination page support */

.blog-empty {
  text-align: center;
}

.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  margin: 1.5rem 0;
}

.video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Footer */

.site-footer {
  background: var(--stn-teal-dark);
  color: #b9ccd2;
  text-align: center;
  padding: 1.75rem 1.5rem;
  font-size: 0.9rem;
}

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

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

  .cta-row {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }
}
