@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Lora:wght@400;500;600;700&family=Playfair+Display:wght@400;500;600;700&family=Poppins:wght@300;400;500;600&display=swap");

:root {
  --primary-color: #8a1538;
  --primary-light: #a52347;
  --primary-dark: #701230;
  --secondary-color: #d4af37;
  --secondary-light: #e9c860;
  --secondary-dark: #b39429;
  --accent-color: #4a7b47;
  --background-color: #f9f6f0;
  --card-bg: rgba(255, 255, 255, 0.92);
  --text-color: #3a2723;
  --text-muted: #6d5c58;
  --border-color: rgba(138, 21, 56, 0.15);
  --border-radius: 8px;
  --border-radius-sm: 4px;
  --shadow: 0 10px 30px rgba(138, 21, 56, 0.12);
  --shadow-sm: 0 5px 15px rgba(138, 21, 56, 0.08);
  --transition: all 0.3s ease;
  --font-heading: "Cormorant Garamond", "Playfair Display", serif;
  --font-body: "Poppins", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-body);
}

body {
  background-color: var(--background-color);
  color: var(--text-color);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  position: relative;
  overflow-x: hidden;
  line-height: 1.6;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%238a1538' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}


.instruction-text {
  font-size: 0.9rem;
  margin-top: 12px;
  color: #555;
  max-width: 400px;
  text-align: center;
  line-height: 1.4;
  white-space: normal; /* Fixed: Changed from nowrap to normal */
  word-wrap: break-word; /* Added for better text wrapping */
}

.instruction-text i {
  font-style: italic;
}

.container {
  width: 100%;
  max-width: 550px;
  z-index: 1;
  perspective: 1000px;
  padding: 20px; /* Added padding */
  margin: 0 auto; /* Center the container */
}

/* Enhanced card with 3D effects */
.card {
  background-color: var(--card-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  transform-style: preserve-3d;
  transform: translateZ(0);
  transition: var(--transition);
  animation: cardEntrance 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
  
}

/* Enhanced card entrance animation */
@keyframes cardEntrance {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.9) rotateX(10deg);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1) rotateX(0);
  }
}

/* Enhanced shimmer effect */
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, transparent, rgba(212, 175, 55, 0.1), transparent);
  transform: translateX(-100%);
  transition: transform 1.5s ease;
}

.card:hover::before {
  transform: translateX(100%);
}

/* Enhanced top border gradient */
.card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  background-size: 200% 100%;
  animation: gradientMove 3s linear infinite;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 200% 0%;
  }
}

/* Base heading style */
h1 {
  color: var(--primary-color);
  margin-bottom: 1.25rem;
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  font-family: var(--font-heading);
  letter-spacing: -0.025em;
  line-height: 1.2;
  position: relative;
  display: inline-block;
  transform: translateY(0);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Underline animation */
h1::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transform: scaleX(0.6);
  transform-origin: center;
  transition: transform 0.3s ease;
}

/* Hover effects inside card */
.card:hover h1 {
  transform: translateY(-5px);
}
.card:hover h1::after {
  transform: scaleX(1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  h1 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.25rem;
  }
}


h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--text-color);
  font-weight: 600;
  font-family: var(--font-heading);
  transition: transform 0.3s ease;
}

.card:hover h2 {
  transform: translateY(-3px);
}

h3 {
  font-size: 1.375rem;
  margin-bottom: 0.75rem;
  color: var(--text-color);
  font-weight: 600;
  font-family: var(--font-heading);
  transition: transform 0.3s ease;
}

.card:hover h3 {
  transform: translateY(-2px);
}

p {
  margin-bottom: 1.5rem;
  line-height: 1.7;
  text-align: center;
  color: var(--text-muted);
  transition: opacity 0.3s ease;
  white-space: normal; /* Fixed: Changed from nowrap to normal */
  word-wrap: break-word; /* Added for better text wrapping */
}

.card:hover p {
  opacity: 0.9;
}

/* Enhanced button container with 3D perspective */
.button-container {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin: 2rem 0;
  flex-wrap: wrap;
  perspective: 1000px;
}

