/*
Theme Name: Rano Chidiya
Theme URI: https://ranochidiya.com/
Author: Rano Chidiya Official
Author URI: https://ranochidiya.com/
Description: Official custom WordPress theme for Rano Chidiya — a fun, colourful kids' cartoon brand site with Stories, Videos, Characters, blog and full Customizer + Elementor support. Every image, menu, and text block is editable from wp-admin.
Version: 1.5.1
Requires at least: 6.0
Requires PHP: 7.4
Tested up to: 6.6
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: rano-chidiya
Tags: custom-colors, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready, block-styles

Rano Chidiya WordPress Theme, (C) Rano Chidiya Official
Rano Chidiya is distributed under the terms of the GNU GPL.
*/

/* ==========================================================================
   RANO CHIDIYA — OFFICIAL WEBSITE STYLESHEET
   Design tokens, layout and component styling.
   ========================================================================== */

:root{
  /* Brand palette (editable from Customizer > Colors) */
  --sunshine: var(--rc-sunshine, #FFC93C);
  --sunshine-dark: var(--rc-sunshine-dark, #F2A900);
  --sky-blue: var(--rc-sky-blue, #4FC3F7);
  --bubblegum: var(--rc-bubblegum, #FF8FB1);
  --leaf-green: var(--rc-leaf-green, #4CAF7D);
  --grape: var(--rc-grape, #6B4E9A);
  --grape-dark: var(--rc-grape-dark, #2D1B4E);
  --cream: var(--rc-cream, #FFF9EC);
  --gold: var(--rc-gold, #F4B400);
  --coral-red: var(--rc-coral-red, #F1483A);
  --ink: #2B2B2B;

  /* Typography */
  --font-display: 'Baloo 2', 'Nunito', sans-serif;
  --font-body: 'Nunito', sans-serif;

  --radius-lg: 28px;
  --radius-md: 22px;
  --shadow-soft: 0 14px 30px rgba(43,27,50,0.14);
  --shadow-pop: 0 8px 0 rgba(0,0,0,0.15);
}

*{ box-sizing: border-box; }

html{ scroll-behavior: smooth; }

body{
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}

h1,h2,h3,h4{ font-family: var(--font-display); margin: 0; }

img{ max-width: 100%; display:block; }

a{ text-decoration: none; }

.skip-link{
  position:absolute; top:-60px; left:10px; background:var(--sunshine); color:var(--ink);
  padding:10px 18px; border-radius:12px; z-index: 2000; font-weight:700;
  transition: top .2s ease;
}
.skip-link:focus{ top:10px; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  *{ animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior:auto !important; }
}

/* ==========================================================================
   Ambient background decor (clouds) fixed behind whole page
   ========================================================================== */
.scene-decor{ position: fixed; inset:0; pointer-events:none; z-index:-1; overflow:hidden; }
.cloud{
  position:absolute; background: #fff; border-radius: 50%; opacity:.55; filter: blur(1px);
}
.cloud::before, .cloud::after{ content:""; position:absolute; background:inherit; border-radius:50%; }
.cloud-a{ width:140px; height:50px; top:6%; left:-10%; animation: drift 60s linear infinite; }
.cloud-a::before{ width:80px; height:80px; top:-35px; left:15px; }
.cloud-a::after{ width:60px; height:60px; top:-20px; left:70px; }
.cloud-b{ width:100px; height:40px; top:22%; left:-15%; animation: drift 80s linear infinite; animation-delay:-20s; }
.cloud-b::before{ width:60px; height:60px; top:-26px; left:10px; }
.cloud-b::after{ width:50px; height:50px; top:-16px; left:50px; }
.cloud-c{ width:120px; height:44px; top:2%; left:-20%; animation: drift 100s linear infinite; animation-delay:-50s; }
.cloud-c::before{ width:70px; height:70px; top:-30px; left:12px; }
.cloud-c::after{ width:55px; height:55px; top:-18px; left:60px; }

@keyframes drift{
  from{ transform: translateX(0); }
  to{ transform: translateX(130vw); }
}

/* ==========================================================================
   NAVBAR
   ========================================================================== */
.rano-navbar{
  padding: 8px 0;
  transition: box-shadow .35s ease, padding .35s ease;
}
.rano-navbar .container-fluid{
  background:#fff;
  border-radius: 50px;
  padding: 6px 22px !important;
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
  max-width: 1260px;
  margin: 0 auto;
}
.rano-navbar.is-scrolled .container-fluid{
  box-shadow: 0 10px 26px rgba(0,0,0,.18);
}
.rano-brand{ display:flex; align-items:center; gap:10px; }
.rano-brand img.custom-logo{ max-height:48px; width:auto; border-radius:12px; }
.brand-badge{
  width:48px; height:48px; border-radius:50%; background: linear-gradient(180deg,#fff, #ffe9b8);
  display:flex; align-items:center; justify-content:center; box-shadow: 0 4px 10px rgba(0,0,0,0.12);
  color: var(--sunshine-dark);
}
.brand-bird{ width:34px; height:34px; }
.brand-text{
  font-family: var(--font-display); font-weight:800; line-height:1; color: var(--coral-red);
  font-size: 1.3rem; letter-spacing:.5px;
}
.brand-text small{ display:block; font-size:.62rem; color: var(--grape); letter-spacing:2px; font-weight:700; }

.rano-nav-links{ gap: 4px; }
.rano-nav-links .nav-link, .rano-nav-links a{
  font-family: var(--font-display); font-weight:700; color: var(--ink); font-size:.85rem;
  padding: 8px 14px !important; border-radius: 30px; transition: all .25s ease; text-transform: uppercase; letter-spacing:.3px;
}
.rano-nav-links .nav-link:hover, .rano-nav-links .nav-link.active,
.rano-nav-links .current-menu-item > a, .rano-nav-links a:hover{
  color: var(--coral-red); background: transparent;
}

.icon-pill{
  width:40px; height:40px; border-radius:50%; background: var(--sunshine); display:flex; align-items:center; justify-content:center;
  color: #412b00; border:none; box-shadow: 0 3px 8px rgba(0,0,0,.1); transition: transform .2s ease;
}
.icon-pill:hover{ transform: translateY(-3px) scale(1.05); color: var(--coral-red); }
.icon-pill-red{ background: var(--coral-red); color:#fff; border-radius: 12px; }
.icon-pill-red:hover{ color:#fff; }

.btn-subscribe{
  font-family: var(--font-display); font-weight:700; background: var(--gold); color:#412b00;
  padding: 10px 22px; border-radius: 30px; box-shadow: 0 5px 0 #b57e00; transition: all .15s ease;
}
.btn-subscribe:hover{ transform: translateY(2px); box-shadow: 0 3px 0 #b57e00; color:#412b00; }

.rano-toggler{ background:#fff; border-radius:12px; border:none; padding:8px 12px; color: var(--grape); }

.rano-search-modal{ border-radius: 24px; border:none; overflow:hidden; }

/* ==========================================================================
   BUTTONS (shared)
   ========================================================================== */
.rano-btn{
  font-family: var(--font-display); font-weight:700; font-size: 1rem; border-radius: 40px;
  padding: 13px 28px; display:inline-flex; align-items:center; gap:10px; border: none; color:#fff;
  transition: transform .15s ease, box-shadow .15s ease; position:relative;
}
.rano-btn:active{ transform: translateY(3px); }
.rano-btn-red{ background: var(--coral-red); box-shadow: var(--shadow-pop); }
.rano-btn-red:hover{ color:#fff; transform: translateY(-2px); }
.rano-btn-green{ background: var(--leaf-green); box-shadow: 0 8px 0 rgba(0,0,0,.15); }
.rano-btn-green:hover{ color:#fff; transform: translateY(-2px); }
.rano-btn-gold{ background: var(--gold); color:#412b00; box-shadow: 0 8px 0 rgba(0,0,0,.12); }
.rano-btn-gold:hover{ color:#412b00; transform: translateY(-2px); }
.rano-btn-blue{ background: var(--sky-blue); box-shadow: 0 8px 0 rgba(0,0,0,.12); }
.rano-btn-blue:hover{ color:#fff; transform: translateY(-2px); }
.rano-btn-purple{ background: var(--grape); box-shadow: 0 8px 0 rgba(0,0,0,.15); }
.rano-btn-purple:hover{ color:#fff; transform: translateY(-2px); }
.rano-btn-outline{ background: transparent; color: var(--ink); border: 2px solid var(--ink); box-shadow:none; }
.rano-btn-outline:hover{ background: var(--ink); color:#fff; }

/* Ripple effect */
.rano-btn .ripple{
  position:absolute; border-radius:50%; background: rgba(255,255,255,.55); transform: scale(0);
  animation: ripple .6s ease-out; pointer-events:none;
}
@keyframes ripple{ to{ transform: scale(3); opacity:0; } }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero-section{
  position: relative; padding-top: 110px; padding-bottom: 70px; overflow:hidden;
  background: linear-gradient(180deg, #bdeaff 0%, #d8f3ff 55%, #eaf9ff 100%);
  isolation:isolate;
}
.hero-section.has-banner-image{
  background-size: cover; background-position: center; background-repeat: no-repeat;
  /* Without a floor, the section's height is driven purely by whatever
     text/illustration columns happen to be visible. Hiding the hero text
     (or the illustration) then collapses the box and crops the banner
     photo down to a sliver. This min-height keeps the full banner visible
     no matter which content toggles are on/off. */
  min-height: 620px;
}
.hero-section.has-banner-image.has-banner-overlay::before{
  content:''; position:absolute; inset:0; background: rgba(0,0,0,.4); z-index:0;
}
.hero-sky{ position:absolute; inset:0; z-index:0; overflow:hidden; }

/* Illustrated grass/waterfall — only used in the default (no custom banner)
   look. The theme stops printing these two elements in the markup whenever
   a Hero Banner image is uploaded, and this rule is a second safety net so
   no green strip can ever appear on top of a custom banner image. */
.hero-ground{
  position:absolute; left:0; right:0; bottom:0; height:34%; z-index:0;
  background: linear-gradient(180deg, color-mix(in srgb, var(--leaf-green) 65%, #fff 35%) 0%, var(--leaf-green) 100%);
  border-top-left-radius: 50% 40px; border-top-right-radius: 50% 40px;
}
.hero-waterfall{
  position:absolute; left:4%; bottom:16%; width:60px; height:180px; z-index:0;
  background: linear-gradient(180deg, rgba(255,255,255,.9), rgba(180,230,255,.5));
  border-radius: 40px; opacity:.7; filter: blur(1px);
  animation: waterfall-shimmer 2s ease-in-out infinite alternate;
}
.hero-section.has-banner-image .hero-ground,
.hero-section.has-banner-image .hero-waterfall{ display:none !important; }
@keyframes waterfall-shimmer{ from{ opacity:.55; } to{ opacity:.85; } }

.hero-container{ position:relative; z-index:2; }

.fly-bird{ position:absolute; color: var(--leaf-green); font-size: 1.6rem; opacity:.85; animation: fly 14s linear infinite; }
.fly-bird-1{ top:8%; left:-5%; animation-duration: 16s; color:#e74c3c; }
.fly-bird-2{ top:16%; left:-15%; animation-duration: 20s; animation-delay:-6s; color: var(--sky-blue); }
@keyframes fly{
  0%{ transform: translate(0,0) rotate(0deg);} 50%{ transform: translate(60vw,-30px) rotate(6deg);} 100%{ transform: translate(120vw,0) rotate(0deg);}
}

/* Leaves — position/colour/delay are set inline per-leaf from the
   Customizer count, but the fall SPEED below (animation duration: 9s)
   is fixed on purpose and is the same no matter how many leaves show. */
.leaf{ position:absolute; top:-5%; width:18px; height:18px; background: var(--leaf-green); border-radius: 0 60% 0 60%; opacity:.8; animation: leaf-fall 9s ease-in infinite; }
@keyframes leaf-fall{
  0%{ transform: translateY(0) rotate(0); opacity:.9;}
  100%{ transform: translateY(110vh) rotate(340deg); opacity:0;}
}

.butterfly{ position:absolute; font-size:1.4rem; animation: flutter 6s ease-in-out infinite; }
@keyframes flutter{ 0%,100%{ transform: translateY(0) rotate(-6deg);} 50%{ transform: translateY(-18px) rotate(6deg);} }

.hero-eyebrow{
  display:inline-block; font-family: var(--font-display); background: var(--bubblegum); color:#fff;
  padding: 8px 22px; border-radius: 30px; font-size:1.1rem; font-weight:700; margin-bottom: 14px;
  box-shadow: 0 6px 0 rgba(0,0,0,.1);
}
.hero-title{
  font-size: clamp(2.6rem, 6vw, 4.6rem); color: var(--sunshine); font-weight:800; line-height:0.95;
  -webkit-text-stroke: 3px #1c3d6e; text-stroke: 3px #1c3d6e; text-shadow: 6px 6px 0 rgba(28,61,110,0.25);
}
.hero-title-accent{ color:#fff; -webkit-text-stroke: 3px #1c3d6e; }
.hero-official{
  font-family: var(--font-display); color: var(--sunshine); font-size:1.6rem; font-weight:800; margin: 4px 0 14px;
  -webkit-text-stroke: 2px #1c3d6e; letter-spacing:2px;
}
.hero-official i{ color: var(--gold); -webkit-text-stroke: 0; }
.hero-subtitle{
  display:inline-block; background: var(--sunshine); padding: 10px 22px; border-radius: 20px;
  font-weight:800; color:#5a3d00; box-shadow: var(--shadow-soft); margin-bottom: 20px;
}
.hero-buttons{ display:flex; flex-wrap:wrap; gap:14px; }

.hero-art{ position:relative; }
.hero-illustration{
  width:100%; border-radius: var(--radius-lg); animation: float-illustration 5s ease-in-out infinite;
}
@keyframes float-illustration{ 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-14px);} }

.hero-wave{ position:absolute; bottom:-2px; left:0; width:100%; height:70px; z-index:1; }

/* ==========================================================================
   SECTION HEADINGS
   ========================================================================== */
.section-pad{ padding: 70px 0; position:relative; }
.section-heading{
  text-align:center; font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--grape); font-weight:800;
  margin-bottom: 40px; display:flex; align-items:center; justify-content:center; gap:16px;
}
.section-heading-icon{ color: var(--leaf-green); font-size:1.1rem; }
.section-heading-icon.flip{ transform: scaleX(-1); }

/* ==========================================================================
   STORY CAROUSEL
   ========================================================================== */
.stories-section{ background: var(--cream); }
.story-carousel-wrap, .character-carousel-wrap{ position:relative; display:flex; align-items:center; gap:10px; }
.story-track, .character-track{
  display:flex; gap: 22px; overflow-x:auto; scroll-behavior:smooth; padding: 10px 6px 20px;
  scrollbar-width:none;
}
.story-track::-webkit-scrollbar, .character-track::-webkit-scrollbar{ display:none; }

.story-card{
  flex: 0 0 180px; background:#fff; border-radius: var(--radius-md); overflow:hidden; box-shadow: var(--shadow-soft);
  transition: transform .3s ease, box-shadow .3s ease; cursor:pointer;
}
.story-card:hover{ transform: translateY(-10px) rotate(-1deg) scale(1.03); box-shadow: 0 20px 34px rgba(43,27,50,0.22); }
.story-card-media{
  height:130px; display:flex; align-items:center; justify-content:center;
  background: linear-gradient(160deg, color-mix(in srgb, var(--card-clr) 75%, white), var(--card-clr));
  overflow:hidden;
}
.story-card-media img{ width:100%; height:100%; object-fit:cover; }
.story-icon{ font-size: 2.6rem; color:#fff; filter: drop-shadow(0 4px 4px rgba(0,0,0,.2)); }
.story-card-label{
  text-align:center; font-family: var(--font-display); font-weight:700; color:#fff; background: var(--card-clr);
  padding: 12px 8px; font-size: .95rem; line-height:1.2;
}

.carousel-arrow{
  flex: 0 0 auto; width:46px; height:46px; border-radius:50%; background: var(--sunshine); border:none;
  color:#412b00; box-shadow: var(--shadow-soft); transition: transform .2s ease;
}
.carousel-arrow:hover{ transform: scale(1.1); }

/* ==========================================================================
   VIDEOS
   ========================================================================== */
.videos-section{ background: linear-gradient(180deg, var(--cream), #fff2df); }
.video-card{
  position:relative; display:block; height:170px; border-radius: var(--radius-md); overflow:hidden;
  box-shadow: var(--shadow-soft); transition: transform .3s ease; background-size:cover; background-position:center;
}
.video-card:hover{ transform: translateY(-8px) scale(1.02); }
.video-card-1{ background: linear-gradient(150deg,#2e8b57,#1c5c38); }
.video-card-2{ background: linear-gradient(150deg,#c0392b,#7a2115); }
.video-card-3{ background: linear-gradient(150deg,#3d8bd6,#1c4f80); }
.video-card-4{ background: linear-gradient(150deg,#b0b0b0,#6f6f6f); }
.video-card-5{ background: linear-gradient(150deg,#e6c229,#a97e0c); }
.video-card-6{ background: linear-gradient(150deg,#e07bb0,#a13d72); }
.video-card-7{ background: linear-gradient(150deg,#57c785,#237a4e); }
.video-card-8{ background: linear-gradient(150deg,#7d5ba6,#432a63); }

.video-duration{
  position:absolute; right:10px; bottom:10px; background: rgba(0,0,0,.65); color:#fff; font-size:.75rem;
  padding: 3px 8px; border-radius: 8px; font-weight:700;
}
.video-play{
  position:absolute; top:50%; left:50%; transform: translate(-50%,-50%); width:56px; height:56px; border-radius:50%;
  background: rgba(255,255,255,.92); display:flex; align-items:center; justify-content:center; color: var(--coral-red);
  font-size:1.2rem; box-shadow: 0 6px 14px rgba(0,0,0,.25); transition: transform .25s ease;
}
.video-card:hover .video-play{ transform: translate(-50%,-50%) scale(1.15); }
.video-title{
  position:absolute; left:10px; bottom:10px; right:60px; color:#fff; font-family: var(--font-display);
  font-weight:700; font-size:.8rem; text-shadow: 0 2px 4px rgba(0,0,0,.4);
}

/* ==========================================================================
   CHARACTERS
   ========================================================================== */
.characters-section{ background: var(--cream); }
.character-card{
  flex: 0 0 140px; display:flex; flex-direction:column; align-items:center; gap:10px; color: var(--ink);
}
.character-ring{
  --bird-clr: var(--sunshine);
  width:120px; height:120px; border-radius:50%; background:#fff; border: 5px solid var(--bird-clr);
  display:flex; align-items:center; justify-content:center; box-shadow: var(--shadow-soft);
  transition: transform .3s ease; overflow:hidden;
}
.character-card:hover .character-ring{ transform: scale(1.08) rotate(3deg); }
.character-ring img{ width:100%; height:100%; object-fit:cover; border-radius:50%; }
.character-bird{ width:76px; height:76px; color: var(--bird-clr); }
.character-name{ font-family: var(--font-display); font-weight:700; text-align:center; font-size:.9rem; }

/* ==========================================================================
   POPULAR STORIES
   ========================================================================== */
.popular-section{ background: linear-gradient(180deg, #fff2df, var(--cream)); }
.popular-card{
  background:#fff; border-radius: var(--radius-lg); padding: 0 0 26px; height:100%; position:relative;
  box-shadow: var(--shadow-soft); transition: transform .3s ease, box-shadow .3s ease; border-top: 8px solid var(--leaf-green); overflow:hidden;
}
.popular-card-media{ width:100%; aspect-ratio: 16/10; overflow:hidden; }
.popular-card-media img{ width:100%; height:100%; object-fit:cover; display:block; }
.popular-card .popular-badge,
.popular-card h3,
.popular-card p,
.popular-card > a{ margin-left:26px; margin-right:26px; }
.popular-card .popular-badge{ margin-top:20px; }
.popular-card-media + .popular-badge{ margin-top:20px; }
.popular-card-b{ border-top-color: var(--sunshine); }
.popular-card-c{ border-top-color: var(--bubblegum); }
.popular-card:hover{ transform: translateY(-10px); box-shadow: 0 22px 36px rgba(43,27,50,.2); }
.popular-badge{
  display:inline-block; background: var(--grape); color:#fff; font-size:.72rem; font-weight:700;
  padding: 4px 12px; border-radius: 20px; margin-bottom: 12px;
}
.popular-card h3{ font-size:1.3rem; color: var(--ink); margin-bottom:10px; }
.popular-card p{ color:#555; margin-bottom:18px; }

/* ==========================================================================
   INFO GRID: WHY / MERCH / ABOUT
   ========================================================================== */
.info-grid-section{ background: var(--cream); }
.info-panel{
  border-radius: var(--radius-lg); padding: 34px 28px; box-shadow: var(--shadow-soft); position:relative; overflow:hidden;
}
.why-panel{ background: #fff5e0; }
.why-bird{ position:absolute; right:-20px; bottom:-20px; width:130px; height:130px; color: rgba(255,201,60,.35); }
.why-bird-img{ object-fit:contain; opacity:.5; }
.info-title{ font-size:1.4rem; color: var(--grape); margin-bottom: 18px; position:relative; z-index:1; }
.why-list{ list-style:none; padding:0; margin:0; position:relative; z-index:1; }
.why-list li{ padding: 8px 0; font-weight:700; display:flex; align-items:center; gap:10px; }
.why-list i{ color: var(--gold); }

.merch-panel{ background: #efe6ff; display:flex; flex-direction:column; }
.merch-grid{ display:grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-bottom: 16px; }
.merch-item{
  background:#fff; border-radius: 18px; padding: 16px 10px; text-align:center; box-shadow: 0 4px 10px rgba(0,0,0,.06);
}
.merch-item i{ font-size:1.6rem; color: var(--grape); display:block; margin-bottom:6px; }
.merch-item img{ width:56px; height:56px; object-fit:cover; border-radius:12px; display:inline-block; margin-bottom:6px; }
.merch-item span{ display:block; font-weight:800; font-size:.85rem; }
.merch-item em{ display:block; font-style:normal; font-size:.68rem; color: var(--coral-red); font-weight:700; margin-top:2px; }
a.merch-item{ display:block; text-decoration:none; color:inherit; cursor:pointer; }
a.merch-item:hover{ box-shadow: 0 6px 14px rgba(0,0,0,.12); }

.about-panel{ background: #e6f7ec; }
.about-panel p{ color:#444; margin-bottom: 14px; }

/* ==========================================================================
   COPYRIGHT BAND
   ========================================================================== */
.copyright-band{
  background: linear-gradient(90deg, var(--gold), #ffd75e);
  padding: 40px 0; border-top: 4px solid #4a3300; border-bottom: 4px solid #4a3300;
}
.official-shield{
  width:100px; height:100px; margin:0 auto; border-radius:50%; background:#1c1c1c; color: var(--gold);
  display:flex; flex-direction:column; align-items:center; justify-content:center; font-family: var(--font-display);
  font-weight:800; font-size:.7rem; line-height:1.1; box-shadow: 0 6px 0 rgba(0,0,0,.25);
}
.official-shield i{ font-size:1.6rem; margin-bottom:4px; }
.official-shield-logo{ width:100px; height:100px; object-fit:contain; border-radius:50%; background:#fff; box-shadow: 0 6px 0 rgba(0,0,0,.25); padding:8px; }
.copyright-title{ font-size:1.5rem; color:#3a2600; margin-bottom:10px; display:flex; align-items:center; gap:10px; }
.copyright-title i{ color:#1c1c1c; }
.copyright-band p{ color:#4a3300; margin:0; font-weight:600; }
.trademark-seal{ position:relative; display:inline-block; font-size:3.4rem; color:#4a3300; }
.trademark-lock{ position:absolute; right:-6px; bottom:0; font-size:1.4rem; color:#1c1c1c; }
.trademark-seal-img{ max-width:110px; max-height:110px; object-fit:contain; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.rano-footer{ background: var(--grape-dark); color: #d9c9f0; padding: 60px 0 0; }
.footer-brand{ display:flex; align-items:center; gap:10px; color:#fff; font-family: var(--font-display); font-weight:800; font-size:1.2rem; margin-bottom:16px; }
.footer-brand img.custom-logo{ max-height:42px; width:auto; border-radius:10px; }
.footer-brand small{ display:block; font-size:.62rem; letter-spacing:2px; color: var(--sunshine); }
.footer-brand .brand-bird{ color: var(--sunshine); }
.footer-social{ display:flex; gap:12px; }
.footer-social a{
  width:38px; height:38px; border-radius:50%; background: rgba(255,255,255,.1); color:#fff; display:flex;
  align-items:center; justify-content:center; transition: all .2s ease;
}
.footer-social a:hover{ background: var(--sunshine); color:#412b00; transform: translateY(-3px); }

.footer-heading{ color:#fff; font-size:1.05rem; margin-bottom:16px; }
.footer-links{ list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:10px; }
.footer-links a{ color:#c9b6e8; transition: color .2s ease; }
.footer-links a:hover{ color: var(--sunshine); }

.footer-subscribe-bar{
  margin-top: 40px; padding: 26px; border-radius: var(--radius-md); background: rgba(255,255,255,.06);
  display:flex; flex-wrap:wrap; align-items:center; justify-content:space-between; gap:16px;
}
.footer-subscribe-bar p{ color:#c9b6e8; }

.footer-bottom{
  margin-top: 34px; padding: 20px 0; text-align:center; border-top: 1px solid rgba(255,255,255,.12); font-size:.85rem; color:#b39fd6;
}

/* Back to top */
.back-to-top{
  position:fixed; right:22px; bottom:22px; width:50px; height:50px; border-radius:50%; background: var(--coral-red);
  color:#fff; border:none; box-shadow: 0 8px 20px rgba(0,0,0,.25); opacity:0; visibility:hidden; transform: translateY(20px);
  transition: all .3s ease; z-index: 999;
}
.back-to-top.is-visible{ opacity:1; visibility:visible; transform: translateY(0); }
.back-to-top:hover{ transform: translateY(-4px); }

/* ==========================================================================
   BLOG / SINGLE / PAGE / ARCHIVE (standard WordPress content)
   ========================================================================== */
.rc-content-wrap{ padding: 150px 0 70px; min-height: 50vh; }
.rc-page-title{ font-size: clamp(1.8rem,4vw,2.6rem); color: var(--grape); margin-bottom: 26px; }
.rc-blog-card{ background:#fff; border-radius: var(--radius-md); overflow:hidden; box-shadow: var(--shadow-soft); margin-bottom: 30px; transition: transform .25s ease; }
.rc-blog-card:hover{ transform: translateY(-6px); }
.rc-blog-card .rc-blog-thumb img{ width:100%; height:220px; object-fit:cover; }
.rc-blog-card .rc-blog-body{ padding: 22px; }
.rc-blog-card h2{ font-size:1.3rem; margin-bottom:10px; }
.rc-blog-card h2 a{ color: var(--ink); }
.rc-blog-card h2 a:hover{ color: var(--coral-red); }
.rc-blog-meta{ font-size:.8rem; color: var(--grape); font-weight:700; margin-bottom:10px; }
.rc-single-content, .rc-page-content{ background:#fff; border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow-soft); }
.rc-single-content img, .rc-page-content img{ border-radius: var(--radius-md); }
.rc-pagination{ margin-top: 30px; display:flex; gap:10px; flex-wrap:wrap; }
.rc-pagination a, .rc-pagination span{ background:#fff; padding:8px 16px; border-radius:20px; font-weight:700; color: var(--grape); box-shadow: var(--shadow-soft); }
.rc-pagination .current{ background: var(--sunshine); color:#412b00; }
.rc-comments{ margin-top: 34px; background:#fff; border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-soft); }
.rc-sidebar .widget{ background:#fff; border-radius: var(--radius-md); padding:22px; margin-bottom:22px; box-shadow: var(--shadow-soft); }
