.carousel-item {
  height: 75vh;
  /* Full screen height */
  min-height: 400px;
  background-size: cover;
  background-position: center;
}

.carousel-caption {
  bottom: 40%;
}

.carousel-caption h2 {
  font-size: 2.5rem;
  font-weight: 600;
}

.carousel-caption a {
  color: #fff;
  font-weight: bold;
  border-bottom: 2px solid #fff;
  text-decoration: none;
}

.carousel-caption a:hover {
  color: #eee;
}

.insta-minimal {
  color: #dc2743;
  font-weight: 600;
  text-decoration: none;
  position: relative;
}

.insta-minimal::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  background: #dc2743;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.insta-minimal:hover::after {
  transform: scaleX(1);
}

body {
  background-color: #f0eee6 !important;
}

:root {
  --bg: #f0eee6;
  --ink: #000;
  --muted: #5a5a5a;
  --accent: #b22f3e;
  --max-width: 1100px;
}




a {
  color: inherit !important;
  text-decoration: none !important;
}

/* Header layout */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  position: relative;
  background: transparent;
}

.left {
  font-size: 14px;
  font-weight:700;
  cursor: pointer;
}

/* Center nav (desktop) - absolute centered */
.center-nav {
  display: flex;
  gap: 26px;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  font-size: 13px;
}

.center-nav a {
  padding: 6px 8px;
}

.center-nav a:hover {
  color: var(--accent);
}

/* hamburger button */
.hamburger {
  width: 36px;
  height: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .28s ease, opacity .2s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* mobile dropdown panel */
.nav-panel {
  position: fixed;
  /* make fixed so it won't get under other elements */
  right: 16px;
  top: 70px;
  width: 220px;
  pointer-events: none;
  opacity: 0;
  transform-origin: top right;
  transform: translateY(-6px) scale(.98);
  transition: opacity .25s ease, transform .25s ease;
  z-index: 9999;
}

.nav-panel.open {
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0) scale(1);
}

.nav-list {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 6px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  padding: 6px;
}

.nav-list a {
  display: block;
  padding: 10px 12px;
  font-weight: 700;
  color: var(--ink);
}

.nav-list a+a {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

/* Masthead */
.masthead {
  padding: 6px 16px 20px;
  text-align: center;
  max-width: var(--max-width);
  margin: 0 auto;
}

.site-title {
  margin: 18px 0 8px;
  line-height: 0.92;
  font-weight: 400;
  /*font-family: "Playfair Display", serif;*/
  font-family: 'Didot', 'Bodoni MT', 'Times New Roman', serif;
  text-transform: uppercase;
  letter-spacing: -6px;
  font-size: clamp(36px, 9.5vw, 90px);
}

.tagline {
  font-family: "Instrument Serif";
  /* font-style: italic; */
  color: #000;
  margin-top: -1px;
  letter-spacing: -1px;
  font-size: clamp(14px, 2.2vw, 23px);
}


/* Responsive breakpoints fixes:
       - Hide center-nav earlier (900px)
       - Ensure hamburger visible on smaller screens
    */
@media (max-width:900px) {
  .center-nav {
    display: none;
  }

  /* hide center nav reliably */
  .site-header {
    padding: 14px 14px;
  }

  /* ensure nav-panel top isn't too low on short mobile screens */
  .nav-panel {
    top: 62px;
    right: 12px;
    width: 200px;
  }
}

@media (max-width:420px) {
  .site-title {
    font-size: clamp(30px, 12.5vw, 56px);
  }

  .tagline {
    font-size: 14px;
  }

  .nav-panel {
    width: 180px;
    right: 10px;
    top: 58px;
  }
}

/* Minor UX: prevent body scroll when nav open on small screens */
body.nav-open {
  overflow: hidden;
}

/* Image 2 ke cards ke liye font */
.card-title,
.card-text {
  font-family: 'Cormorant Garamond', serif;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 600;
}

/* Trending Blogs heading ke liye */
h2.text-center {
  /* Ya jo bhi heading ki class ho */
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 2.5rem;
}

/* Section B mein diya gaya CSS yahan paste karein */
.carousel-item img {
  height: 60vh;
  /* Viewport height ka 80% */
  object-fit: cover;
  /* Image ko stretch hone se rokta hai */
  filter: brightness(0.6);
  /* Image ko thoda dark karta hai jisse text achha dikhe */
}

/* Font aur Text Styling */
.carousel-caption {
  font-family: 'Cormorant Garamond', serif;
  /* Image jaisa font */
  top: 50%;
  transform: translateY(-50%);
  /* Center vertically */
  bottom: auto;
  /* Bottom property override karna */
  z-index: 10;
}

.hero-title {
    font-size: 37px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 1rem;
    letter-spacing: -2px;
    font-family: "Instrument Serif" !important;
}

.hero-button {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  transition: background-color 0.3s;
}

.hero-button:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.content-section {
            min-height: 85vh; /* Poori height cover kare */
            display: flex; /* Flexbox for alignment */
            align-items: center; /* Vertically center content */
            padding: 2rem 0; /* Upar neeche padding */
        }

        /* Left Side Styling */
        .left-side {
            text-align: left; /* Left align text */
            padding-right: 3rem; /* Right side se space */
        }
        .left-side h1 {
            font-size: 1.9rem; /* Bada font size */
            font-weight: 500; /* Thoda bold */
            line-height: 1.1; /* Line height */
            margin-bottom: 1rem;
            letter-spacing: -2px;
            color: #fff;
            font-family: "Instrument Serif";
        }
        .left-side ul {
            list-style: none; /* No default bullet points */
            padding: 0;
            margin-top: 2rem;
        }
        .left-side ul li {
            font-size: 1.8rem; /* List items ka bada font size */
            font-weight: 400; /* Regular weight */
            line-height: 1.2;
            margin-bottom: 0.5rem;
            color: #fff;
            font-family: "Instrument Serif";
        }
        
        /* Right Side Styling */
        .right-side {
            padding-left: 3rem; /* Left side se space */
        }
        .right-side p {
            font-size: 0.9rem; /* Paragraph ka font size */
            line-height: 1.7; /* Line height */
            margin-bottom: 2rem;
            font-weight: 600; /* Thoda lighter */
            color: #fff;
            text-align: justify;
            
        }
        .action-button {
    border: 1px solid #fff;
    color: #fff !important;
    padding: 0.75rem 2rem;
    text-decoration: none;
    font-size: 1.1rem;
        letter-spacing: -1px;
        font-family: "Instrument Serif";
    transition: all 0.3s ease;
}

.text-about{
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -2px;
    color: #fff;
    font-family: "Instrument Serif";
}
.secc p{
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 600;
    color: #fff;
    text-align: center;
}

/* Section background and layout */
.blend-bar {
  background-color: #fefef8;
  color: #000;
  text-align: center;
  padding: 100px 20px;
  font-family: 'Georgia', 'Times New Roman', serif;
}

/* Big heading */
.blend-bar h1 {
  font-size: 10vw;
  font-weight: 400;
  margin: 0;
  line-height: 1.1;
}

/* Subheading */
.blend-bar h2 {
  font-size: 3vw;
  font-weight: 300;
  margin-top: 10px;
  margin-bottom: 50px;
}

/* Paragraph */
.blend-bar p {
    font-family: "Times New Roman", Georgia, serif;
  letter-spacing: 0.1px;
  word-spacing: 1px;
  text-align: justify;        /* Left & right dono side equal karne ke liye */
  text-justify: inter-word;   /* Words ke beech proper spacing */
  margin: 0 auto;             /* Center karne ke liye */
  max-width: 800px;           /* Paragraph width fix rakhne ke liye */
  font-size: 14px;
  line-height: 1.6;
  color: #111;
}
.photo-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background-color: #fff;
}