/* Enhanced button with interactive effects */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  color: white;
  padding: 0.875rem 1.75rem;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  font-size: 1rem;
  box-shadow: 0 4px 10px rgba(138, 21, 56, 0.2);
  position: relative;
  overflow: hidden;
  z-index: 1;
  transform-style: preserve-3d;
}

/* Enhanced button gradient background */
.button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(130deg, var(--primary-light), var(--primary-dark));
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
}

/* Enhanced button hover effects */
.button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 15px rgba(138, 21, 56, 0.3);
}

.button:hover::before {
  opacity: 1;
}

.button:active {
  transform: translateY(-1px) scale(0.98);
}

/* Secondary button styles */
.button.secondary {
  background-color: var(--secondary-color);
  box-shadow: 0 4px 10px rgba(212, 175, 55, 0.2);
}

.button.secondary::before {
  background: linear-gradient(130deg, var(--secondary-light), var(--secondary-dark));
}

.button.secondary:hover {
  box-shadow: 0 6px 15px rgba(212, 175, 55, 0.3);
}

/* Enhanced button shine effect */
.button::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  opacity: 0;
  transform: scale(0.5);
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.button:hover::after {
  opacity: 1;
  transform: scale(1);
}

.button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* Enhanced pulse animation */
.pulse {
  animation: buttonPulse 2s infinite;
}

@keyframes buttonPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(138, 21, 56, 0.6);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(138, 21, 56, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(138, 21, 56, 0);
  }
}

/* Enhanced QR details with hover effects */
.qr-details {
  background-color: rgba(255, 255, 255, 0.7);
  border: 5px solid var(--border-color); /* Subtle border */
  border-radius: 0.8rem; /* More curvy edge */
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border-color);
  backdrop-filter: blur(10px);
  transform: translateZ(0);
  transition: var(--transition);
}

.qr-details:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-sm);
  background-color: rgba(255, 255, 255, 0.85);
}

/* Enhanced detail items with hover effects */
.detail-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-size: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px dashed var(--border-color);
  transition: all 0.3s ease;
  padding: 0.5rem;
  border-radius: 4px;
}

.detail-item:hover {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  transform: translateX(5px);
}

.detail-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

/* Enhanced highlight with animated underline */
.highlight {
  font-weight: 700;
  color: var(--primary-color);
  position: relative;
  display: inline-block;
}

.highlight::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--primary-color);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.detail-item:hover .highlight::after {
  transform: scaleX(1);
  transform-origin: left;
}

.qr-code-container {
  display: flex;
  justify-content: center;
  margin: 2rem 0;
  position: relative;
  background: linear-gradient(135deg, #fffbe6 0%, #f7e7f3 100%); /* Soft pastel gradient */
  border-radius: 24px; /* Rounded corners for a card-like look */
  padding: 2rem;       /* Space around the QR code */
  box-shadow: 0 2px 12px rgba(0,0,0,0.04); /* Optional: soft shadow for depth */
  /* Remove 3D perspective if not needed */
  /* perspective: 1000px; */
}

.qr-code-container canvas {
  background: #fff; /* White background for QR code itself */
  border-radius: 16px; /* Slight rounding for QR code */
  border: none;
  box-shadow: none;
  max-width: 100%;
  height: auto;
  transition: none;
  transform: none;
}


.info-box {
  background: #fff; /* Solid white background for a textbox look */
  border: 5px solid var(--border-color); /* Subtle border */
  border-radius: 2rem; /* More curvy edge */
  padding: 1.5rem;
  margin: 1.75rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: none;
  box-shadow: none;
  color: var(--text-color); /* Ensure readable text */
}



/* Enhanced QR reader with interactive effects */
#qr-reader {
  width: 100%;
  margin: 0 auto;
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.5s ease;
}

#qr-reader:hover {
  transform: scale(1.02) translateY(-5px);
  box-shadow: var(--shadow);
}

#qr-reader__scan_region {
  background: white;
  transition: background 0.3s ease;
}

#qr-reader:hover #qr-reader__scan_region {
  background: rgba(255, 255, 255, 0.9);
}

#qr-reader__dashboard_section_swaplink {
  color: var(--primary-color) !important;
  transition: color 0.3s ease, transform 0.3s ease !important;
}

