/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

/* ============================================
   Gujarat Coastal Guide — Neocities Site
   Design: Clean travel-blog aesthetic
   Colors: Ocean blues, sandy neutrals, dark slate
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Outfit:wght@600;700&display=swap');
/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: #f7f9fb;
  color: #2d3748;
  line-height: 1.75;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: 'Outfit', 'Inter', sans-serif;
  color: #1b2838;
  line-height: 1.3;
}
h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid #e2e8f0;
}
h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
p {
  margin-bottom: 1rem;
}
a {
  color: #0077b6;
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  color: #005f8a;
  text-decoration: underline;
}
ul, ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}
li {
  margin-bottom: 0.4rem;
}
img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
/* --- Layout --- */
.site-wrapper {
  max-width: 740px;
  margin: 0 auto;
  padding: 0 1.25rem;
  flex: 1;
  width: 100%;
}
/* --- Navigation --- */
.site-nav {
  background: linear-gradient(135deg, #0077b6 0%, #005f8a 100%);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}
.nav-inner {
  max-width: 740px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.nav-brand {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  padding: 0.9rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nav-brand:hover {
  color: #ffffff;
  text-decoration: none;
  opacity: 0.9;
}
.nav-brand .nav-icon {
  font-size: 1.3rem;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 0.25rem;
  margin: 0;
  padding: 0;
}
.nav-links li a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.6rem 0.75rem;
  border-radius: 6px;
  transition: all 0.2s ease;
  display: block;
}
.nav-links li a:hover,
.nav-links li a.active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.15);
  text-decoration: none;
}
/* --- Hero Section --- */
.hero {
  background: linear-gradient(135deg, #0077b6 0%, #00b4d8 50%, #48cae4 100%);
  color: #ffffff;
  padding: 3rem 1.25rem;
  text-align: center;
  margin-bottom: 2rem;
}
.hero h1 {
  color: #ffffff;
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}
.hero .subtitle {
  font-size: 1.1rem;
  opacity: 0.92;
  max-width: 550px;
  margin: 0 auto;
  line-height: 1.6;
}
/* --- Breadcrumb --- */
.breadcrumb {
  font-size: 0.85rem;
  color: #718096;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  padding: 0;
}
.breadcrumb a {
  color: #0077b6;
}
.breadcrumb span {
  margin: 0 0.4rem;
  color: #a0aec0;
}
/* --- Article / Content --- */
.article-header {
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}
.article-meta {
  font-size: 0.85rem;
  color: #718096;
  margin-top: 0.5rem;
}
.article-meta .tag {
  display: inline-block;
  background: #e6f3fa;
  color: #0077b6;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 500;
  margin-right: 0.5rem;
}
article {
  margin-bottom: 3rem;
}
/* --- Cards --- */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin: 1.5rem 0 2rem;
}
.card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 119, 182, 0.1);
  text-decoration: none;
  color: inherit;
}
.card .card-icon {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
  display: block;
}
.card h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  color: #1b2838;
}
.card p {
  font-size: 0.92rem;
  color: #4a5568;
  margin-bottom: 0;
  line-height: 1.6;
}
/* --- Info Box / Callout --- */
.info-box {
  background: linear-gradient(135deg, #e6f3fa 0%, #f0f7fb 100%);
  border-left: 4px solid #0077b6;
  padding: 1.25rem 1.5rem;
  border-radius: 0 8px 8px 0;
  margin: 1.5rem 0;
  font-size: 0.95rem;
}
.info-box.warning {
  background: linear-gradient(135deg, #fef5e7 0%, #fdf8f0 100%);
  border-left-color: #e67e22;
}
.info-box.tip {
  background: linear-gradient(135deg, #e8faf0 0%, #f0fdf5 100%);
  border-left-color: #27ae60;
}
.info-box strong {
  display: block;
  margin-bottom: 0.3rem;
  color: #1b2838;
}
/* --- Tables --- */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.25rem 0;
  font-size: 0.92rem;
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}
thead {
  background: #0077b6;
  color: #ffffff;
}
th {
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
td {
  padding: 0.7rem 1rem;
  border-bottom: 1px solid #edf2f7;
}
tbody tr:last-child td {
  border-bottom: none;
}
tbody tr:hover {
  background: #f7fafc;
}
/* --- Quick Facts Panel --- */
.facts-panel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}
.fact-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 1.25rem;
  text-align: center;
}
.fact-item .fact-number {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #0077b6;
  display: block;
  margin-bottom: 0.25rem;
}
.fact-item .fact-label {
  font-size: 0.82rem;
  color: #718096;
  line-height: 1.4;
}
/* --- Comparison Box --- */
.comparison-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.5rem 0;
}
.comparison-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 1.25rem;
  text-align: center;
}
.comparison-item.highlight {
  border-color: #0077b6;
  background: #f0f7fb;
}
.comparison-item .label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #718096;
  margin-bottom: 0.5rem;
}
.comparison-item .value {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1b2838;
}
.comparison-item.highlight .value {
  color: #0077b6;
}
/* --- Destination List --- */
.destination-list {
  list-style: none;
  padding: 0;
}
.destination-list li {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1rem;
  transition: border-color 0.2s ease;
}
.destination-list li:hover {
  border-color: #0077b6;
}
.destination-list li h3 {
  margin-top: 0;
  margin-bottom: 0.4rem;
  font-size: 1.05rem;
}
.destination-list li p {
  margin-bottom: 0;
  font-size: 0.92rem;
  color: #4a5568;
}
/* --- Footer --- */
.site-footer {
  background: #1b2838;
  color: rgba(255, 255, 255, 0.7);
  padding: 2rem 1.25rem;
  text-align: center;
  font-size: 0.85rem;
  margin-top: auto;
}
.site-footer a {
  color: rgba(255, 255, 255, 0.85);
}
.site-footer a:hover {
  color: #ffffff;
}
.footer-links {
  margin-top: 0.75rem;
}
.footer-links a {
  margin: 0 0.75rem;
}
/* --- Back to Top --- */
.back-to-top {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.5rem 1.25rem;
  background: #0077b6;
  color: #ffffff;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: background 0.2s ease;
}
.back-to-top:hover {
  background: #005f8a;
  color: #ffffff;
  text-decoration: none;
}
/* --- Responsive --- */
@media (min-width: 600px) {
  .card-grid {
    grid-template-columns: 1fr 1fr;
  }
  h1 {
    font-size: 2.2rem;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
}
@media (max-width: 599px) {
  .nav-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-links {
    flex-wrap: wrap;
    padding-bottom: 0.5rem;
  }
  .comparison-box {
    grid-template-columns: 1fr;
  }
  .hero {
    padding: 2rem 1rem;
  }
  .hero h1 {
    font-size: 1.7rem;
  }
  h1 {
    font-size: 1.6rem;
  }
  h2 {
    font-size: 1.3rem;
  }
}
