/*
Theme Name: Anand Gurukul
Theme URI: https://anandgurukul.org
Author: Anand Gurukul Team
Author URI: https://anandgurukul.org
Description: A beautiful spiritual WordPress theme for Anand Gurukul. Experience divine blessings through daily darshan, sacred kirtans, and spiritual content.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: anand-gurukul
Tags: one-column, two-columns, custom-header, custom-menu, featured-images, translation-ready
*/

/* ===== CSS Variables / Design Tokens ===== */
:root {
  --background: hsl(35, 50%, 97%);
  --foreground: hsl(25, 40%, 15%);
  --card: hsl(35, 40%, 95%);
  --card-foreground: hsl(25, 40%, 15%);
  --primary: hsl(25, 95%, 50%);
  --primary-foreground: hsl(0, 0%, 100%);
  --secondary: hsl(35, 60%, 90%);
  --secondary-foreground: hsl(25, 40%, 15%);
  --muted: hsl(35, 30%, 90%);
  --muted-foreground: hsl(25, 20%, 40%);
  --accent: hsl(40, 90%, 55%);
  --accent-foreground: hsl(25, 40%, 15%);
  --border: hsl(35, 30%, 85%);
  --radius: 0.75rem;

  --gradient-primary: linear-gradient(135deg, hsl(25, 95%, 50%) 0%, hsl(35, 90%, 55%) 50%, hsl(40, 90%, 55%) 100%);
  --gradient-card: linear-gradient(145deg, hsl(35, 40%, 97%) 0%, hsl(35, 45%, 93%) 100%);
  --gradient-gold: linear-gradient(135deg, hsl(40, 90%, 55%) 0%, hsl(35, 85%, 50%) 100%);

  --shadow-soft: 0 4px 20px -4px hsla(25, 50%, 30%, 0.15);
  --shadow-card: 0 8px 30px -8px hsla(25, 50%, 30%, 0.2);
  --shadow-glow: 0 0 40px hsla(25, 95%, 50%, 0.3);

  --font-heading: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===== WordPress Required ===== */
.wp-caption {}
.wp-caption-text {}
.sticky {}
.screen-reader-text {}
.gallery-caption {}
.bypostauthor {}

.alignright { float: right; margin-left: 1rem; }
.alignleft { float: left; margin-right: 1rem; }
.aligncenter { display: block; margin: 0 auto; }

/* ===== Utilities ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1rem; }
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.mt-12 { margin-top: 3rem; }

/* ===== Animations ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.animate-fade-in-up {
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
}

/* ===== Badge ===== */
.badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: hsla(25, 95%, 50%, 0.2);
  color: var(--primary);
  font-weight: 500;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}
