/*
Theme Name: VOG FM
Theme URI: https://vogfmlira.com
Author: Antigravity
Author URI: 
Description: A beautiful, modern, dark theme for Voice of the Gospel FM 104.4, Lira City.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: vogfm
*/

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Colors inherited from the Navy/Red logo but adapted for a premium dark theme */
  --deep: #060b14;
  --navy: #0a1324;
  --brand-navy: #00104f; /* from logo */
  --gold: #e62020; /* Red from logo replacing gold */
  --gold-light: #ff3b3b;
  --cream: #f5eed8;
  --ivory: #faf6ed;
  --muted: #7a90a4;
  --soft: #1a2535;
}

html { scroll-behavior: smooth; }
body { background: var(--deep); color: var(--cream); font-family: 'Inter', sans-serif; overflow-x: hidden; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.1rem 4rem;
  background: rgba(6, 11, 20, 0.9); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(230, 32, 32, 0.18);
}
.nav-brand { display: flex; align-items: center; gap: 1rem; }
.nav-logo-img { height: 45px; width: auto; object-fit: contain; background: white; padding: 2px; border-radius: 4px; }
.nav-live { display: flex; align-items: center; gap: 0.45rem;
  background: rgba(230, 32, 32, 0.1); border: 1px solid rgba(230, 32, 32, 0.3);
  border-radius: 20px; padding: 0.28rem 0.8rem; }
