/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ============================================
   SMOOTH SCROLLING WITH OFFSET FOR FIXED BANNER
   ============================================ */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 180px; /* This accounts for your fixed banner */
}

/* Alternative: Apply to specific elements if needed */
.subject-detail {
  scroll-margin-top: 180px; /* Backup method */
}

/* ============================================
   BODY & BACKGROUND ANIMATION
   Rainbow pastel colors that cycle smoothly
   ============================================ */
body {
  font-family: system-ui, 'Segoe UI', 'Inter', sans-serif;
  min-height: 100vh;
  animation: rainbowPastelFlow 24s infinite ease-in-out alternate;
  margin: 0;
  padding: 100px 2rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  overflow-x: hidden;
}

@keyframes rainbowPastelFlow {
  0% { background: #B5D8FF; }
  16% { background: #FFB5D9; }
  33% { background: #D4B5FF; }
  50% { background: #B5FFC8; }
  66% { background: #FFF0A3; }
  83% { background: #FFCD94; }
  100% { background: #B5D8FF; }
}

/* ============================================
   SPARKLE STYLES
   Floating sparkles inside container only
   ============================================ */


/* Background Sparkles - No floating, just rotate in place */
.background-sparkle {
  position: fixed;
  pointer-events: none;
  z-index: 999;
  font-size: 20px;
  opacity: 0.7;
  transition: all 1.5s ease-out;
  animation: twinkleSparkle 2s ease-out forwards;
}

@keyframes twinkleSparkle {
  0% {
    transform: scale(0.5) rotate(0deg);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.2) rotate(180deg);
    opacity: 1;
  }
  100% {
    transform: scale(0.3) rotate(360deg);
    opacity: 0;
  }
}

.sparkle {
  position: absolute;
  pointer-events: none;
  user-select: none;
  z-index: 100;
  animation: floatSparkle 2s ease-out forwards;
}

@keyframes floatSparkle {
  0% {
    transform: scale(0.5) rotate(0deg);
    opacity: 1;
  }
  50% {
    transform: scale(1.2) rotate(180deg);
    opacity: 0.8;
  }
  100% {
    transform: scale(0.3) rotate(360deg);
    opacity: 0;
  }
}

/* ============================================
   FIXED BANNER
   Sticky header with its own pastel animation
   ============================================ */
.page-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: #E8F0FF;
  animation: bannerPastelFlow 24s infinite ease-in-out alternate;
  border-radius: 0;
  padding: 20px;
  width: 100%;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  border-bottom: 1px solid rgba(250, 239, 84, 0.3);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  box-sizing: border-box;
  text-align: center;
}

.banner-icon i {
  font-size: 60px;
  color: #faef54;
  filter: drop-shadow(0 0 10px rgba(250, 239, 84, 0.5));
}

.banner-image {
  width: 100%;
  max-width: 1200px;
  height: auto;
  display: block;
  margin: 0 auto;
}

@keyframes bannerPastelFlow {
  0% { background: #E8F0FF; }
  16% { background: #FFE0F0; }
  33% { background: #EBE0FF; }
  50% { background: #E0FFE8; }
  66% { background: #FFF8D6; }
  83% { background: #FFE8D0; }
  100% { background: #E8F0FF; }
}

/* ============================================
   MAIN CONTAINER
   White card that holds all content
   Position relative so sparkles stay inside
   ============================================ */
.container {
  width: 90%;
  max-width: 1200px;
  background: rgb(241, 241, 241);
  border-radius: 2rem;
  padding: 2rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  position: relative;
  z-index: 10;
  margin: 0 auto;
  overflow: visible;
}

/* ============================================
   MOBILE FULL-SCREEN CONTAINER
   ============================================ */

/* Default (desktop/tablet) - keeps the card look */
.container {
  width: 90%;
  max-width: 1200px;
  background: rgb(241, 241, 241);
  border-radius: 2rem;
  padding: 2rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  position: relative;
  z-index: 10;
  margin: 0 auto;
  overflow: visible;
}

/* Mobile phones (width 600px or less) */
@media (max-width: 600px) {
  body {
    padding: 80px 0 0 0;  /* Remove side padding, keep top padding for banner */
  }
  
  .container {
    width: 100%;           /* Take full width */
    max-width: 100%;       /* Remove max-width limit */
    border-radius: 0;      /* Remove rounded corners on mobile */
    padding: 1.5rem;       /* Slightly less padding */
    margin: 0;             /* Remove auto margins */
  }
  
  /* Optional: Add back some breathing room */
  .details-container {
    border-radius: 20px;   /* Keep some rounding inside */
    margin: 20px 0;
    padding: 20px 15px;
  }
  
  /* Make buttons full width on mobile */
  .btn-contact {
    display: block;
    width: 100%;
    text-align: center;
    margin: 8px 0;
  }
  
  .contact-buttons {
    flex-direction: column;
    gap: 10px;
  }
  
  /* Make Treasure Box button full width */
  .treasure-box-btn {
    display: block;
    width: 100%;
    text-align: center;
  }
  
  /* Adjust spacing for hero text */
  .hero-text h2 {
    font-size: 1.2rem;
  }
  
  .hero-text h1 {
    font-size: 1.8rem;
  }
  
  .subtitle {
    font-size: 0.9rem;
  }
}

/* ============================================
   HERO SECTION
   Title, subtitle, and gradient text
   ============================================ */
.hero-text {
  text-align: center;
  margin-bottom: 2rem;
}

h1 {
  font-size: 2rem;
  font-weight: 500;
  margin-top: 20px;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
  color: #595e6b;
}

h2 {
  font-size: 1.5rem;
  font-weight: 300;
  margin-top: 20px;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
  color: #595e6b;
}

h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
  color: #0f172a;
  text-align: center;
}

.gradient-text {
  background: linear-gradient(135deg, #3b82f6, #ec489a, #8b5cf6, #22c55e, #eab308);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.subtitle {
  font-size: 1.1rem;
  color: #475569;
  margin-top: 0.5rem;
}

/* ============================================
   SUBJECT CARDS GRID
   Clickable cards with colored left borders
   ============================================ */
.subject-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.8rem;
  margin: 2.5rem 0;
  position: relative;
  z-index: 6;
}

.subject-card {
  scroll-margin-top: 280px;
  border-radius: 1.5rem;
  padding: 1.6rem;
  transition: all 0.25s ease;
  cursor: pointer;
  border: 1px solid;
  border-left-width: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  background: white;
  position: relative;
  z-index: 6;

}

.subject-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px -8px rgba(0, 0, 0, 0.12);
}

.subject-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.6rem;
  font-weight: 600;
  text-align: left;
}

.subject-card p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #475569;
  flex-grow: 1;
}



/* Individual card color themes */
.card-ict { border-color: #C5E2F5; border-left-color: #5BA3D9; background: linear-gradient(105deg, #F5FAFF 0%, #E0EFF8 100%); }
.card-cs { border-color: #D9CDF0; border-left-color: #A58DC9; background: linear-gradient(105deg, #F8F5FF 0%, #E8DFF5 100%); }
.card-alcs { border-color: #C8E0BF; border-left-color: #7DB86E; background: linear-gradient(105deg, #F3F8F1 0%, #E2EFDE 100%); }
.card-digital { border-color: #F5D0C4; border-left-color: #E88D72; background: linear-gradient(105deg, #FEF7F5 0%, #FCE5DC 100%); }
.card-maths { border-color: #F0E2AE; border-left-color: #D4B43A; background: linear-gradient(105deg, #FEFCF5 0%, #F9F2DA 100%); }
.card-mandarin { border-color: #F2C9DA; border-left-color: #E87AA3; background: linear-gradient(105deg, #FEF8FA 0%, #FCE8F0 100%); }

/* ============================================
   DETAIL SECTIONS
   Expanded content for each subject
   ============================================ */


.subject-detail {
  background: white;
  padding: 30px;
  border-radius: 20px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.subject-detail:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.subject-detail h3 {
  font-size: 1.8rem;
  margin-top: 0;
  margin-bottom: 10px;
  color: #3b82f6;
  text-align: left;
}

.subject-detail h4 {
  font-size: 1.2rem;
  margin: 15px 0 8px 0;
  color: #334155;
}

.subject-detail p,
.subject-detail li {
  line-height: 1.6;
  color: #334155;
}

.subject-detail ul {
  margin: 10px 0 15px 20px;
}

/* Back to top button */

/* Rounded pill button styles */
.rounded-pill-btn {
  display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 8px 20px;
  font-size: 12px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 50px;
  font-family: Arial, sans-serif;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.rounded-pill-btn:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

/* Alternative solid color version */
.pill-btn-solid {
  display: inline-block;
  background-color: #007bff;
  color: white;
  padding: 8px 20px;
  font-size: 12px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 50px;
  font-family: Arial, sans-serif;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.pill-btn-solid:hover {
  background-color: #0056b3;
}

.btn-back-to-top {
  display: inline-block;
  background-color: #007bff;
  color: white;
  padding: 6px 12px;
  font-size: 12px;
  text-decoration: none;
  border-radius: 4px;
  font-family: Arial, sans-serif;
  transition: background-color 0.3s ease;
}

.btn-back-to-top:hover {
  background-color: #0056b3;
}

/* ============================================
   INFO SECTION - WHY LEARN WITH US
   Features grid with icons
   ============================================ */
.info-section {
  background: linear-gradient(120deg, #fffddc 0%, #faf6b4 50%, #fff989 100%);
  border-radius: 1.5rem;
  padding: 1.6rem;
  margin: 2rem 0 1rem;
  border: 1px solid #ffe81d9a;
  position: relative;
  z-index: 6;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.features-grid div {
  text-align: center;
  padding: 0.8rem;
  background: white;
  border-radius: 1rem;
  border: 1px solid #ffdd1db9;
}

.features-grid i {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  color: #3b82f6;
}

.features-grid strong {
  display: block;
  margin-bottom: 0.25rem;
}

.features-grid p {
  font-size: 0.8rem;
  color: #64748b;
}



.details-container {
  background: linear-gradient(120deg, #fcf2dc 0%, #fde8ba 50%, #fad78b 100%);
  padding: 40px 30px;
  border-radius: 28px;
  margin: 40px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

/* Optional: Add a subtle pattern overlay */
.details-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 10% 20%, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 20px 20px;
  border-radius: 24px;
  pointer-events: none;
}


/* ============================================
   PRICING SECTION
   Individual, group, and bulk pricing options
   ============================================ */
.pricing-section {
  background: linear-gradient(120deg, #e4fac18e 0%, #d5fa9a8e 50%, #c1fa668e 100%);
  border-radius: 1.5rem;
  padding: 1.6rem;
  margin: 1.5rem 0;
  border: 1px solid #e5ffe0;
  position: relative;
  z-index: 6;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.pricing-section h3 {
  margin-bottom: 1rem;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  justify-content: center;
  margin-top: 1rem;
}

.pricing-item {
  text-align: center;
  background: white;
  padding: 0.8rem 1.3rem;
  border-radius: 1rem;
  width: 197px;
}

.price {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: #8db849f8;
  margin: 0.5rem 0 0.25rem;
}

.level-meta {
  font-size: 0.7rem;
  color: #73963bf8;
}

/* Group pricing */
.group-pricing {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px dashed #cbd5e1;
}

.group-pricing h4 {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.group-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin: 1rem 0;
}

.group-item {
  background: #a9db59ef;
  padding: 0.8rem 1.2rem;
  border-radius: 1rem;
  text-align: center;
  min-width: 130px;
}

.group-size {
  display: block;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.group-rate {
  display: block;
  font-size: 1.3rem;
  font-weight: 800;
}

.group-total {
  display: block;
  font-size: 0.7rem;
  margin-top: 0.2rem;
}

.group-note {
  font-size: 0.8rem;
  text-align: center;
  margin-top: 0.8rem;
}

/* Bulk discounts */
.bulk-discounts {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px dashed #cbd5e1;
}

.bulk-discounts h4 {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.bulk-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.bulk-item {
  background: #a9db59ef;
  padding: 0.7rem 1.2rem;
  border-radius: 1rem;
  text-align: center;
  min-width: 140px;
}

.bulk-hours {
  display: block;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.bulk-save {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
}

.trial-note {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.85rem;
}

/* ============================================
   CONTACT BUTTONS
   WhatsApp, Email, Calendar links
   ============================================ */
.contact-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin: 1.8rem 0;
  position: relative;
  z-index: 6;
}

.btn-contact {
  background: #5fc1d3;
  color: white;
  padding: 0.75rem 1.8rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
}

.btn-contact:hover {
  background: #428c99;
  transform: translateY(-2px);
}

/* ============================================
   FOOTER
   ============================================ */
.footer-note {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid #e2e8f0;
  font-size: 0.85rem;
  color: #26666e;
  position: relative;
  z-index: 6;
}

.footer-note p {
  margin: 0.3rem 0;
}

/* ============================================
   RESPONSIVE DESIGN
   Mobile-friendly adjustments
   ============================================ */
@media (max-width: 700px) {
  body {
    padding: 80px 1rem 1rem 1rem;
  }
  
  .container {
    padding: 1.3rem;
  }
  
  h1 {
    font-size: 1.8rem;
  }
  
  .subject-grid {
    grid-template-columns: 1fr;
    gap: 1.3rem;
  }
  
  .subject-card {
    padding: 1.3rem;
  }
  
  .banner-icon i {
    font-size: 35px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-grid {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-contact {
    padding: 0.6rem 1.3rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 550px) {
  .price {
    font-size: 1.4rem;
  }
  
  .group-item, .bulk-item {
    min-width: 100px;
    padding: 0.6rem 0.8rem;
  }
  
  .group-rate {
    font-size: 1.1rem;
  }
}

/* ============================================
   BACKGROUND SPARKLES
   ============================================ */
.background-sparkle {
  position: fixed;
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
  transition: all 2.5s ease-out;
}


/* ============================================
   Treasurebox
   Student feedback
   ============================================ */


/* Treasure Box Button */
.treasure-box-btn {
  background: linear-gradient(135deg, #f5a623 0%, #f7c948 100%);
  color: white;
  padding: 14px 30px;
  font-size: 18px;
  font-weight: bold;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.2s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.treasure-box-btn:hover {
  transform: scale(1.05);
  background: linear-gradient(135deg, #f7b733 0%, #fcae34 100%);
}

/* Modal Background - this covers the whole screen */
.treasure-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.9);
  overflow-y: auto;
}

/* Modal Content Box - allow more height */
.treasure-modal-content {
  background-color: white;
  margin: 3% auto;        /* Reduced from 5% to give more vertical space */
  padding: 30px;
  width: 85%;
  max-width: 900px;
  max-height: 90vh;       /* Maximum height 90% of viewport */
  overflow-y: auto;       /* Scroll if content is too tall */
  border-radius: 28px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Close button */
.treasure-close {
  position: absolute;
  right: 25px;
  top: 15px;
  color: #333;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
}

.treasure-close:hover {
  color: #f5a623;
}

/* Treasure Gallery Grid */
.treasure-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

/* Make images fully visible without cropping */
.treasure-gallery img {
  width: 100%;
  height: auto;           /* Changed from fixed height to auto */
  max-height: 500px;      /* Maximum height before scaling down */
  object-fit: contain;    /* Shows ENTIRE image, no cropping */
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
  background-color: #f5f5f5; /* Background color for letterboxing */
}

.treasure-gallery img:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Full image viewer */
.full-image-viewer {
  display: none;
  position: fixed;
  z-index: 1001;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.95);
}

.full-image-viewer .close-viewer {
  position: absolute;
  right: 35px;
  top: 20px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

.full-image {
  display: block;
  max-width: 90%;
  max-height: 90%;
  margin: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 8px;
}

/* Treasure Box Button */
.treasure-box-btn-container {
  text-align: center;
  margin: 40px 0;
}

.treasure-box-btn {
  background: linear-gradient(135deg, #f5a623 0%, #f7c948 100%);
  color: white;
  padding: 14px 30px;
  font-size: 18px;
  font-weight: bold;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}

.treasure-box-btn:hover {
  transform: scale(1.05);
}

/* Treasure Modal (popup background) */
.treasure-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 230, 204, 0.95);
  overflow-y: auto;
}

/* Modal Content Box */
.treasure-modal-content {
  background-color: white;
  margin: 5% auto;
  padding: 30px;
  width: 85%;
  max-width: 900px;
  border-radius: 28px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Close Button (X) */
.treasure-close {
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
  color: #999;
  transition: color 0.2s;
}

.treasure-close:hover {
  color: #f5a623;
}

/* Modal Headings */
.treasure-modal h2 {
  text-align: center;
  font-size: 3em;
  color: #f5a623;
  margin-top: 0;
}

.treasure-modal p {
  text-align: center;
  color: #666;
  font-size: 1.5rem;
}

/* Return Button - Purple */
.return-btn-purple {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 10px 25px;
  font-size: 14px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.return-btn-purple:hover {
  transform: scale(1.05);
}

/* Return Button - Orange */
.return-btn-orange {
  background: linear-gradient(135deg, #f5a623 0%, #f7c948 100%);
  color: white;
  padding: 10px 25px;
  font-size: 14px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.return-btn-orange:hover {
  transform: scale(1.05);
}

/* Button Containers */
.btn-center {
  text-align: center;
  margin: 20px 0;
}

/* Add to your existing CSS */
.treasure-gallery img {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.treasure-gallery img:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}





/* ============================================
          Treasure Gallery Grid 
   ============================================*/

.treasure-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.treasure-gallery img {
  width: 100%;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}

.treasure-gallery img:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Quote at bottom */
.treasure-quote {
  text-align: center;
  color: #f5a623;
  margin-top: 25px;
  font-style: italic;
}