/* ===== HERO SECTION ===== */
body{
  background: #ffffff;
}

main, section{
  background: transparent;
}

.gkstories-hero {
  position: relative;
  width: 100%;
  height: 100dvh;     /* dynamic viewport = fixes page-specific layouts */
  min-height: 100dvh;
  overflow: hidden;
  background: #000;
}
/* body.gkstories-page, */
body.stories-page {
  background: #000;
}

.gkstories-hero + * {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
.gkstories-hero{
  margin-bottom: 0;
  padding-bottom: 40px;    /* create clean spacing */
}

.gkstories-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.gkstories-hero .gkstories-center-title {
  font-family: "Dancing Script", cursive;
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  color: #eeff00;
  letter-spacing: 4px;
}

.gkstories-hero .gkstories-subtitle {
  color: #f7f7f7;
}

.gkstories-content {
  margin-top: 170px; /* controls vertical position */
}


@media (max-width: 768px) {
  .gkstories-content {
    margin-top: 90px;
  }
}
/* Background image */
.gkstories-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Dark overlay for readability */
.gkstories-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

/* Content wrapper */
.gkstories-content {
  position: relative;
  text-align: center;
  color: #fff;
  padding: 20px;
  z-index: 2;
}

/* Button area */
.gkstories-buttons {
  margin-top: 20px;
    margin-bottom: 70px;
}

/* WhatsApp button */
.gkstories-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: #25D366;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gkstories-whatsapp-btn:hover {
  transform: translateY(-2px);
  background: #1ebe5d;
  box-shadow: 0 8px 18px rgba(0,0,0,0.25);
}

/* Responsive */
@media (max-width: 768px) {
  .gkstories-hero {
    height: 65vh;
  }

  .gkstories-center-title {
    font-size: 1.6rem;
  }

  .gkstories-subtitle {
    font-size: 1rem;
  }
}

/* ===== SOCIAL BAR ON HERO ===== */
.gkstories-social-bar {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 12px;
  padding: 10px 16px;
  border-radius: 40px;
  
  /* glass effect */
  background: rgba(255,255,255, 0);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  border: 1px solid rgba(255,255,255,0.7);
}

/* icon links */
.gkstories-social-bar a {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 42px;
  height: 42px;
  border-radius: 50%;

  color: #ffffff;
  font-size: 22px;
  text-decoration: none;

  transition: all 0.25s ease;
}

/* hover effect */
.gkstories-social-bar a:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-3px);
}