.live-dot { width: 7px; height: 7px; background: #e05050; border-radius: 50%;
  animation: blink 1.4s ease-in-out infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
.live-txt { font-size: 0.63rem; font-weight: 700; letter-spacing: .15em;
  text-transform: uppercase; color: var(--gold); }
.nav-logo { font-family: 'Outfit', sans-serif; font-size: 1rem; color: var(--gold-light); letter-spacing: .1em; display: none; } /* Hidden since we have image logo */
.nav-links { display: flex; gap: 2rem; list-style: none; margin:0; padding:0; }
.nav-links li { margin: 0; }
.nav-links a { text-decoration: none; color: var(--muted); font-size: .73rem;
  font-weight: 600; letter-spacing: .12em; text-transform: uppercase; transition: color .3s; }
.nav-links a:hover, .nav-links .current-menu-item > a { color: var(--gold-light); }

/* HERO */
.hero { position: relative; min-height: 100vh; display: flex;
  align-items: center; justify-content: center; text-align: center;
  overflow: hidden; padding: 8rem 2rem 4rem; }
.hero-bg { position: absolute; inset: 0;
  background: radial-gradient(ellipse 75% 55% at 50% 42%,
    rgba(230, 32, 32,.08) 0%, rgba(10, 19, 36,.55) 55%, var(--deep) 100%); }
.waves { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: 960px; height: 960px; pointer-events: none; }
.wave { position: absolute; border-radius: 50%;
  border: 1px solid rgba(230, 32, 32,.11);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  animation: ripple 7s ease-out infinite; }
.wave:nth-child(1){width:180px;height:180px;animation-delay:0s}
.wave:nth-child(2){width:360px;height:360px;animation-delay:1.2s}
.wave:nth-child(3){width:540px;height:540px;animation-delay:2.4s}
.wave:nth-child(4){width:720px;height:720px;animation-delay:3.6s}
.wave:nth-child(5){width:900px;height:900px;animation-delay:4.8s}
@keyframes ripple { 0%{opacity:.7} 100%{opacity:0} }

.hero-content { position: relative; z-index: 2; max-width: 800px; }
.hero-tag { display: inline-block; font-size: .7rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase; color: var(--gold);
  border: 1px solid rgba(230, 32, 32,.35); padding: .38rem 1.1rem;
  border-radius: 2px; margin-bottom: 1.8rem; animation: fadeUp 1s ease both; }
.hero-freq { font-family: 'Outfit', sans-serif;
  font-size: clamp(4.5rem,10vw,8.5rem); font-weight: 700;
  color: var(--gold-light); line-height: 1;
  text-shadow: 0 0 100px rgba(230, 32, 32,.35);
  animation: fadeUp 1s .2s ease both; }
.hero-vog { font-family: 'Outfit', sans-serif;
  font-size: clamp(.85rem,1.8vw,1.25rem); color: var(--gold);
  letter-spacing: .35em; text-transform: uppercase;
  margin: .6rem 0 .25rem; animation: fadeUp 1s .35s ease both; }
.hero-name { font-family: 'Inter', sans-serif;
  font-size: clamp(1.2rem,2.5vw,2rem); font-weight: 300; font-style: italic;
  color: var(--cream); letter-spacing: .06em; margin-bottom: 1.6rem;
  animation: fadeUp 1s .5s ease both; }
.hero-slogan { font-family: 'Inter', sans-serif;
  font-size: clamp(1rem,2vw,1.45rem); font-weight: 600;
  color: var(--gold); letter-spacing: .05em; margin-bottom: 2.8rem;
  animation: fadeUp 1s .65s ease both; }
.hero-badges { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap;
  animation: fadeUp 1s .8s ease both; }
.badge { display: flex; align-items: center; gap: .45rem; font-size: .72rem;
  font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.badge-icon { color: var(--gold); }
@keyframes fadeUp { from{opacity:0;transform:translateY(22px)} to{opacity:1;transform:translateY(0)} }
.scroll-cue { position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .4rem;
  color: var(--muted); font-size: .62rem; letter-spacing: .2em; text-transform: uppercase;
  animation: bob 2s ease-in-out infinite; }
.scroll-line { width: 1px; height: 38px; background: linear-gradient(to bottom,var(--gold),transparent); }
@keyframes bob { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* SHARED */
section { position: relative; z-index: 1; }
.section-inner { max-width: 1120px; margin: 0 auto; padding: 6rem 2.5rem; }
.section-label { font-size: .68rem; font-weight: 700; letter-spacing: .3em;
  text-transform: uppercase; color: var(--gold); margin-bottom: .85rem; }
.section-title { font-family: 'Outfit', sans-serif;
  font-size: clamp(1.5rem,2.8vw,2.3rem); color: var(--ivory);
  line-height: 1.3; margin-bottom: 1.8rem; }
.divider { width: 56px; height: 2px;
  background: linear-gradient(to right,var(--gold),transparent); margin-bottom: 2.5rem; }
  
.page-header { padding: 10rem 2.5rem 4rem; text-align: center; background: linear-gradient(180deg, var(--deep), var(--navy)); }
.page-content { padding: 4rem 2.5rem; max-width: 900px; margin: 0 auto; font-family: 'Inter', sans-serif; font-size: 1.18rem; line-height: 1.85; }
.page-content p { margin-bottom: 1.5rem; }
.page-content ul { margin-left: 2rem; margin-bottom: 1.5rem; }
.page-content h2, .page-content h3 { font-family: 'Outfit', sans-serif; color: var(--gold-light); margin: 2.5rem 0 1rem; }

/* ABOUT */
.about-section { background: var(--navy); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.about-body { font-family: 'Inter', sans-serif; font-size: 1.18rem;
  line-height: 1.85; color: var(--cream); font-weight: 300; }
.about-body p+p { margin-top: 1.4rem; }
.about-body em { font-style: italic; color: var(--gold-light); }
.stats-col { display: flex; flex-direction: column; gap: 2.2rem; }
.stat-item { border-left: 2px solid var(--gold); padding-left: 1.4rem; }
.stat-number { font-family: 'Outfit', sans-serif; font-size: 2.3rem;
  color: var(--gold-light); line-height: 1; }
.stat-label { font-size: .72rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted); margin-top: .25rem; }
.stat-sub { font-family: 'Inter', sans-serif; font-size: .92rem;
  font-style: italic; color: var(--cream); margin-top: .35rem; opacity: .75; }

/* MISSION QUOTE */
.mission-section { background: linear-gradient(135deg,var(--deep) 0%,var(--navy) 100%); }
.mission-quote { max-width: 820px; margin: 0 auto; text-align: center; padding: 5rem 2rem; }
.quote-mark { font-family: 'Outfit', sans-serif; font-size: 5rem;
  color: var(--gold); opacity: .22; line-height: .4; display: block; margin-bottom: 1.4rem; }
.quote-text { font-family: 'Inter', sans-serif;
  font-size: clamp(1.3rem,2.2vw,1.9rem); font-style: italic;
  line-height: 1.65; color: var(--ivory); }
.quote-attr { margin-top: 1.8rem; font-size: .72rem; letter-spacing: .2em;
  text-transform: uppercase; color: var(--gold); font-weight: 600; }

/* PROGRAMS */
.programs-section { background: var(--navy); padding-bottom: 5rem; }
.day-tabs { display: flex; gap: 1rem; margin-bottom: 3rem; flex-wrap: wrap; }
.day-tab { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); cursor: pointer;
  padding: 0.8rem 2.5rem; font-family: 'Outfit', sans-serif;
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted); border-radius: 50px;
  transition: all 0.3s ease; }
.day-tab.active { background: linear-gradient(135deg, var(--red), #8a0c0c); color: var(--ivory); border-color: transparent; box-shadow: 0 4px 20px rgba(230,32,32,0.4); }
.day-tab:hover:not(.active) { background: rgba(255,255,255,0.08); color: var(--ivory); border-color: rgba(255,255,255,0.2); transform: translateY(-2px); }
.schedule-panel { display: none; animation: fadeIn 0.4s ease; }
.schedule-panel.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.schedule-table { width: 100%; border-collapse: collapse; background: rgba(255,255,255,0.02); border-radius: 12px; overflow: hidden; }
.schedule-table thead tr { background: rgba(230,32,32,0.12); border-bottom: 2px solid rgba(230,32,32,0.3); }
.schedule-table th { padding: 1rem 1.5rem; text-align: left;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold); }
.schedule-table td { padding: 1.2rem 1.5rem; vertical-align: top;
  border-bottom: 1px solid rgba(255,255,255,0.05); }
.schedule-table tbody tr:last-child td { border-bottom: none; }
.schedule-table tr:hover td { background: rgba(230,32,32,0.05); transition: background 0.2s; }
.time-col { font-family: 'Inter', sans-serif; font-size: 0.78rem;
  font-weight: 700; letter-spacing: 0.05em; color: var(--gold);
  white-space: nowrap; width: 185px; }
.prog-name { font-family: 'Inter', sans-serif; font-size: .88rem;
  font-weight: 700; color: var(--ivory); margin-bottom: .3rem; }
.prog-name span { font-weight: 400; color: var(--gold); font-size: .78rem; }
.prog-desc { font-family: 'Inter', sans-serif; font-size: 1.02rem;
  color: var(--cream); opacity: .82; line-height: 1.55; }
.prog-tag { display: inline-block; font-size: .6rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; padding: .18rem .55rem;
  border-radius: 2px; border: 1px solid rgba(230, 32, 32,.32);
  color: var(--gold); margin-top: .45rem; }

/* COVERAGE */
.coverage-section { background: linear-gradient(180deg,var(--deep),var(--navy)); }
.coverage-intro { font-family: 'Inter', sans-serif; font-size: 1.18rem;
  line-height: 1.8; color: var(--cream); max-width: 700px; margin-bottom: 2.8rem; }
.districts-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(150px,1fr));
  gap: .9rem; margin-bottom: 2.8rem; }
