/* CSS Variables for Consistent Theming */
:root {
  --primary-gold: #d4af37;
  --secondary-gold: #ffd700;
  --accent-gold: #b8860b;
  --deep-saffron: #ff9933;
  --light-saffron: #ffcc99;
  --temple-brown: #8b4513;
  --dark-brown: #654321;
  --cream: #fff8dc;
  --light-cream: #fffef7;
  --text-dark: #2c1810;
  --text-light: #ffffff;
  --shadow-light: rgba(212, 175, 55, 0.2);
  --shadow-medium: rgba(139, 69, 19, 0.3);
  --shadow-dark: rgba(44, 24, 16, 0.4);
  --gradient-gold: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
  --gradient-saffron: linear-gradient(135deg, var(--deep-saffron), var(--light-saffron));
  --border-radius: 12px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Noto Sans Devanagari", "Playfair Display", serif;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--light-cream);
  overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Cinzel", serif;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.sanskrit {
  font-family: "Noto Sans Devanagari", serif;
  font-weight: 700;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(139, 69, 19, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: var(--transition);
  border-bottom: 2px solid var(--primary-gold);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--secondary-gold);
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
}

.nav-icon {
  font-size: 1.8rem;
  color: var(--primary-gold);
}

.nav-title {
  font-family: "Noto Sans Devanagari", serif;
}

.nav-menu {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav-link {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  transition: var(--transition);
  font-size: 0.95rem;
}

.nav-link:hover,
.nav-link.active {
  background: var(--gradient-gold);
  color: var(--text-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px var(--shadow-light);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.bar {
  width: 25px;
  height: 3px;
  background: var(--secondary-gold);
  transition: var(--transition);
  border-radius: 2px;
}

/* Hero Section - Made Smaller */
.hero {
  height: 70vh;
  background: linear-gradient(rgba(44, 24, 16, 0.4), rgba(139, 69, 19, 0.6)), url("/static/images/hero.jpg") center /
    cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: 70px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, transparent 0%, rgba(44, 24, 16, 0.3) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 2rem;
}

.hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text-light);
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-title .sanskrit {
  display: block;
  font-size: 0.7em;
  color: var(--secondary-gold);
  margin-bottom: 0.5rem;
}

.hero-title .english {
  display: block;
  font-family: "Cinzel", serif;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--light-cream);
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(38, 33, 33, 0.7);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Hero Buttons - Fixed Clickability */
.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 10;
  min-width: 160px;
}

.hero-btn.btn-primary {
  background: var(--gradient-gold);
  color: var(--text-dark);
  box-shadow: 0 4px 15px var(--shadow-light);
}

.hero-btn.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px var(--shadow-medium);
}

.hero-btn.btn-secondary {
  background: transparent;
  color: var(--text-light);
  border: 2px solid var(--secondary-gold);
}

.hero-btn.btn-secondary:hover {
  background: var(--secondary-gold);
  color: var(--text-dark);
  transform: translateY(-3px);
}

/* Regular Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: var(--gradient-gold);
  color: var(--text-dark);
  box-shadow: 0 4px 15px var(--shadow-light);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px var(--shadow-medium);
}

.btn-secondary {
  background: transparent;
  color: var(--text-light);
  border: 2px solid var(--secondary-gold);
}

.btn-secondary:hover {
  background: var(--secondary-gold);
  color: var(--text-dark);
  transform: translateY(-3px);
}

.btn-outline {
  background: transparent;
  color: var(--primary-gold);
  border: 2px solid var(--primary-gold);
}

.btn-outline:hover {
  background: var(--primary-gold);
  color: var(--text-light);
}

/* Sections */
section {
  padding: 4rem 0;
  position: relative;
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  color: var(--temple-brown);
  margin-bottom: 2.5rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--gradient-gold);
  border-radius: 2px;
}

.section-icon {
  font-size: 1.5rem;
  color: var(--primary-gold);
}

/* Daily Quote Section */
.daily-quote {
  background: var(--gradient-saffron);
  color: var(--text-light);
}