/* mobile adjustment */
@media (max-width: 768px) {
  .gkstories-social-bar {
    bottom: 18px;
    gap: 8px;
    padding: 8px 12px;
  }

  .gkstories-social-bar a {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
}

/* ===============================
   MY STORY BOOK — CLEAN CSS
   =============================== */
   /* ===============================
   MY STORY BOOK — CLEAN CSS
   =============================== */
/* ===============================
   MY STORY BOOK — CLEAN CSS
   =============================== */
/* body{
  background:#e9e7e3;
} */
  .gkstories-book{
  max-width: 900px;
  height: 105vh;
  margin: 40px auto;  
}

  /* SECTION THAT HOLDS THE BOOK */
.gkstories-book-section{
   /* remove black */
  padding-top: 40px;       /* space from hero */
  padding-bottom: 40px;
  margin-top: 0;           /* prevent collapse */
  position: relative;
  z-index: 1;
}

.gkstories-viewport{
  height: 100%;
  overflow: hidden;
}

.gkstories-track{
  display: flex;
  height: 100%;
   transition: transform 0.6s ease;
}

/* ===== BOOK PAGE BASE ===== */

.gkstories-page{
  min-width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  box-sizing: border-box;
  overflow: hidden;
}

/* ===== COVER PAGE ===== */
.gkstories-cover{
  align-items: center;
  text-align: center;
  background: linear-gradient(135deg,#ff9d00,#477c8e,#ffc400);
  color: white;
  border-radius: 12px;
}

.gkstories-cover-text{
  margin-top: clamp(60px, 10vh, 90px);
}

.gkstories-cover-image img{
  max-width: 80%;
  max-height: 60vh;
  border-radius: 16px;
margin-top: 20px;
}
/* ===== CONTENT PAGE ===== */

.gkstories-contents{
  height: 100%;
  position: relative;
}


/* ===== IMAGE ===== */

.content-image{
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 12px;
  margin-left: 50px;
  margin-right: 50px;
}

/* ===== GLASS OVERLAY ===== */

.content-overlay{
  position: absolute;
  top: 100px;
  left: 25px;
  right: 25px;
  bottom: 100px;
  padding: 12px; 
  border-radius: 14px;
  /* background: rgba(0,0,0,0.1); */
  color: #000000;

  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.content-overlay .topics{
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 15px;
  width: 100%;
}

@media (max-width:768px){

  .gkstories-book{
    margin-left: -60px;
  }

}

/* ===== CONTENT TITLE ===== */

.content-heading{
  text-align: center;
  margin-top: 80px;
  margin-bottom: 30px;
    font-size: 32px;
     font-family:"Noto Sans Kannada", sans-serif;
  color: #eeff00 !important;
}

/* ===== TOPICS GRID ===== */

.topics a{
  display: block;
  padding: 8px 10px;
  margin-left: -30px;
  border-radius: 4px;
  background: rgba(0,0,0,0.5);
  color: rgb(0, 30, 255);
  text-decoration: none;
  font-size: 14px;
  cursor: pointer;
  font-family:"Noto Sans Kannada", sans-serif;
}

.topics a:hover{
  background: rgba(0, 102, 255, 0.5);
}

/* ===== TOP RIGHT BUTTON ===== */

.gkstories-top-bar{
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 5;
}

.gkstories-top-bar button{
  font-size: 12px;
  padding: 4px 8px;
}

/* ===== BOTTOM NAV ===== */

.page-nav{
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
}

.page-nav button{
  font-size: 12px;
  padding: 4px 8px;
  border: none;
  border-radius: 4px;
  background: #203a43;
  color: white;
  cursor: pointer;
}

.gk-contents-page{
  position: relative;
}

.gkstories-contents{
  display:flex;
  flex-direction:column;
  height:100%;
}

/* CONTENT PAGE NAV BOTTOM */
/* push navigation to bottom */
.gkstories-contents .gkstories-nav{
  margin-top:40px;
  display:flex;
  justify-content:space-between;
}

/* =======================================================
======================================================= */

/* CSS FOR FOREWORD CSS for story pages (Reusable) */

/* NEXT STORY BUTTON */

.story-next-btn{
text-align:center;
margin-bottom:20px;
}

.story-next-btn strong{
font-size:18px;
color:#0030b3;
padding:8px 18px;
background:#b3ff00;
border-radius:16px;
cursor:pointer;
transition:all 0.3s ease;
}

.story-next-btn strong:hover{
background:#e2e2e2;
color:#001a66;
}

/* TEXT AND PARA WITH IMAGE 1 Author intro*/

.gk-story1-media{
  display:flex;
  gap: 0px;
  align-items:flex-start;
  margin:1px 0;
}

.gk-story1-media img{
  width:240px;
  height:auto;
  border-radius:8px;
  margin-left: 50px;
  margin-top: 20px;
  align-items: center;
}

.gk-story1-media p{
  flex:1;
  /* margin-right: 5px; */
  text-align: justify;
    line-height:1.4;
    margin-left: -10px;
    margin-top: 1px;
}

@media (max-width: 768px){

  .gk-story1-media{
    flex-direction:column;
  }

  .gk-story1-media img{
    width:100%;
    max-width:300px;
    margin:auto;      /* centers the image */
    display:block;
  }

}

/* TEXT AND PARA WITH IMAGE 2*/

.gk-story-media{
  display:flex;
  gap: 0px;
  align-items:flex-start;
  margin:8px 0;
}

.gk-story-media img{
  width:240px;
  height:auto;
  border-radius:8px;
  margin-left: 50px;
  margin-top: 20px;
  align-items: center;
}

.gk-story-media p{
  flex:1;
  /* margin-right: 5px; */
  text-align: justify;
    line-height:1.4;
    margin-left: -30px;

}

@media (max-width:768px){

  .gk-story-media{
    flex-direction:column;
    padding-left:20px;
    padding-right:20px;
  }

  .gk-story-media p{
    margin-left:10px;
  }

  .gk-story-media img{
    width:100%;
    max-width:300px;
    margin:auto;
    display:block;
  }

}
/* PAGE 3 IMAGE3 Gk*/
.story-image3{
text-align:center;
/* margin-bottom:0px; */
}

/* PAGE 3 IMAGE3 SHADOW */
.story-image3 img{
width: 40%;
border-radius:16px;
box-shadow:0 8px 20px rgba(0,0,0,0.75);
}
/* CSS for story pages (Reusable) */

/* PAGE 9 IMAGE9 FISH */
.story-image9{
text-align:center;
/* margin-bottom:0px; */
}
 
/* PAGE 9 IMAGE9 SHADOW */
.story-image9 img{
width: 58%;
margin-top: 0px;
margin-bottom: 30px;
border-radius:16px;
box-shadow:0 8px 20px rgba(0,0,0,0.75);
}

/* PAGE 13 IMAGE13 RADIO */
.story-image13{
text-align:center;
/* margin-bottom:0px; */
}

/* PAGE 15 IMAGE15 SHADOW */
.story-image13 img{
width: 90%;
margin-top: 1px;
margin-bottom: 30px;
border-radius:16px;
box-shadow:0 8px 20px rgba(0,0,0,0.75);
}

/* PAGE 19 IMAGE19 CLOTH BUYING */
.story-image19{
text-align:center;
/* margin-bottom:0px; */
}

/* PAGE 19 IMAGE19 SHADOW */
.story-image19 img{
width: 90%;
margin-top: 50px;
margin-bottom: 1px;
border-radius:16px;
box-shadow:0 8px 20px rgba(0,0,0,0.75);
}


/* PAGE 20 IMAGE20 GKWALK */
.story-image20{
text-align:center;
/* margin-bottom:0px; */
}

/* PAGE 20 IMAGE20 SHADOW */
.story-image20 img{
width: 65%;
margin-top: 10px;
margin-bottom: 20px;
border-radius:16px;
box-shadow:0 8px 20px rgba(0,0,0,0.75);
}


/* PAGE 26 IMAGE26 COFFEE SHEEDS */
.story-image26{
text-align:center;
/* margin-bottom:0px; */
}

/* PAGE 26 IMAGE21 SHADOW */
.story-image26 img{
width: 80%;
margin-top: 0px;
margin-bottom: 80px;
border-radius:16px;
box-shadow:0 8px 20px rgba(0,0,0,0.75);
}


/* PAGE 27 IMAGE2 NIGHT-MOON */
.story-image27{
text-align:center;
/* margin-bottom:0px; */
}

/* PAGE 22 IMAGE27 SHADOW */
.story-image27 img{
width: 60%;
margin-top: 0px;
margin-bottom: 40px;
border-radius:16px;
box-shadow:0 8px 20px rgba(0,0,0,0.75);
}

/* =======================================================
======================================================= */


/* ===== TEXT PAGE ===== */

.gkstories-book { 
  position: relative;
  background: #f8f6f1;
  border-radius: 12px;

  box-shadow:
  0 12px 35px rgba(0,0,0,0.18),
  0 4px 10px rgba(0,0,0,0.08);

  overflow: hidden;
}

.gkstories-text h2{
  font-family:"Noto Sans Kannada", sans-serif;
  font-size: 28px;
  color: #031548;
  margin-top: 25px;
  padding-left: 70px;
  padding-bottom: 5px;   /* space for underline */
  position: relative;
  }

/* custom underline */
.gkstories-text h2::after{
  content: "";
  position: absolute;
  left: 70px;          /* aligns with text padding */
  bottom: 0;
  width: 200px;         /* underline length */
  height: 2px;         /* underline thickness */
  background: #ff8800; 
  border-radius: 2px;  /* optional smooth edges */
}

/* TEXT PAGES ALL */

.gkstories-text p {
  font-family:"Noto Sans Kannada", sans-serif;
  font-size: 16px;
   line-height: 1.6;
  text-align: justify;
  color: #000;
  padding-left: 50px;
  padding-right: 40px;
}

.gkstories-text-content{
  flex: 1;
  overflow-y: auto;   /* scroll happens ONLY here */
}

.next-text{
  cursor: pointer;
  color: #203a43;        /* change to your theme color */
  font-weight: 600;
  margin-left: 6px;
  white-space: nowrap;
}

.next-text:hover{
  text-decoration: underline;
}

/* ===== TITLES ===== */
.title-kn{
  font-family: "Noto Sans Kannada", sans-serif;
  font-size: 36px;
  color: #eeff00;
  margin: 0;
  padding-bottom: 10px;
}

.subtitle-kn{
  font-family: "Noto Sans Kannada", sans-serif;
  font-size: 18px;
  margin-bottom: 10px;
   color: #ffffff;
}
.subtitle-en{
  font-family: "Noto Sans Kannada", sans-serif;
  font-size: 18px;
  margin-bottom: 10px;
   color: #ffffff;
}

.title-en{
  font-family: "Dancing Script", cursive;
  font-size: 40px;
  color: #ffae00;
  margin: 0;
    padding-bottom: 10px;
}

.subtitle-en{
  font-size: 18px;
  margin-bottom: 20px;
}

/* ===== NAVIGATION ===== */
.gkstories-next,
.nav-back{
  padding: 10px 18px;
  border: none;
  border-radius: 6px;
  background: #ffae00;
  color: black;
  cursor: pointer;
  align-self: flex-end;
}

.nav-back{
  align-self: flex-start;
}

/* ===== CONTENT PAGE ===== */

.gkstories-top-bar button{
  padding: 3px 8px;
  font-size: 12px;;
  border: none;
  border-radius: 10px;
  background: #f1f1f1;
  cursor: pointer;
}

.gkstories-top-bar button:hover{
background: #ffd428;
}

.topics a{
  display: block;
  padding: 8px 8px;
  border-radius: 10px;
  backdrop-filter: blur(30px);
  background: rgba(255,255,255,0.1);
  color: #000;
  text-decoration: none;
  font-family: "Noto Sans Kannada", sans-serif;
}

/* ===== TEXT STORY PAGE ===== */
.gkstories-text .page-inner{
  padding-top: 20px;
}

/* page 2 onward */
.text-spaced .gkstories-text-content{
  padding-top: 40px;
}

.gkstories-text{
  /* background: linear-gradient(to right,#ececec,#e6e6e6,#ececec); */
  background: #fde7ba;
}

.gkstories-text .page-inner{
  height: 100%;
  overflow-y: auto;
}

.story-title{
  margin-bottom: 30px;
}

/* MOBILE TEXT PAGE ADJUSTMENT */

@media (max-width: 768px){

  .gkstories-text p{
    font-size:15px;
    line-height:1.7;

    padding-left:80px;
    padding-right:18px;
    padding-bottom: 28px;
  }

}

/* ===== PAGE NAVIGATION ===== */

.page-nav{
  position: absolute;
  bottom: 15px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 1px 3px;      /* reduced inner space */
  font-size: 12px;        /* smaller text */
  border-radius: 4px;     /* slightly sharper corners */
  line-height: 1.2; 
    font-family: "Noto Sans Kannada", sans-serif;
    padding-left: 50px;
    padding-right: 20px;
}

.page-nav button{
  bottom: 10px; 
  padding: 8px 8px;
  border: none;
  border-radius: 10px;
  background: #00456d;
  color: white;
  cursor: pointer;
  font-family: "Noto Sans Kannada", sans-serif;
}

.nav-number{
  display: flex;
  align-items: center;
  font-weight: bold;
}

/* ===== CONTENT PAGE CENTERING ===== */

.gkstories-contents .page-inner{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
}

.gkstories-contents .gkstories-cover-text{
  text-align: center;
  margin-top: 10px;
}

.topics{
  width: 100%;
  max-width: 730px;
  margin-left: 60px;
}

.gkstories-nav button{
  background:#0b4f75;
  color:#fff;
  border:none;
  padding:4px 6px;
  border-radius:10px;
  font-size:14px;
  cursor:pointer;
}

.gkstories-nav button:hover{
  background:#083a56;
}


/* ===== POEM BOOK SECTION ===== */
/* ===== POEM BOOK SECTION ===== */
/* ===== POEM BOOK SECTION ===== */
/* ===== POEM BOOK SECTION ===== */

.gkpoems-book-section {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 30px 0;
  font-family: "Noto Serif Kannada", serif;
}

.gkpoems-book {
  width: 100%;
   max-width: 900px;
  height: 800px;
  position: relative;
  background: #f8f6f1;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  border-radius: 10px;
  overflow: hidden;
}

.gkpoems-viewport {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

/* ===== TRACK (SLIDER) ===== */
.gkpoems-track {
  display: flex;
  height: 100%;
  transition: transform 0.6s ease;
}

/* ===== PAGE ===== */
.gkpoems-page {
  min-width: 100%;
  height: 100%;
  padding: 40px 30px 70px;
  box-sizing: border-box;
  position: relative;
  overflow-y: auto;
}

/* ===== COVER ===== */
.gkpoems-cover {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(135deg,#ff6565,#e09d00);
}

.kn {
  font-family: "Noto Sans Kannada", sans-serif;
  letter-spacing: 0.2px;
  color: #002b98;
}

.en {
  font-family: "Dancing Script", cursive;
  font-size: 48px;
  letter-spacing: 0.5px;
  color: #00051f;
}

/* .gkpoems-center-title:lang(en), */
.gkpoems-subtitle:lang(en) {
  font-size: 18px;
 font-family:Verdana, Geneva, Tahoma, sans-serif;
  color: #ffffff;
  padding-bottom: 20px;
}

.gkpoems-cover-image img {
  max-width: 540px;
  border-radius: 10px;
}

.gkpoems-contents-image img {
  max-width: 360px;
  border-radius: 6px;
}

div.gkpoems-contents a {
  display: block;
  padding: 2px 0;
  color: #000000;
  line-height: 1.2;
  font-size: 12px;
  text-align: left;
}

.gkpoems-contents a:hover {
  color: #ffffff;
}

@media (max-width: 768px) {
  .gkpoems-center-title:lang(kn),
  .gkpoems-center-title:lang(en),
  .gkstories-center-title:lang(kn),
  .gkstories-center-title:lang(en) {
    font-size: 26px;
  }

  .gkpoems-subtitle:lang(kn),
  .gkpoems-subtitle:lang(en),
  .gkstories-subtitle:lang(kn),
  .gkstories-subtitle:lang(en) {
    font-size: 14px;
  }

}

/* ===== POEM PAGE TITLE ===== */
.gkpoems-page:not(.gkpoems-cover) h2 {
  text-align: left;        /* alignment */
  font-size: 28px;         /* font size */
  color: #4e0000;          /* text color */
  margin-left: 20px;       /* left spacing */
  padding-bottom: 1px;    /* space below title */
  border-bottom: 2px solid #ff0000; /* optional nice separator */
}

.gkpoems-text {
  margin-top: 20px;
  line-height: 1.2;
  font-size: 15px;
}

.stanza {
  margin-bottom: 15px;
}

/* ===== NAVIGATION ===== */
.gkpoems-prev,
.gkpoems-next {
  position: absolute;
  bottom: 15px;
  cursor: pointer;
  font-size: 16px;
  color: #0048ff;
}

.gkpoems-prev { left: 20px; }
.gkpoems-next { right: 20px; }

.gkpoems-prev:hover,
.gkpoems-next:hover {
  color: #000;
}

/* ===== PAGE NUMBER ===== */
.gkpoems-page-number {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 14px;
}

/* ===== TOP BAR ===== */
.gkpoems-top-bar {
  position: absolute;
  top: 10px;
  right: 20px;
}

.gkpoems-top-bar button {
  padding: 5px 10px;
  cursor: pointer;
}

/* ===== MULTI COLUMN POEM LAYOUT ===== */

/* apply columns only to poem text area */
.gkpoems-columns-2 .gkpoems-text {
  column-count: 2;
  column-gap: 30px;
}

/* ===== FORCE 3 TIGHT COLUMNS ===== */

.gkpoems-columns-3 {
  padding-left: 60px;
  padding-right: 10px;
}

.gkpoems-columns-3 .gkpoems-text {
  column-count: 3;      /* always 3 columns */
  column-gap: 1px;      /* real gap between columns */
}

/* reduce extra white space that looks like gap */
.gkpoems-columns-3 .stanza {
  margin-bottom: 12px;
}

.gkpoems-columns-3 .gkpoems-text p {
  margin: 0 0 3px;
}

/* prevent stanza break across columns */
.gkpoems-text .stanza {
  break-inside: avoid;
  page-break-inside: avoid;
}

/* better readability */
.gkpoems-text p {
  margin: 0 0 6px;
  margin-left: 50px;
}

/* responsive fallback */
@media (max-width: 900px) {
  .gkpoems-columns-3 .gkpoems-text {
    column-count: 2;
  }
}

@media (max-width: 600px) {
  .gkpoems-columns-2 .gkpoems-text,
  .gkpoems-columns-3 .gkpoems-text {
    column-count: 1;
  }
}

/* ===== CONTENTS PAGE COLUMNS ===== */

.gkpoems-contents-page-columns-2 .gkpoems-contents {
  column-count: 2;
  column-gap: 40px;
}

.gkpoems-contents-page-columns-3 .gkpoems-contents {
  column-count: 3;
  column-gap: 40px;
}

.gkpoems-contents-page-columns-4 .gkpoems-contents {
  column-count: 4;
  column-gap: 40px;
}

/* keep links from splitting */
.gkpoems-contents a {
  break-inside: avoid;
  display: block;
  margin-bottom: 6px;
}


/* ===== 4 COLUMN POEM LAYOUT ===== */
.gkpoems-columns-4 .gkpoems-text {
  column-count: 4;
  column-gap: 12px;
}

/* keep stanza together */
.gkpoems-columns-4 .stanza {
  break-inside: avoid;
}

/* tighten text spacing */
.gkpoems-columns-4 .gkpoems-text p {
  margin: 0 0 4px;
}

/* responsive */
@media (max-width: 900px) {
  .gkpoems-contents-page-columns-3 .gkpoems-contents {
    column-count: 2;
  }
}

@media (max-width: 600px) {
  .gkpoems-contents-page-columns-2 .gkpoems-contents,
  .gkpoems-contents-page-columns-3 .gkpoems-contents {
    column-count: 1;
  }
}

@media (max-width: 1200px) {
  .gkpoems-contents-page-columns-2 .gkpoems-contents,
  .gkpoems-contents-page-columns-3 .gkpoems-contents {
    column-count: 4;
  }
}

.gkpoems-btn {
  background: #ff9a9a;
  border: 1px solid #c8b79c;
  border-radius: 9px;
  padding: 5px 12px;
  font-size: 16px;
  cursor: pointer;
}

.gkpoems-btn:hover {
  background: #ffc400;
}

/* ===== NAV BUTTON BASE ===== */
.gkpoems-prev,
.gkpoems-next {
  position: absolute;
  bottom: 18px;
  padding: 3px 7px;
  font-size: 16px;
  cursor: pointer;
  user-select: none;

  background: linear-gradient(135deg, #ffffff, #f1e6d6);
  border: 1px solid #b8a78a;
  border-radius: 9px;

  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
  transition: all 0.25s ease;
}

/* positioning */
.gkpoems-prev { left: 20px; }
.gkpoems-next { right: 20px; }

/* hover */
.gkpoems-prev:hover,
.gkpoems-next:hover {
  background: linear-gradient(135deg, #f8efe2, #e9d8c0);
  border-color: #9c8665;
}

/* press effect */
.gkpoems-prev:active,
.gkpoems-next:active {
  transform: translateY(1px);
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}


/* ===== CTA SECTION ===== */
.cta-section {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 60px 0;
  padding: 20px;
}

/* ===== CTA CARD ===== */
.cta-content {
  max-width: 720px;
  width: 100%;
  text-align: center;
  padding: 40px 35px;

  background: linear-gradient(135deg, #fffdf8, #f3eadc);
  border: 1px solid #d6c7ae;
  border-radius: 14px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* ===== TITLE ===== */
.cta-content h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 18px;
  color: #ff4400;
   font-family: "Noto Serif Kannada", serif;
}

/* ===== TEXT ===== */
.cta-content p {
  font-size: 18px;
  line-height: 1.7;
  color: #000000;
  margin-bottom: 28px;
}

/* ===== MAIN BUTTON ===== */
.cta-main-btn {
  background: linear-gradient(135deg, #ffffff, #f1e6d6);
  border: 1px solid #ffa200;
  border-radius: 10px;

  padding: 10px 22px;
  font-size: 16px;
  color: #ff4400;
  cursor: pointer;

  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  transition: all 0.25s ease;
}

/* hover */
.cta-main-btn:hover {
  background: linear-gradient(135deg, #f8efe2, #e9d8c0);
  border-color: #9c8665;
  transform: translateY(-1px);
}

/* click */
.cta-main-btn:active {
  transform: translateY(1px);
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
  .cta-content {
    padding: 30px 20px;
  }

  .cta-content h2 {
    font-size: 22px;
  }

  .cta-content p {
    font-size: 15px;
  }
}

.gkpoems-poem-image {
  text-align: left;
  margin: 10px 0 20px;
}

.gkpoems-poem-image img {
  display: block;
  margin: 0 auto;
    max-width: 200px;
  width: 100%;
  border-bottom: 8px solid #6b3e1f; /* brown thick line */
  padding-bottom: 1px;              /* space between image and line */
}