.district-chip { background: rgba(230, 32, 32,.07); border: 1px solid rgba(230, 32, 32,.2);
  border-radius: 4px; padding: .7rem 1rem; text-align: center;
  font-size: .74rem; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: var(--cream);
  transition: background .3s, border-color .3s; }
.district-chip:hover { background: rgba(230, 32, 32,.17); border-color: var(--gold); }
.reach-banner { background: linear-gradient(135deg,rgba(230, 32, 32,.14),rgba(230, 32, 32,.04));
  border: 1px solid rgba(230, 32, 32,.3); border-radius: 6px;
  padding: 2rem 2.5rem; display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
.reach-number { font-family: 'Outfit', sans-serif; font-size: 2.8rem;
  color: var(--gold-light); line-height: 1; white-space: nowrap; }
.reach-text { font-family: 'Inter', sans-serif; font-size: 1.12rem;
  line-height: 1.65; color: var(--cream); }

/* VALUES */
.values-section { background: var(--navy); }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; }
.value-item { padding: 2.8rem 2.4rem;
  border-right: 1px solid rgba(230, 32, 32,.13);
  border-bottom: 1px solid rgba(230, 32, 32,.13); }
.value-item:nth-child(3n) { border-right: none; }
.value-item:nth-last-child(-n+3) { border-bottom: none; }
.value-num { font-family: 'Outfit', sans-serif; font-size: .65rem;
  color: var(--gold); letter-spacing: .2em; margin-bottom: .85rem; }