#qr-reader__dashboard_section_swaplink:hover {
  color: var(--primary-light) !important;
  transform: translateX(3px) !important;
}

#qr-reader__dashboard_section_csr button {
  background-color: var(--primary-color) !important;
  border-radius: var(--border-radius) !important;
  padding: 8px 16px !important;
  border: none !important;
  color: white !important;
  cursor: pointer !important;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
  position: relative !important;
  overflow: hidden !important;
}

#qr-reader__dashboard_section_csr button:hover {
  background-color: var(--primary-dark) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 5px 15px rgba(138, 21, 56, 0.3) !important;
}

#qr-reader__dashboard_section_csr button::after {
  content: "" !important;
  position: absolute !important;
  top: -50% !important;
  left: -50% !important;
  width: 200% !important;
  height: 200% !important;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%) !important;
  opacity: 0 !important;
  transform: scale(0.5) !important;
  transition: transform 0.6s ease, opacity 0.6s ease !important;
}

#qr-reader__dashboard_section_csr button:hover::after {
  opacity: 1 !important;
  transform: scale(1) !important;
}





@keyframes pulse-ring {
  0% {
    transform: scale(0.33) translateZ(0);
    opacity: 1;
  }
  80%, 100% {
    transform: scale(1) translateZ(10px);
    opacity: 0;
  }
}

/* Enhanced staff section with animation */
.staff-section {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  text-align: center;
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  transition: transform 0.3s ease;
}

.staff-section:hover {
  transform: translateY(-3px);
}

/* Enhanced animations */
.animate-in {
  animation: cardEntrance 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px) rotateX(5deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Enhanced pulse animation */
.pulse {
  position: relative;
}

.pulse::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 9999px;
  animation: pulse 2s infinite;
  z-index: -1;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(138, 21, 56, 0.6);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(138, 21, 56, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(138, 21, 56, 0);
  }
}

/* Add floating spice particles that appear on hover */
.card:hover::after {
  animation: spiceParticleEmit 10s linear infinite;
}

@keyframes spiceParticleEmit {
  0%, 100% {
    box-shadow: 
      calc(var(--x, 0) * 1px) calc(var(--y, 0) * 1px) 0 rgba(212, 175, 55, 0.1),
      calc(var(--x, 0) * -2px) calc(var(--y, 0) * 2px) 0 rgba(138, 21, 56, 0.1),
      calc(var(--x, 0) * 3px) calc(var(--y, 0) * -3px) 0 rgba(74, 123, 71, 0.1);
  }
  25% {
    --x: 10;
    --y: -10;
  }
  50% {
    --x: -10;
    --y: -5;
  }
  75% {
    --x: 5;
    --y: 10;
  }
}

/* Add steam effect to buttons */
.button:hover::before {
  animation: steamRise 2s infinite;
}

@keyframes steamRise {
  0% {
    opacity: 0;
    transform: translateY(0) scale(1);
  }
  50% {
    opacity: 0.5;
    transform: translateY(-20px) scale(1.5);
  }
  100% {
    opacity: 0;
    transform: translateY(-40px) scale(0.5);
  }
}