.quote-card {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.quote-icon {
  font-size: 2.5rem;
  color: var(--secondary-gold);
  margin-bottom: 1rem;
}

.quote-text {
  font-size: 1.3rem;
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.quote-source {
  font-size: 1rem;
  color: var(--light-cream);
  font-weight: 500;
}

/* Events Section */
.upcoming-events {
  background: var(--light-cream);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.event-card {
  background: var(--text-light);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 10px 30px var(--shadow-light);
  transition: var(--transition);
  display: flex;
  border-left: 4px solid var(--primary-gold);
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px var(--shadow-medium);
}

.event-date {
  background: var(--gradient-gold);
  padding: 1.5rem;
  text-align: center;
  color: var(--text-dark);
  min-width: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.date-day {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.date-month {
  font-size: 0.9rem;
  font-weight: 500;
}

.event-content {
  padding: 1.5rem;
  flex: 1;
}

.event-title {
  color: var(--temple-brown);
  margin-bottom: 0.5rem;
}

.event-time {
  color: var(--accent-gold);
  margin-bottom: 1rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.time-icon {
  font-size: 0.8rem;
}

.event-description {
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.event-link {
  color: var(--primary-gold);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.event-link:hover {
  color: var(--temple-brown);
}

/* Gallery Section */
.gallery-preview {
  background: var(--cream);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.gallery-item {
  position: relative;
  height: 250px;
  border-radius: var(--border-radius);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--gradient-gold);
  color: var(--text-dark);
  padding: 1rem;
  transform: translateY(100%);
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-title {
  font-weight: 600;
  text-align: center;
}

.gallery-cta {
  text-align: center;
}

/* CTA Section */
.cta-section {
  background: var(--gradient-gold);
  color: var(--text-dark);
  text-align: center;
}

.cta-title {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.cta-description {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Flash Messages */
.flash-messages {
  position: fixed;
  top: 90px;
  right: 20px;
  z-index: 1001;
  max-width: 400px;
}

.flash-message {
  background: var(--text-light);
  border-left: 4px solid var(--primary-gold);
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 15px var(--shadow-light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  animation: slideIn 0.3s ease-out;
}

.flash-icon {
  color: var(--primary-gold);
  font-size: 1.2rem;
}

.flash-close {
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  margin-left: auto;
  color: var(--text-dark);
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Footer */
.footer {
  background: var(--dark-brown);
  color: var(--text-light);
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
  color: var(--secondary-gold);
  margin-bottom: 1rem;
}

.footer-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.3rem;
}

.footer-icon {
  font-size: 1.5rem;
  color: var(--primary-gold);
}

.footer-description {
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--text-light);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--secondary-gold);
}

.contact-info p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.contact-icon {
  color: var(--primary-gold);
  font-size: 0.9rem;
}

.footer-bottom {
  border-top: 1px solid var(--temple-brown);
  padding-top: 1rem;
  text-align: center;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: var(--temple-brown);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 2rem;
    transition: var(--transition);
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  .hero {
    height: 60vh;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .events-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }

  .container {
    padding: 0 1rem;
  }

  .section-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 1.8rem;
  }

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

  .quote-text {
    font-size: 1.1rem;
  }

  .event-card {
    flex-direction: column;
  }

  .event-date {
    min-width: auto;
    padding: 1rem;
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.mb-1 {
  margin-bottom: 0.5rem;
}
.mb-2 {
  margin-bottom: 1rem;
}
.mb-3 {
  margin-bottom: 1.5rem;
}
.mt-1 {
  margin-top: 0.5rem;
}
.mt-2 {
  margin-top: 1rem;
}
.mt-3 {
  margin-top: 1.5rem;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Scroll Animations */
.scroll-reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease-out;
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}











/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(139, 69, 19, 0.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: all 0.3s ease;
  border-bottom: 1px solid var(--primary-gold);
  box-shadow: 0 2px 10px rgba(218, 165, 32, 0.2);
}

/* PC layout */
.nav-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 55px; /* Reduced height */
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--secondary-gold);
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
}

.nav-icon {
  font-size: 1.5rem;
  color: var(--primary-gold);
}

.nav-title {
  font-family: "Noto Sans Devanagari", serif;
}

.nav-menu {
  display: flex;
  gap: 0.8rem; /* tighter gap */
  align-items: center;
  flex-wrap: wrap;
  overflow-x: auto;
  scrollbar-width: none;
}

.nav-menu::-webkit-scrollbar {
  display: none;
}

.nav-link {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  padding: 0.4rem 0.6rem;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-size: 0.85rem;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  background: linear-gradient(to right, #f3e5ab, #daa520);
  color: #000;
  transform: translateY(-1px);
  box-shadow: 0 2px 6px rgba(218, 165, 32, 0.4);
}

/* Toggle (hidden in desktop) */
.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
  z-index: 1002;
}

.bar {
  width: 22px;
  height: 2.5px;
  background: var(--secondary-gold);
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* -------------------- MOBILE -------------------- */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 55px;
    left: -100%;
    width: 100%;
    max-height: 90vh;
    background: rgba(9, 9, 9, 0.65); /* More see-through */
    backdrop-filter: blur(60px); /* Extra blur */
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 1rem 0;
    transition: all 0.3s ease;
    overflow-y: auto;
    box-shadow: 0 8px 25px rgba(218, 165, 32, 0.3);
    border-radius: 0 0 16px 16px;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-link {
    width: 95%;
    text-align: center;
    padding: 0.9rem;
    margin: 0.2rem 0;
    font-size: 1rem;
  }

  .nav-link:hover,
  .nav-link.active {
    background: var(--gradient-gold);
    color: var(--text-dark);
    transform: none;
    box-shadow: 0 4px 10px rgba(218, 165, 32, 0.3);
  }

  .nav-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 4px);
  }

  .nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -4px);
  }

  body.nav-open {
    overflow: hidden;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .nav-container {
    padding: 0 0.5rem;
  }

  .nav-brand {
    font-size: 1rem;
  }

  .nav-icon {
    font-size: 1.4rem;
  }

  .nav-link {
    font-size: 0.95rem;
    padding: 0.8rem;
  }
}

/* Optional: Overlay effect */
@media (max-width: 768px) {
  .nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .nav-overlay.active {
    opacity: 1;
    visibility: visible;
  }
}




























/* Footer */
.footer {
  background: var(--dark-brown);
  color: var(--text-light);
  padding: 3rem 0 1rem;
  margin-top: 4rem; /* Add space from content above */
}

.footer-content {
  max-width: 1200px; /* Container width */
  margin: 0 auto; /* Center the container */
  padding: 0 2rem; /* Add horizontal padding */
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section {
  padding: 0 1rem; /* Add padding to each section */
}

.footer-section h3,
.footer-section h4 {
  color: var(--secondary-gold);
  margin-bottom: 1rem;
}

.footer-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.2rem;
}

.footer-icon {
  font-size: 1.5rem;
  color: var(--primary-gold);
}

.footer-description {
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0; /* Remove default padding */
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--text-light);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--secondary-gold);
}

.contact-info p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.contact-icon {
  color: var(--primary-gold);
  font-size: 0.9rem;
}

.footer-bottom {
  border-top: 1px solid var(--temple-brown);
  padding-top: 1.5rem;
  margin-top: 2rem;
}

.footer-bottom-content {
  max-width: 1200px; /* Container width */
  margin: 0 auto; /* Center the container */
  padding: 0 2rem; /* Add horizontal padding */
  text-align: center; /* Center all text */
  display: flex;
  flex-direction: column; /* Stack vertically */
  align-items: center; /* Center align items */
  gap: 0.5rem; /* Space between lines */
}

.footer-bottom-content p {
  margin: 0; /* Remove default margins */
  line-height: 1.4;
}

.footer-bottom-content p:first-child {
  font-weight: 500; /* Make copyright slightly bolder */
  color: var(--light-cream);
}

.footer-bottom-content p:last-child {
  color: var(--light-cream);
  font-weight: 500; /* Make copyright slightly bolder */
}
.footer-bottom-content p:last-child .dev-link {
  color: var(--light-cream);
  font-weight: 500;
  text-decoration: none; /* Optional: remove underline */
}
.footer-bottom-content p:last-child a {
  color: #FFD700; /* Soft gold */
  font-weight: 500;
  text-decoration: none;
  cursor: pointer; /* 👈 makes it feel clickable */
  text-shadow: 1px 1px 4px rgba(255, 215, 0, 0.6);
  transition: all 0.3s ease;
}

.footer-bottom-content p:last-child a:hover {
  color: #ffffff; /* White */
  text-shadow: 2px 2px 8px rgba(255, 215, 0, 0.9);
  transform: scale(1.03); /* 👈 slightly grows on hover */
  text-decoration: underline; /* optional: adds underline on hover */
}

.footer-bottom-content p:last-child a:active {
  transform: scale(0.98); /* 👈 press-down effect */
  text-shadow: 0 0 4px rgba(255, 255, 255, 0.5); /* quick flash */
}
.footer-bottom-content p:last-child a {
  color: #FFD700;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  text-shadow: 1px 1px 4px rgba(255, 215, 0, 0.6);
  transition: all 0.3s ease;
  padding: 6px 2px;  /* adds space for easy tapping */
  display: inline-block;
}

.footer-bottom-content p:last-child a:hover {
  color: #ffffff;
  text-shadow: 2px 2px 8px rgba(255, 215, 0, 0.9);
  transform: scale(1.03);
  text-decoration: underline;
}

.footer-bottom-content p:last-child a:active {
  transform: scale(0.96);
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.5);
}
@media (max-width: 600px) {
  .footer-bottom-content p:last-child a {
    text-shadow: 0px 0px 4px rgba(255, 215, 0, 0.4); /* softer on mobile */
    font-size: 1rem; /* adjust size */
  }
}






/* Footer Responsive Design */
@media (max-width: 768px) {
  .footer {
    padding: 2rem 0 1rem; /* Reduce padding on mobile */
    margin-top: 3rem; /* Reduce top margin on mobile */
  }
  
  .footer-content {
    padding: 0 1rem; /* Reduce horizontal padding on mobile */
    gap: 1.5rem; /* Reduce gap on mobile */
  }
  
  .footer-section {
    padding: 0 0.5rem; /* Reduce section padding on mobile */
  }
  
  .footer-bottom-content {
    padding: 0 1rem; /* Reduce horizontal padding on mobile */
    gap: 0.75rem; /* Increase gap between lines on mobile */
  }
  
  .footer-bottom-content p {
    font-size: 0.9rem; /* Slightly smaller text on mobile */
  }
}

@media (max-width: 480px) {
  .footer-content {
    padding: 0 0.5rem; /* Further reduce padding on very small screens */
  }
  
  .footer-bottom-content {
    padding: 0 0.5rem;
  }
  
  .footer-bottom-content p {
    font-size: 0.85rem; /* Even smaller text on very small screens */
  }
}