.value-title { font-family: 'Inter', sans-serif; font-size: 1.35rem;
  font-weight: 600; color: var(--ivory); margin-bottom: .65rem; }
.value-body { font-family: 'Inter', sans-serif; font-size: .98rem;
  line-height: 1.7; color: var(--cream); opacity: .8; }

/* CONTACT */
.contact-section { background: linear-gradient(180deg,var(--navy),var(--deep)); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.offices { display: flex; flex-direction: column; gap: 2rem; }
.office-block { background: rgba(255,255,255,.03); border: 1px solid rgba(230, 32, 32,.18);
  border-radius: 6px; padding: 1.8rem 2rem; }
.office-tag { font-size: .65rem; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.office-detail { font-family: 'Inter', sans-serif; font-size: 1.05rem;
  line-height: 1.8; color: var(--cream); }
.office-detail strong { color: var(--ivory); font-weight: 600; }
.contact-links { margin-top: 1.1rem; display: flex; flex-direction: column; gap: .55rem; }
.contact-link { display: flex; align-items: center; gap: .65rem;
  font-family: 'Inter', sans-serif; font-size: .75rem; color: var(--muted);
  text-decoration: none; transition: color .3s; }
.contact-link:hover { color: var(--gold-light); }
.contact-icon { color: var(--gold); font-size: .9rem; }
.cta-box { background: linear-gradient(135deg,rgba(230, 32, 32,.18),rgba(230, 32, 32,.05));
  border: 1px solid rgba(230, 32, 32,.38); border-radius: 8px; padding: 3rem; }
.cta-title { font-family: 'Outfit', sans-serif; font-size: 1.25rem;
  color: var(--gold-light); margin-bottom: 1rem; }
.cta-body { font-family: 'Inter', sans-serif; font-size: 1.1rem;
  line-height: 1.7; color: var(--cream); margin-bottom: 2rem; }
.listen-btn { display: inline-flex; align-items: center; gap: .75rem;
  background: var(--gold); color: var(--ivory); font-family: 'Inter', sans-serif;
  font-size: .76rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase;
  text-decoration: none; padding: .9rem 2rem; border-radius: 3px;
  transition: background .3s, transform .2s; }
.listen-btn:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-dot { width: 8px; height: 8px; background: var(--ivory); border-radius: 50%;
  animation: blink 1.4s ease-in-out infinite; }

/* FOOTER */
footer { background: #03070d; border-top: 1px solid rgba(230, 32, 32,.18);
  padding: 2.8rem 4rem; display: flex;
  justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1.5rem; }
.footer-brand { font-family: 'Outfit', sans-serif; font-size: .88rem; color: var(--gold-light); }
.footer-center { text-align: center; }
.footer-verse { font-family: 'Inter', sans-serif; font-style: italic;
  font-size: .9rem; color: var(--muted); max-width: 340px; }
.footer-copy { font-size: .6rem; color: rgba(122,144,164,.45); letter-spacing: .1em; margin-top: .4rem; }
.footer-freq { font-family: 'Outfit', sans-serif; font-size: 1.3rem;
  color: var(--gold); opacity: .5; }

/* RESPONSIVE */
@media(max-width:900px){
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .values-grid { grid-template-columns: 1fr; }
  .value-item { border-right: none; }
  .day-tabs { flex-wrap: wrap; width: 100%; }
  .day-tab { flex: 1; }
}

.mobile-menu-toggle { display: none; }

/* ENHANCEMENTS */
.sticky-player { position: fixed; bottom: 0; left: 0; right: 0; z-index: 99;
  background: rgba(6, 11, 20, 0.95); backdrop-filter: blur(15px);
  border-top: 1px solid rgba(230, 32, 32, 0.3); padding: 1rem 4rem;
  display: flex; justify-content: space-between; align-items: center; }
.player-info { display: flex; align-items: center; gap: 1rem; }
.player-icon { font-size: 1.8rem; color: var(--gold); }
.player-title { font-family: 'Outfit', sans-serif; color: var(--ivory); font-size: 1rem; font-weight: 700; }
.player-sub { font-size: 0.75rem; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; }
.player-play-btn { background: var(--gold); color: var(--ivory); border: none; padding: 0.6rem 1.5rem;
  border-radius: 30px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
  display: flex; align-items: center; gap: 0.5rem; cursor: pointer; transition: all 0.3s; }
.player-play-btn:hover { background: var(--gold-light); transform: scale(1.05); }

.enhancement-section { padding: 5rem 2.5rem; background: var(--navy); }
.enhancement-section.alt-bg { background: linear-gradient(180deg, var(--deep), var(--navy)); }

.voices-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-top: 3rem; }
.voice-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(230, 32, 32, 0.15); border-radius: 8px;
  overflow: hidden; text-align: center; transition: transform 0.3s, border-color 0.3s; }