/* Add subtle plate rotation on hover */
.card {
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.card:hover {
  transform: rotate(1deg) translateY(-5px);
}

/* MOBILE RESPONSIVE IMPROVEMENTS */

/* Responsive styles */
@media (max-width: 768px) {
  body {
    padding: 10px;
  }

  .container {
    max-width: 100%;
  }

  .card {
    padding: 1.5rem;
    margin: 0.5rem 0;
  }

  /* Disable 3D effects on mobile for better performance */
  .card:hover {
    transform: translateY(-2px);
  }

  h1 {
    font-size: 1.75rem;
    line-height: 1.3;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  .button {
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
    width: 100%;
    margin-bottom: 0.75rem;
  }

  .button-container {
    flex-direction: column;
    gap: 0.75rem;
  }

  .stats-container {
    flex-direction: column;
    gap: 1rem;
  }

  .stat-box {
    padding: 1rem;
  }

  .stat-number {
    font-size: 1.75rem;
  }

  .dashboard-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .detail-row {
    flex-direction: column;
    gap: 0.5rem;
  }

  .detail-label {
    width: 100%;
    margin-bottom: 0.25rem;
  }

  .action-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }

  .action-buttons .button {
    min-width: auto;
    width: 100%;
  }

  .user-info {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .user-avatar {
    margin-right: 0;
    margin-bottom: 0.5rem;
  }

  .qr-code-container canvas {
    max-width: 280px;
    border-width: 8px;
  }

  .highlight-box .number {
    font-size: 2rem;
  }

  .visit-count {
    padding: 1rem;
    font-size: 1rem;
  }

  #visitCountNumber {
    font-size: 2rem;
  }

  
  .card {
    padding: 1.25rem;
    border-radius: 6px;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  h3 {
    font-size: 1.125rem;
  }

  .button {
    padding: 0.625rem 1rem;
    font-size: 0.8rem;
  }

  .form-group {
    margin-bottom: 1.25rem;
  }

  input[type="text"],
  input[type="email"],
  input[type="password"],
  select {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }

  .stat-box {
    padding: 0.75rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }

  .detail-section {
    padding: 1.25rem;
  }

  .highlight-box {
    padding: 1.5rem;
    font-size: 1rem;
  }

  .highlight-box .number {
    font-size: 1.75rem;
  }

  .qr-code-container canvas {
    max-width: 240px;
    border-width: 6px;
  }

  .instruction-text {
    font-size: 0.8rem;
    max-width: 100%;
    padding: 0 0.5rem;
  }
  /* Disable complex animations on very small screens */
  .card:hover {
    transform: none;
  }

  .button:hover {
    transform: translateY(-1px);
  }

  .stat-box:hover {
    transform: translateY(-2px);
  }

  .dashboard-card:hover {
    transform: translateY(-2px);
  }
}

/* Landscape orientation adjustments for mobile */
@media (max-width: 768px) and (orientation: landscape) {
  body {
    padding: 8px;
  }

  .card {
    padding: 1.25rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  .qr-code-container canvas {
    max-width: 200px;
  }
}

/* High DPI screens adjustments */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .food-item {
    filter: blur(0.5px);
  }
}

/* Accessibility improvements for mobile */
@media (max-width: 768px) {
  .button {
    min-height: 44px; /* Minimum touch target size */
  }

  input[type="text"],
  input[type="email"],
  input[type="password"],
  select {
    min-height: 44px;
  }

  /* Ensure text is readable */
  p, .instruction-text {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  /* Better spacing for touch interfaces */
  .form-group {
    margin-bottom: 1.5rem;
  }

  .button-container {
    gap: 1rem;
  }
}
/* Add this to your existing CSS */
#downloadBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}


/* foooterrrrrrrrr */
/* foooterrrrrrrrr */
.footer {
  text-align: center;
  padding: 1rem;
  font-size: 0.85rem;
  background: linear-gradient(135deg, rgba(138, 21, 56, 0.05), rgba(212, 175, 55, 0.05));
  color: var(--primary-color);
  border-top: 1px solid var(--border-color);
  border-radius: 0 0 var(--border-radius) var(--border-radius);
  font-family: var(--font-body);
  position: relative;
  margin-top: 2rem;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.4rem; /* Space between logo and text */
}

.footer strong {
  color: var(--secondary-color);
  font-weight: 600;
}

.footer a.footer-link {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a.footer-link:hover {
  color: #1d4d8b;
}

/* Logo style */
.footer-logo {
  width: 20px;
  height: 20px;
  vertical-align: middle;
}



/* Mobile responsive */
@media (max-width: 768px) {
  .footer {
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.75rem;
    font-size: 0.8rem;
    margin-top: 1rem;
  }

  .footer-logo {
    margin-bottom: 0.25rem;
  }
}

.divine-decoration {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

.feather-float,
.flute-float {
  position: absolute;
  opacity: 0.07;
  max-width: 300px;
  animation: divineFloat 60s infinite linear;
  filter: blur(1px);
}

.feather-float {
  top: 10%;
  left: 5%;
  transform: rotate(-20deg);
}

.flute-float {
  bottom: 10%;
  right: 10%;
  transform: rotate(15deg);
}

@keyframes divineFloat {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-30px) rotate(5deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}
.title-wrapper {
  position: relative;
  text-align: center;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px; /* adjust based on your design */
}

.title-wrapper h1 {
  position: relative;
  z-index: 2;
  margin: 0;
  padding: 0 1rem;
}

.krishna-bg {
  position: absolute;
  top: 35%;
  left: 5%;
  transform: translate(-50%, -50%);
  height: 120px;
  opacity: 1;
  z-index: 1;
  pointer-events: none;
}
.krishna-blessing {
  text-align: center;
  margin-bottom: 1.5rem;
  animation: floatKrishna 8s ease-in-out infinite;
}

.krishna-blessing img {
  max-width: 150px;
  opacity: 0.9;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.1));
  transition: transform 0.3s ease;
}


/* Logo in header styles */
.header-with-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.25rem;
}

.header-logo {
    height: 60px; /* Adjust based on your logo's aspect ratio */
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.header-logo:hover {
    transform: scale(1.05);
}

/* Heading styling */
.header-with-logo h1 {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 700;
    font-family: var(--font-heading);
    letter-spacing: -0.025em;
    line-height: 1.2;
    margin: 0;
    position: relative;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Tablet view */
@media (max-width: 768px) {
    .header-logo {
        height: 50px;
    }

    .header-with-logo h1 {
        font-size: 1.75rem;
    }
}

/* Mobile view */
@media (max-width: 480px) {
    .header-logo {
        height: 40px;
    }

    .header-with-logo h1 {
        font-size: 1.4rem;
    }
}
/* --- REMOVE ANIMATION AND HOVER FROM CARD, HEADINGS, STAFF PORTAL, FOOTER --- */

/* Remove card entrance and hover animation */
.card,
.card:hover {
  animation: none !important;
  transition: none !important;
  transform: none !important;
}

/* Remove shimmer and border gradient animation */
.card::before,
.card::after,
.card:hover::before,
.card:hover::after {
  content: none !important;
  animation: none !important;
  transition: none !important;
}

/* Remove Loyalty Card underline */
h1::after {
  content: none !important;
  display: none !important;
}

/* Remove heading hover effect */
.card:hover h1,
.card:hover h1::after {
  transform: none !important;
  transition: none !important;
}


/* Remove staff portal hover */
.staff-section:hover {
  transform: none !important;
  transition: none !important;
}



/* --- KEEP ONLY GOVINDA'S LOGO HOVER --- */
.header-logo {
  transition: transform 0.3s ease;
}
.header-logo:hover {
  transform: scale(1.05);
}

/* --- REMOVE ALL OTHER UNNECESSARY ANIMATION/HOVER --- */

/* Remove floating and shimmer animations */
@keyframes cardEntrance {}
@keyframes gradientMove {}
@keyframes shimmer {}
@keyframes buttonPulse {}
@keyframes pulse {}
@keyframes spiceParticleEmit {}
@keyframes steamRise {}
@keyframes floatKrishna {}
@keyframes divineFloat {}

/* Remove QR details, detail-item, info-box, etc. hover/animation */
.qr-details:hover,
.detail-item:hover,
.detail-item:hover .highlight::after,
.info-box:hover,
.info-box:hover::before,
.qr-code-container:hover::before,
.qr-code-container:hover canvas,
.qr-code-container:hover::after {
  transform: none !important;
  box-shadow: none !important;
  background: none !important;
  opacity: 1 !important;
  transition: none !important;
}

/* Remove highlight underline animation */
.highlight::after {
  content: none !important;
  display: none !important;
}

/* Remove pulse animation from .pulse class */
.pulse,
.pulse::before {
  animation: none !important;
}

/* Remove floating divine decoration animation */
.feather-float,
.flute-float {
  animation: none !important;
}

/* Remove shimmer, steam, spice, and other effect classes */
.card::before,
.card::after,
.button::after,
.button:hover::after,
.button::before,
.button:hover::before {
  animation: none !important;
  transition: none !important;
}


/* --- END PATCH --- */