.badge-small {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: hsla(25, 95%, 50%, 0.1);
  color: var(--primary);
  font-weight: 500;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

/* ===== Buttons ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 500;
  color: var(--primary-foreground);
  background: var(--gradient-primary);
  box-shadow: var(--shadow-soft);
  transition: all 0.3s;
}
.btn-primary:hover {
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 500;
  border: 2px solid var(--primary);
  color: var(--primary);
  transition: all 0.3s;
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--primary-foreground);
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: hsla(35, 50%, 97%, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}
@media (min-width: 768px) { .header-inner { height: 5rem; } }

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.logo-icon {
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-foreground);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem;
}
@media (min-width: 768px) { .logo-icon { width: 3rem; height: 3rem; font-size: 1.25rem; } }
.logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--foreground);
  display: flex;
  align-items: center;
  max-height: 100%;
  overflow: hidden;
}
.logo-text img {
  max-width: 200px;
  max-height: 3rem;
  width: auto;
  height: auto;
  object-fit: contain;
}
@media (min-width: 768px) { .logo-text { font-size: 1.5rem; } }
@media (min-width: 768px) { .logo-text img { max-height: 4rem; } }

.nav-menu {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-desktop { display: none; }
@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 2rem;
    padding: 0;
  }
  .nav-desktop .nav-menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
  }
  .nav-desktop li {
    margin: 0;
    padding: 0;
  }
  .nav-desktop a {
    display: block;
    color: var(--muted-foreground);
    font-weight: 500;
    font-size: 0.9375rem;
    transition: color 0.3s;
    padding: 0.5rem;
    text-decoration: none;
  }
  .nav-desktop a:hover { color: var(--primary); }
}

.menu-toggle {
  padding: 0.5rem;
  color: var(--foreground);
}
@media (min-width: 768px) { .menu-toggle { display: none; } }

.nav-mobile {
  display: none;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
}
.nav-mobile.open { display: block; }
.nav-mobile a {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--muted-foreground);
  font-weight: 500;
  transition: color 0.3s;
}
.nav-mobile a:hover { color: var(--primary); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, hsla(35,50%,97%,0.7), hsla(35,50%,97%,0.5), var(--background));
}
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding-top: 5rem;
}
.hero-content h1 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--foreground);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
@media (min-width: 768px) { .hero-content h1 { font-size: 3.75rem; } }
@media (min-width: 1024px) { .hero-content h1 { font-size: 4.5rem; } }

.badge.animate-fade-in-up {
  padding: 0.75rem 1.5rem;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.15) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  backdrop-filter: blur(15px) saturate(180%);
  -webkit-backdrop-filter: blur(15px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--foreground);
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  padding: 1.5rem 2rem;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.12) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  backdrop-filter: blur(25px) saturate(200%);
  -webkit-backdrop-filter: blur(25px) saturate(200%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 1rem;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  line-height: 1.7;
}
@media (min-width: 768px) { .hero-subtitle { font-size: 1.25rem; } }

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}
.hero-actions .btn-primary,
.hero-actions .btn-outline {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
@media (min-width: 640px) { .hero-actions { flex-direction: row; } }

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: float 3s ease-in-out infinite;
}
.scroll-mouse {
  width: 1.5rem; height: 2.5rem;
  border-radius: 9999px;
  border: 2px solid hsla(25,95%,50%,0.5);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 0.5rem;
}
.scroll-dot {
  width: 0.375rem; height: 0.75rem;
  border-radius: 9999px;
  background: var(--primary);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* ===== SECTIONS ===== */
.section { padding: 5rem 0; }
@media (min-width: 768px) { .section { padding: 7rem 0; } }
.section-alt { background: hsla(35, 60%, 90%, 0.3); }

.section-header { text-align: center; margin-bottom: 3rem; }
.section-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.875rem;
  color: var(--foreground);
  margin-bottom: 1rem;
}
@media (min-width: 768px) { .section-title { font-size: 2.25rem; } }
.section-subtitle {
  color: var(--muted-foreground);
  max-width: 42rem;
  margin: 0 auto;
}

/* ===== Card Spiritual ===== */
.card-spiritual {
  border-radius: var(--radius);
  padding: 1.5rem;
  background: var(--gradient-card);
  box-shadow: var(--shadow-soft);
  transition: all 0.3s;
}
.card-spiritual:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
}

/* ===== DARSHAN ===== */
.darshan-card {
  max-width: 56rem;
  margin: 0 auto;
}
.darshan-card {
  border-radius: var(--radius);
  padding: 1.5rem;
  background: var(--gradient-card);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.darshan-image-wrap {
  position: relative;
}
.darshan-image-wrap img {
  width: 100%; height: 16rem;
  object-fit: cover;
  border-radius: var(--radius);
}
@media (min-width: 768px) { .darshan-image-wrap img { height: 24rem; } }
.darshan-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  padding: 0.5rem 1rem;
  background: var(--primary);
  color: var(--primary-foreground);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
}
.darshan-info {
  text-align: center;
  margin-top: 1.5rem;
}
.darshan-date {
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.darshan-info h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.darshan-desc {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}
.darshan-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.darshan-tags span {
  padding: 0.5rem 1rem;
  background: var(--secondary);
  border-radius: 9999px;
  font-size: 0.875rem;
  color: var(--secondary-foreground);
}

/* ===== YOUTUBE VIDEOS ===== */
.youtube-featured {
  max-width: 56rem;
  margin: 0 auto;
  position: relative;
}
.youtube-video-wrap {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}
.youtube-video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.youtube-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  background: #ff0000;
  color: white;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
}
.live-indicator {
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}
.youtube-placeholder {
  max-width: 56rem;
  margin: 0 auto;
  padding: 4rem 2rem;
  background: var(--gradient-card);
  border-radius: var(--radius);
  text-align: center;
}
.youtube-placeholder-small {
  padding: 3rem 2rem;
}
.youtube-placeholder-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.youtube-placeholder-content i {
  width: 3rem;
  height: 3rem;
  color: var(--primary);
}
.youtube-placeholder-content p {
  color: var(--muted-foreground);
  max-width: 30rem;
}
.youtube-videos-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1;
}
@media (min-width: 640px) { .youtube-videos-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .youtube-videos-grid { grid-template-columns: repeat(3, 1fr); } }
.youtube-video-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--gradient-card);
  box-shadow: var(--shadow-soft);
  transition: all 0.3s;
  cursor: pointer;
}
.youtube-video-card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
}
.youtube-video-thumb {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.youtube-video-thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.youtube-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(255, 0, 0, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
}
.youtube-video-card:hover .youtube-video-play {
  opacity: 1;
}
.youtube-video-card:hover .youtube-video-play {
  transform: translate(-50%, -50%) scale(1.1);
}
.youtube-video-play i {
  color: white;
  width: 24px;
  height: 24px;
  margin-left: 4px;
}
.youtube-video-duration {
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
  padding: 0.25rem 0.5rem;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: 500;
}
.youtube-video-info {
  padding: 1rem;
}
.youtube-video-title {
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0.5rem;
}
.youtube-video-meta {
  font-size: 0.8125rem;
  color: var(--muted-foreground);
}
.youtube-video-skeleton {
  background: linear-gradient(90deg, var(--muted) 25%, var(--card) 50%, var(--muted) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius);
}
.youtube-video-skeleton:nth-child(1) { padding-bottom: 56.25%; }
.youtube-video-skeleton:nth-child(2) { padding-bottom: 56.25%; }
.youtube-video-skeleton:nth-child(3) { padding-bottom: 56.25%; }
.youtube-video-skeleton:nth-child(4) { padding-bottom: 56.25%; }
.youtube-video-skeleton:nth-child(5) { padding-bottom: 56.25%; }
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.youtube-channel-link {
  margin-top: 2rem;
}
.youtube-channel-link i {
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.5rem;
}

/* ===== VIDEO MODAL ===== */
.video-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.video-modal.open {
  display: flex;
}

.video-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
}