.voice-card:hover { transform: translateY(-5px); border-color: var(--gold); }
.voice-img { width: 100%; height: 250px; background: #0a1324; display: flex; align-items: center; justify-content: center; font-size: 3rem; color: rgba(255,255,255,0.1); border-bottom: 2px solid var(--gold); }
.voice-info { padding: 1.5rem; }
.voice-name { font-family: 'Outfit', sans-serif; color: var(--ivory); font-size: 1.2rem; margin-bottom: 0.5rem; }
.voice-show { font-size: 0.8rem; color: var(--gold); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; }
.voice-verse { font-size: 0.9rem; color: var(--gold); font-weight: 700; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.1em; }
.voice-reason { font-family: 'Inter', sans-serif; font-size: 1.1rem; color: var(--cream); font-style: italic; line-height: 1.5; opacity: 0.9; text-align: left; }

/* Calendar */
.calendar-card { background: rgba(6, 11, 20, 0.5); border: 1px solid rgba(230, 32, 32, 0.15); border-radius: 8px; padding: 3rem; max-width: 1000px; margin: 0 auto; }
.calendar-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; }
.month-item { display: flex; align-items: center; gap: 1rem; background: rgba(255,255,255,0.02); padding: 1rem 1.5rem; border-radius: 6px; border-left: 3px solid var(--gold); transition: transform 0.3s, background 0.3s; }
.month-item:hover { transform: translateX(5px); background: rgba(255,255,255,0.05); }
.month-num { font-family: 'Outfit', sans-serif; font-size: 1.8rem; color: rgba(230, 32, 32, 0.5); font-weight: 700; width: 30px; text-align: center; }
.month-text { display: flex; flex-direction: column; text-align: left; }
.month-name { font-family: 'Inter', sans-serif; font-size: 1rem; color: var(--ivory); font-weight: 700; }
.month-eng { font-size: 0.8rem; color: var(--gold); text-transform: uppercase; letter-spacing: 0.1em; }