/* Top row (2 images) */
.photo-grid .top-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  width: 80%;
}

/* Bottom row (3 images) */
.photo-grid .bottom-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  width: 80%;
}

/* Image styling */
.photo-grid img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: 0.3s ease;
}

.photo-grid img:hover {
  transform: scale(1.02);
}



.content-section-1 {
            min-height: 80vh; /* Poori height cover kare */
            display: flex; /* Flexbox for alignment */
            align-items: center; /* Vertically center content */
            padding: 2rem 0; /* Upar neeche padding */
        }




/* ✅ Mobile Responsive Font Size */
@media (max-width: 576px) {
    .action-button {
        font-size: 12px;
        padding: 0.5rem 1.5rem; /* optional: smaller padding for mobile */
    }
}
        .action-button:hover {
            background-color: #fff;
            color: #000 !important;
        }

        /* Responsive Adjustments */
        @media (max-width: 991.98px) { /* Tablet and below */
            .content-section {
                flex-direction: column; /* Columns on smaller screens */
                text-align: center; /* Center align text */
            }
            .left-side, .right-side {
                padding: 2rem 1rem; /* Adjust padding */
            }
            .left-side h1 {
                font-size: 2.8rem;
            }
            .left-side ul li {
                font-size: 2rem;
            }
            .right-side p {
                font-size: 1rem;
            }
        }
        @media (max-width: 575.98px) { /* Mobile */
            .left-side h1 {
                font-size: 2.2rem;
            }
            .left-side ul li {
                font-size: 1.7rem;
            }
        }

         /* Base Styling for the Footer */
        .custom-footer {
            background-color: #000; /* Pure Black Background */
            color: #fff; /* White Text */
            font-family: 'Cormorant Garamond', serif; /* Image jaisa elegant font */
            padding: 5rem 0 3rem; /* Upar, neeche padding */
        }

        /* Main Heading (The Citizen's Poste) */
        .footer-logo {
            font-size: 36px;
            font-weight: 500;
            margin-bottom: 0.5rem;
            letter-spacing: -1px;
            line-height: 1.2;
        }

        /* Email */
        .footer-email {
            font-size: 1.1rem;
            opacity: 0.8;
        }

        /* Column Headings (Sources, Follow Us) */
        .footer-col-heading {
            font-size: 36px;
            font-weight: 500;
            margin-bottom: 1.5rem;
            letter-spacing: -2px;
        }

        /* Links Styling */
        .footer-links ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-links ul li {
            margin-bottom: 0.75rem;
        }
        .footer-links a {
            color: #fff;
            text-decoration: underline; /* Image jaisa underline effect */
            text-decoration-thickness: 1px; /* Thoda patla underline */
            text-underline-offset: 4px; /* Link aur underline ke beech space */
            transition: opacity 0.3s;
            font-size: 1.1rem;
        }
        .footer-links a:hover {
            opacity: 0.7; /* Hover par halka fade effect */
            color: #fff; /* Taki hover par bhi white rahe */
        }

        /* Responsive adjustments */
        @media (max-width: 991.98px) {
            .footer-links {
                margin-top: 3rem; /* Links columns ke beech space */
            }
            .footer-logo-col {
                margin-bottom: 3rem;
            }
        }
        @media (max-width: 575.98px) {
            .footer-links {
                margin-top: 2rem;
            }
        }




/* Latest Blog Section - Social Grid */
.cs_grid_3 .row {
  padding-left: 30px;
}

@media (max-width: 991px) {
  .cs_grid_3 .row {
    padding-left: 15px;
  }
}