.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 900px;
  z-index: 10000;
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.video-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.video-modal-close:hover {
  background: rgba(255, 255, 255, 0.3);
}

.video-modal-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.video-modal-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 640px) {
  .video-modal-content {
    width: 95%;
  }
}

/* ===== KIRTAN ===== */
.kirtan-grid {
  display: grid;
  gap: 2rem;
  max-width: 72rem;
  margin: 0 auto;
}
@media (min-width: 1024px) { .kirtan-grid { grid-template-columns: 1fr 1fr; } }

.kirtan-featured {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  height: 16rem;
}
@media (min-width: 1024px) { .kirtan-featured { height: auto; } }
.kirtan-featured img { width: 100%; height: 100%; object-fit: cover; }
.kirtan-featured-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, hsla(25,40%,15%,0.6), transparent);
}
.kirtan-featured-text {
  position: absolute;
  bottom: 1.5rem; left: 1.5rem; right: 1.5rem;
}
.kirtan-featured-text h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--background);
  margin-bottom: 0.5rem;
}
.kirtan-featured-text p { color: hsla(35,50%,97%,0.8); }

.kirtan-list { display: flex; flex-direction: column; gap: 0.75rem; }

.kirtan-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: var(--radius);
  background: var(--gradient-card);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  transition: all 0.3s;
}
.kirtan-item:hover { box-shadow: var(--shadow-card); transform: translateY(-2px); }
.kirtan-item.playing {
  background: linear-gradient(135deg, hsla(25, 95%, 50%, 0.1), hsla(35, 90%, 55%, 0.15));
  border: 1px solid hsla(25, 95%, 50%, 0.3);
}
.kirtan-item.playing .kirtan-play-btn {
  background: var(--primary);
  animation: pulse-glow 1.5s infinite;
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.4); }
  50% { box-shadow: 0 0 0 8px rgba(255, 107, 0, 0); }
}
.kirtan-item.playing .kirtan-play-btn svg { color: var(--primary-foreground); }
.kirtan-play-btn {
  width: 3rem; height: 3rem;
  border-radius: 50%;
  background: hsla(25, 95%, 50%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s;
}
.kirtan-item:hover .kirtan-play-btn { background: var(--primary); }
.kirtan-play-btn svg { color: var(--primary); width: 1.25rem; height: 1.25rem; }
.kirtan-item:hover .kirtan-play-btn svg { color: var(--primary-foreground); }

.kirtan-details { flex: 1; min-width: 0; }
.kirtan-details h4 {
  font-weight: 500;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.kirtan-details p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.kirtan-album-tag {
  display: inline-block;
  font-size: 0.7rem;
  color: var(--primary);
  background: rgba(255, 215, 0, 0.15);
  padding: 2px 8px;
  border-radius: 10px;
  margin-right: 8px;
}
.kirtan-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--muted-foreground);
  flex-shrink: 0;
}
.kirtan-meta svg { width: 1rem; height: 1rem; }
.kirtan-meta span { font-size: 0.875rem; }