.quick-actions-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 2rem; }
.action-card { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 3rem 2rem;
  background: linear-gradient(135deg, rgba(230, 32, 32, 0.08), rgba(6, 11, 20, 0.5));
  border: 1px solid rgba(230, 32, 32, 0.2); border-radius: 8px; text-decoration: none; transition: all 0.3s; }
.action-card:hover { background: rgba(230, 32, 32, 0.15); transform: translateY(-3px); }
.action-icon { font-size: 2.5rem; margin-bottom: 1rem; color: var(--gold-light); }
.action-title { font-family: 'Inter', sans-serif; font-size: 1.1rem; color: var(--ivory); font-weight: 700; margin-bottom: 0.5rem; }
.action-desc { font-family: 'Inter', sans-serif; font-size: 1rem; color: var(--cream); opacity: 0.8; }

.testimony-card { padding: 3rem; background: rgba(6, 11, 20, 0.6); border-left: 3px solid var(--gold); margin-bottom: 2rem; max-width: 800px; margin-left: auto; margin-right: auto; }
.testimony-text { font-family: 'Inter', sans-serif; font-size: 1.4rem; font-style: italic; color: var(--ivory); line-height: 1.6; margin-bottom: 1.5rem; }
.testimony-author { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--gold); font-weight: 700; }

.news-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 3rem; }
.news-card { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); border-radius: 6px; padding: 2rem; transition: background 0.3s; }
.news-card:hover { background: rgba(255,255,255,0.05); }
.news-date { font-size: 0.7rem; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.8rem; display: block; }
.news-title { font-family: 'Outfit', sans-serif; font-size: 1.3rem; color: var(--ivory); text-decoration: none; line-height: 1.4; display: block; margin-bottom: 1rem; }
.news-title:hover { color: var(--gold-light); }
.news-excerpt { font-family: 'Inter', sans-serif; font-size: 1rem; color: var(--cream); opacity: 0.8; }

@media(max-width:900px){
  .quick-actions-grid { grid-template-columns: 1fr; }
  .sticky-player { padding: 1rem; flex-direction: column; gap: 1rem; text-align: center; }
  body { padding-bottom: 120px; } /* Ensure content isn't hidden behind stacked sticky player */
  
  /* Mobile Menu */
  .mobile-menu-toggle { display: block; background: none; border: none; color: var(--ivory); cursor: pointer; }
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: rgba(6, 11, 20, 0.95); backdrop-filter: blur(12px); flex-direction: column; padding: 2rem; gap: 1.5rem; text-align: center; border-bottom: 1px solid rgba(230, 32, 32, 0.18); }
  .nav-links.active { display: flex; }
}

/* Single Post & Blog */
.post-thumbnail-wrap { max-width: 900px; margin: 0 auto 2rem; border-radius: 8px; overflow: hidden; }
.single-content { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); border-radius: 8px; padding: 3rem !important; margin-bottom: 3rem !important; }
.post-nav { display: flex; justify-content: space-between; max-width: 900px; margin: 0 auto 4rem; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; }
.post-nav a { color: var(--gold); text-decoration: none; transition: color 0.3s; }
.post-nav a:hover { color: var(--gold-light); }
.read-more-link { display: inline-block; margin-top: 1.5rem; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); text-decoration: none; transition: color 0.3s; }
.read-more-link:hover { color: var(--gold-light); }
.pagination-wrap { display: flex; justify-content: center; gap: 1rem; margin-top: 3rem; margin-bottom: 3rem; }
.pagination-wrap .nav-links { display: flex; gap: 1rem; position: static; background: none; border: none; flex-direction: row; padding: 0; }
.pagination-wrap .page-numbers { display: inline-block; padding: 0.5rem 1rem; border: 1px solid rgba(230, 32, 32, 0.3); border-radius: 4px; color: var(--ivory); text-decoration: none; transition: all 0.3s; }
.pagination-wrap .page-numbers:hover, .pagination-wrap .page-numbers.current { background: var(--gold); color: var(--ivory); border-color: var(--gold); }

