/* ===== GLOBAL RESET ===== */
html {
    scroll-behavior: smooth;
}
img {
    max-width: 100%;
    height: auto;
}
body {
    margin: 0;
    padding: 0;
    font-family: 'Lora', serif;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #222;
}

.inner-page {
    padding-top: 120px;
}

/* ===== GLOBAL TYPOGRAPHY IMPROVEMENT ===== */

/* Main Headings */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

/* Hero Heading */
.hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
}

/* Section Headings */
section h2 {
    font-size: 2rem;
    margin-bottom: 25px;
}

/* Paragraph text on homepage */
.home section p{
    font-size: 1.15rem;
    max-width: 750px;
    margin: 0 auto 20px;
}

/* Divider inside button group */
.divider-btn {
    pointer-events: none;
    padding-left: 8px;
    padding-right: 8px;
    font-weight: 500;
}


/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
                url('images/devprayag-sangam-uttarakhand.webp');
    background-size: cover;
    background-position: center;
    padding-top: 80px; /* space for fixed navbar */
}

/* ===== GLASS NAVBAR ===== */
.custom-navbar {
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 18px 0;
    transition: all 0.3s ease-in-out;
}

/* Brand styling */
.navbar-brand {
    font-weight: 700;
    font-size: 1.4rem;
    color: #00c896 !important;
    letter-spacing: 1px;
}

/* Nav links */
.custom-navbar .nav-link {
    color: #ffffff !important;
    font-weight: 500;
    margin-left: 20px;
    transition: 0.3s;
}

.custom-navbar .nav-link:hover {
    color: #00c896 !important;
}

/* ===== ABOUT SECTION ===== */
.home {
    padding: 80px 0;
}

/* ===== DESTINATION SECTION ===== */
#destinations {
    background-color: #f8f9fa;
}

#destinations h3 a {
    text-decoration: none;
    color: #212529;
    font-weight: 600;
}

#destinations h3 a:hover {
    color: #00c896;
}

/* Compact Blog Card */
.blog-card {
    transition: 0.3s ease;
}

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

.blog-img {
    height: 200px;
    object-fit: cover;
}

/* ===== FOOTER ===== */
footer {
    font-size: 0.9rem;
}

/* ===== SUBMIT YOUR STORY PAGE ===== */


/* ===== ARTICLE PAGE STYLES ===== */

/* Premium author social icons */
.author-icons a {
    color: #000;
    font-size: 1.2rem;
    margin-right: 14px;
    transition: 0.3s ease;
}

.author-icons a:hover {
    opacity: 0.6;
}

.article-meta {
    font-size: 0.95rem;
}


.article-content h1 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.article-content h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-top: 45px;
    margin-bottom: 15px;
}

.article-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 25px;
}

.article-content {
    max-width: 850px;
    margin: 0 auto;
    font-family: 'Lora', serif;
    line-height: 1.8;
    font-size: 1.1rem;
    color: #2d2d2d;
}

.article-content h1,
.article-content h2 {
    font-family: 'Playfair Display', serif;
}

.explore-more {
    border-top: 1px solid #ddd;
    padding-top: 40px;
}

.paragraphs{
    padding: 0;
}

/* === Iframe ==== */
/* Fix iframe overflow */
iframe {
    width: 100%;
    border: none;
}

/*=== Toggle menu ===*/
/* Hide toggle button on desktop */
#menuToggle {
  display: none;
}

/* ===== MOBILE NAV FIX ===== */
@media (max-width: 991px) {

  /* Show toggle icon */
  #menuToggle {
    display: block;
    font-size: 24px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
  }

  /* Hide menu by default */
  #navbarNav {
    display: none;
    width: 100%;
    padding-top: 15px;
  }

  /* Show menu when active */
  #navbarNav.show {
    display: block;
  }

  /* Stack links vertically */
  .navbar-nav {
    flex-direction: column;
    align-items: flex-start;   /* LEFT ALIGN */
  }

  .navbar-nav .nav-item {
    margin: 8px 0;
  }

  .navbar-nav .nav-link {
    margin-left: 0;            /* Remove desktop spacing */
    padding-left: 0;
  }
}

#menuToggle i {
  transition: 0.3s ease;
  font-size: 26px;
}