.kirtan-view-all {
  width: 100%;
  padding: 1rem;
  text-align: center;
  color: var(--primary);
  font-weight: 500;
  border-radius: var(--radius);
  transition: background 0.3s;
}
.kirtan-view-all:hover { background: hsla(25, 95%, 50%, 0.05); }

/* ===== WALLPAPERS ===== */
.wallpaper-grid {
  display: grid;
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto;
}
@media (min-width: 768px) { .wallpaper-grid { grid-template-columns: 1fr 1fr; } }

.wallpaper-card {
  border-radius: var(--radius);
  padding: 1.5rem;
  background: var(--gradient-card);
  box-shadow: var(--shadow-soft);
  transition: all 0.3s;
}
.wallpaper-card:hover { box-shadow: var(--shadow-card); transform: translateY(-4px); }

.wallpaper-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  margin-bottom: 1rem;
}
.wallpaper-img { width: 100%; object-fit: contain; transition: transform 0.5s; }
.wallpaper-mobile { height: 20rem; }
.wallpaper-desktop { height: 14rem; }
.wallpaper-card:hover .wallpaper-img { transform: scale(1.05); }

.wallpaper-hover {
  position: absolute; inset: 0;
  background: hsla(25,40%,15%,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.wallpaper-card:hover .wallpaper-hover { background: hsla(25,40%,15%,0.2); }
.wallpaper-hover .btn-download {
  opacity: 0;
  transition: opacity 0.3s;
}
.wallpaper-card:hover .wallpaper-hover .btn-download { opacity: 1; }
.wallpaper-hover .btn-download svg { width: 1rem; height: 1rem; }

.wallpaper-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wallpaper-info h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.wallpaper-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}
.wallpaper-meta svg { width: 1rem; height: 1rem; }

.wallpaper-dl-btn {
  width: 3rem; height: 3rem;
  border-radius: 50%;
  background: hsla(25, 95%, 50%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: all 0.3s;
}
.wallpaper-dl-btn:hover {
  background: var(--primary);
  color: var(--primary-foreground);
}
.wallpaper-dl-btn svg { width: 1.25rem; height: 1.25rem; }

/* ===== FOOTER ===== */
.footer {
  background: var(--foreground);
  color: var(--background);
  padding: 4rem 0;
}
.footer-grid {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }

.footer-brand .logo { margin-bottom: 1rem; }
.footer-brand .logo-icon { background: var(--primary); }
.footer-desc {
  color: hsla(35,50%,97%,0.7);
  margin-bottom: 1.5rem;
  max-width: 28rem;
}
.social-links { display: flex; gap: 0.75rem; }
.social-icon {
  width: 3rem; height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsla(35,50%,97%,0.1);
  color: var(--background);
  transition: all 0.3s;
}
.social-icon:hover {
  background: var(--gradient-primary);
  box-shadow: var(--shadow-glow);
  transform: scale(1.1);
  color: var(--primary-foreground);
}
.social-icon svg { width: 1.25rem; height: 1.25rem; }

.footer-heading {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}
.footer-links li { margin-bottom: 0.75rem; }
.footer-links a {
  color: hsla(35,50%,97%,0.7);
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--primary); }

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: hsla(35,50%,97%,0.7);
}
.footer-contact svg {
  width: 1.25rem; height: 1.25rem;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid hsla(35,50%,97%,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}
.footer-bottom p {
  font-size: 0.875rem;
  color: hsla(35,50%,97%,0.5);
}

/* ===== WordPress Specific ===== */
.site-content {
  padding-top: 5rem;
}

.site-main {
  min-height: 60vh;
}

.entry-title {
  font-family: var(--font-heading);
  font-weight: 700;
}

.entry-content {
  margin: 2rem 0;
}

.entry-meta {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.comments-area {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.comment-list {
  list-style: none;
}

.comment-body {
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: var(--card);
  border-radius: var(--radius);
}

.widget {
  margin-bottom: 2rem;
}

.widget-title {
  font-family: var(--font-heading);
  font-weight: 600;
  margin-bottom: 1rem;
}

.widget ul {
  list-style: none;
}

.widget li {
  margin-bottom: 0.5rem;
}

/* ===== Responsive Utilities ===== */
@media (max-width: 767px) {
  .hide-mobile { display: none; }
}

@media (min-width: 768px) {
  .hide-desktop { display: none; }
}

/* ===== ABOUT SECTION ===== */
.about-section {
  padding: 80px 0;
  background: var(--background);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.about-image::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--primary);
  border-radius: var(--radius);
  z-index: -1;
}

.about-content {
  padding: 20px 0;
}

.about-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--foreground);
}

.about-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--muted-foreground);
  margin-bottom: 30px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}

.feature-item i {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

.about-content .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