/* ULTRA MODERN HEADER */
.site-header { position: sticky; top: 0; z-index: 1000; padding: 1.5rem 2rem 0; pointer-events: none; }
.header-container { pointer-events: auto; max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; padding: 0.8rem 1.5rem; background: rgba(10, 18, 30, 0.6); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 50px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); transition: all 0.3s ease; }
.nav-brand { display: flex; align-items: center; }
.nav-logo-img { height: 35px; object-fit: contain; border-radius: 50%; }
.nav-center { display: flex; flex: 1; justify-content: center; }
.nav-links { display: flex; gap: 2rem; list-style: none; padding: 0; margin: 0; }
.nav-links a { color: var(--ivory); text-decoration: none; font-size: 0.9rem; font-weight: 500; transition: color 0.3s; padding: 0.5rem 0; position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--gold); transition: width 0.3s ease; }
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--gold); }
.nav-actions { display: flex; align-items: center; }
.nav-cta-btn { background: linear-gradient(135deg, var(--red), #8a0c0c); color: var(--ivory); font-weight: 600; text-transform: uppercase; font-size: 0.8rem; padding: 0.7rem 1.5rem; border-radius: 30px; text-decoration: none; letter-spacing: 0.05em; transition: all 0.3s; box-shadow: 0 4px 15px rgba(230, 32, 32, 0.3); }
.nav-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(230, 32, 32, 0.5); }

/* REDESIGNED FOOTER */
.site-footer { background: #03070d; border-top: 2px solid rgba(230, 32, 32, 0.3); padding: 4rem 4rem 2rem; color: var(--muted); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.5fr 1fr; gap: 3rem; margin-bottom: 4rem; }
.footer-logo { max-width: 150px; margin-bottom: 1.5rem; display: block; border-radius: 4px; }
.footer-desc { font-family: 'Inter', sans-serif; line-height: 1.6; max-width: 300px; font-size: 0.95rem; }
.footer-heading { color: var(--ivory); font-family: 'Outfit', sans-serif; font-size: 1.2rem; margin-bottom: 1.5rem; position: relative; padding-bottom: 0.5rem; }
.footer-heading::after { content: ''; position: absolute; left: 0; bottom: 0; width: 40px; height: 2px; background: var(--gold); }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.8rem; }
.footer-links a { color: var(--muted); text-decoration: none; transition: color 0.3s; }
.footer-links a:hover { color: var(--gold); }
.footer-contact-list { list-style: none; padding: 0; margin: 0; }
.footer-contact-list li { margin-bottom: 1rem; }
.footer-contact-list span { color: var(--ivory); font-weight: 600; margin-right: 0.5rem; display: inline-block; width: 80px; }
.footer-socials { display: flex; gap: 1rem; }
.footer-socials a { width: 40px; height: 40px; background: rgba(255,255,255,0.05); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--ivory); text-decoration: none; transition: all 0.3s; font-weight: 600; font-size: 0.85rem; }
.footer-socials a:hover { background: var(--gold); color: #000; transform: translateY(-3px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem; text-align: center; }
.footer-copy { font-size: 0.85rem; letter-spacing: 0.05em; }

/* PHOTO GALLERY */
.gallery-masonry { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.gallery-item { border-radius: 8px; overflow: hidden; position: relative; aspect-ratio: 4/3; }
.gallery-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover .gallery-img { transform: scale(1.08); }

@media(max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .nav-actions { display: none; }
}
@media(max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
}
