@font-face {
  font-family: 'Playlist Script';
  src: url('/assets/fonts/Playlist-Script.woff2') format('woff2'),
       url('/assets/fonts/Playlist-Script.woff') format('woff'),
       url('/assets/fonts/Playlist-Script.ttf') format('truetype'),
       url('/assets/fonts/Playlist-Script.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

/* Apply Playlist Script font to specific elements */
.playlist-script {
  font-family: 'Playlist Script', cursive !important;
}

/* ===== Base Reset and Fonts ===== */
body {
  margin: 0;
  padding: 0;
  font-family: 'Playfair Display', serif;
  background-color: #fff;
  color: #3e2a1d;
  scroll-behavior: smooth;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
nav ul {
  display: flex;
  justify-content: center;
  gap: 20px;
  background: #fdf8f3;
  padding: 15px 10px;
}
nav ul li a {
  font-weight: 600;
  color: #6e3c2b;
  transition: color 0.3s ease;
}
nav ul li a:hover {
  color: #a36a48;
}




/* Sticky header style */
.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #6e3c2b;
  margin-bottom: 30px;
  line-height: 1.3;
}


/* Header Base */
.desktop-header {
  width: 100%;
  background-image: url('/assets/desktop/home/104-header-scale.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: sticky;
  top: 0;
  z-index: 999;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15); /* optional */
}


/* Header container: flex between logo and nav */
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;
  padding: 10px 40px;
  box-sizing: border-box;
}

/* Logo area */
.logo {
  flex: 0 0 auto; /* Don't grow, don't shrink */
}

.logo img {
  height: 55px;
  width: auto;
  display: block;
}

/* NAV MENU STYLING */
/* Navigation */
.main-nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.main-nav ul {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav ul li a {
  text-decoration: none;
  color: #2a2a2a;
  font-size: clamp(14px, 1.1vw, 18px);
  font-weight: 500;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
}

.main-nav ul li a:hover {
  border-bottom: 2px solid #8c6d44;
  color: #000;
}

/* Add responsive fix for narrow screens */ 
@media screen and (max-width: 768px) {
  .header-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .main-nav {
    justify-content: center;
    width: 100%;
  }

  .main-nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .logo {
    margin-bottom: 10px;
  }
}

/* Hero Image Section - full width background */
/* === HERO SECTION === */
.hero-section {
  width: 100%;
  aspect-ratio: 1366 / 682.5; /* Maintain original image ratio */
  background-image: url('/assets/desktop/home/103 Hero-Imagev2.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  display: block;
}

/* -------------------------------
   Countdown Section Styling
---------------------------------- */
/* ✅ COUNTDOWN SECTION STYLING */
.countdown-section {
  background: linear-gradient(to bottom, #f8f3ef, #ece5dd);
  text-align: center;
  padding: 60px 20px;
  font-family: 'Playfair Display', serif;
}

.countdown-section h1 {
  font-size: 2.5rem;
  color: #6d4c41;
  margin-bottom: 40px;
}

.countdown-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.flip-card {
  perspective: 1000px;
  text-align: center;
}

.flip-inner {
  background: #fff8f0;
  border: 2px solid #d5c4a1;
  border-radius: 16px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  width: 110px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: #4e342e;
  font-weight: bold;
  position: relative;
  transition: transform 0.5s ease-in-out;
}

.flip-front,
.flip-back {
  position: absolute;
  width: 100%;
  height: 100%;
  line-height: 120px;
  backface-visibility: hidden;
  border-radius: 16px;
}

.flip-back {
  transform: rotateX(180deg);
}

.countdown-note {
  margin-top: 25px;
  font-style: italic;
  color: #8d6e63;
  font-size: 1.2rem;
}

/* 🎉 Celebration Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0,0,0,0.7);
  z-index: 9998;
  display: none;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: #fff8f0;
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  color: #4e342e;
  max-width: 400px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.modal-content h2 {
  margin-bottom: 10px;
  font-size: 1.8rem;
  color: #a67c52;
}

.modal-content p {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.celebrate-button {
  background-color: #a67c52;
  color: white;
  border: none;
  padding: 10px 25px;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

.celebrate-button:hover {
  background-color: #8d6e63;
}

/* ✅ OUR STORY LAYOUT FIX */
/* === OUR STORY SECTION STYLING === */

#our-story {
  background: linear-gradient(to bottom, #f8f3ed, #eee7e0);
  padding: 0;
  position: relative;
  overflow: hidden;
  text-align: center;
  min-height: 600px;
}

.our-story-title {
  font-family: 'Playlist Script', cursive;
  font-size: 85px;
  color: #3a1f1f;
  margin: 0;
  padding-top: 50px;
  padding-bottom: 30px;
  letter-spacing: 1px;
  position: relative;
  z-index: 5;
}

.our-story-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 80px;
}

.our-story-card {
  background: #fffaf8;
  padding: 50px;
  max-width: 600px;
  border-radius: 24px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  z-index: 3;
  transition: box-shadow 0.4s ease;
}

.our-story-card:hover {
  box-shadow: 0 20px 45px rgba(255, 200, 200, 0.4); /* Soft romantic glow */
}

.story-text {
  font-style: italic;
  font-size: 18px;
  color: #523636;
  line-height: 1.8;
  text-align: justify;
}

.story-author {
  font-weight: bold;
  font-style: italic;
  text-align: right;
  margin-top: 20px;
  color: #523636;
}

.our-story-left-img,
.our-story-right-img {
  position: absolute;
  height: 80%;
  max-height: 500px;
  width: auto;
  z-index: 1;
  transform: translateY(0px);
  transition: transform 0.3s ease;
}

.our-story-left-img {
  left: -150px; /* pulled further out */
  top: -200px; /* move higher */
}

.our-story-right-img {
  right: -80px; /* pulled further out */
  top: 0px; /* keep default or adjust */
}

/* Responsive */
@media (max-width: 768px) {
  .our-story-card {
    width: 90%;
    padding: 30px;
  }

  .our-story-title {
    font-size: 50px;
  }

  .our-story-left-img,
  .our-story-right-img {
    height: 40%;
    opacity: 0.6;
  }
}

/* ========== WEDDING EXPERIENCE SECTION ========== */

.wedding-experience-section {
  background: url('../assets/desktop/wedding-experience/128 wedding-experience-bg.png') no-repeat center top;
  background-size: cover;
  padding: 80px 20px;
  text-align: center;
}

.experience-header h2 {
  font-family: 'Playlist Script', cursive;
  font-size: 72px;
  color: #B48B63;
  margin-bottom: 10px;
}

.experience-header p {
  font-size: 17px;
  color: #5a4a3a;
  max-width: 720px;
  margin: 0 auto 50px;
}

.experience-subheading {
  font-style: italic;
  font-family: 'Playfair Display', serif; /* Optional: Use any elegant serif */
  font-size: 18px;
  color: #6f4c3d;
  margin-top: 12px; 
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-align: center; 
}

.experience-timeline {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.experience-card {	
  background: #ffffff;
  border: 2px solid #ecdac3;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  padding: 20px; 
  width: 90%;
  max-width: 280px;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center; 
}

.experience-card:hover {
  transform: scale(1.03);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.12);
}

.experience-card img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  margin-bottom: 15px;
}

.experience-card h3 {
  font-size: 20px;
  color: #814C2E;
  margin-bottom: 10px;
  font-weight: 600;
}

.experience-card p {
  font-size: 15px;
  color: #4e4e4e;
  line-height: 1.6;
  margin: 0;
}

/* ========== FLOATING PANEL ANIMATION ========== */
.floating-panel {
  animation: floatPanel 5s ease-in-out infinite;
}

@keyframes floatPanel {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .experience-card {
    width: 100%;
    max-width: 320px;
  }

  .experience-header h2 {
    font-size: 34px;
  }

  .experience-header p {
    font-size: 15px;
    padding: 0 10px;
  }
}

/* =======================
   LOCATION & DIRECTIONS SECTION
========================= */

.location-section-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px; /* You can adjust this padding */
}

.location-section {
  background-size: cover;
  background-position: center;
  padding: 80px 20px;
  text-align: center;
  position: relative;
}

.location-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  color: #814c2e;
  margin-bottom: 10px;
}

.location-subheading {
  font-style: italic;
  font-family: 'Playfair Display', serif;
  color: #5e4b3c;
  font-size: 18px;
  margin-bottom: 50px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.location-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: stretch; /* 🔁 Ensures equal height for both cards */
  gap: 100px;
  flex-wrap: wrap;
}

.location-info {
  flex: 1 1 500px;
  background-color: rgba(255, 255, 255, 0.85);
  border-radius: 20px;
  padding: 40px 30px 30px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}


.location-info h3.event-title {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: #b48b63;
  margin-top: 0;
  margin-bottom: 20px;
  text-align: center;
}

.location-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  color: #444;
}

.location-detail img {
  width: 28px;
  height: 28px;
}

.location-qr {
  margin-top: 30px;
  text-align: center;
}

.location-qr img {
  width: 160px;
  margin-top: 8px;
}

.location-qr p {
  font-size: 14px;
  color: #666;
  font-style: italic;
  margin-bottom: 8px;
}

.location-button {
  display: block;
  margin: 30px auto 0;
  padding: 12px 24px;
  background-color: #d2a86a;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s ease;
  text-align: center;
}

.location-button:hover {
  background-color: #b48b63;
}

.location-map {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.location-map iframe {
  flex: 1;
  width: 100%;
  height: 100%;
}

.location-info,
.location-map {
  flex: 1 1 48%;
  min-width: 360px;
  max-width: 540px;
  display: flex;
  flex-direction: column;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .location-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .location-info,
.location-map {
  width: 100%; 
}

  .location-section h2 {
    font-size: 34px;
  }

  .location-subheading {
    font-size: 16px;
  }
}

/* =======================
   RSVP BANNER SECTION
========================= */

@keyframes flagWave {
  0% { background-position: 0% 0%; }
  50% { background-position: 100% 2%; }
  100% { background-position: 0% 0%; }
}

.rsvp-banner {
  background: url('/assets/desktop/rsvp-banner/rsvp-banner-bg.png') no-repeat center center;
  background-size: cover;
  animation: flagWave 12s ease-in-out infinite;
  padding: 100px 20px;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.rsvp-banner-inner {
  max-width: 960px;
  width: 100%;
  text-align: center;
  color: #2b2b2b;
  position: relative;
  z-index: 2;
}

.rsvp-intro {
  font-family: 'Playlist Script', cursive;
  font-size: 80px;
  font-weight: 400; /* Ensure regular weight */
  margin: 0;
  color: #3b2e2e;
}

.rsvp-title {
  font-family: 'Playfair Display', serif;
  font-size: 58px;
  margin: 25px 0 10px;
  font-weight: bold;
  color: #2e2e2e;
}

.rsvp-text {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 16px;
  margin-top: 10px;
  color: #333;
}

.rsvp-button {
  margin-top: 30px;
  display: inline-block;
  padding: 14px 32px;
  background-color: #d2a86a;
  color: #fff;
  font-weight: bold;
  font-size: 15px;
  font-family: 'Playfair Display', serif;
  text-decoration: none;
  border-radius: 40px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.rsvp-button:hover {
  background-color: #b88c55;
  transform: translateY(-2px);
}

/* Mobile */
@media (max-width: 768px) {
  .rsvp-intro {
    font-size: 22px;
  }
  .rsvp-title {
    font-size: 32px;
  }
  .rsvp-text {
    font-size: 14px;
  }
  .rsvp-button {
    padding: 12px 28px;
    font-size: 14px;
  }
}

/* =======================
   RSVP FORM SECTION
========================= */

.rsvp-form-section {
  background-image: url('../assets/desktop/rsvp-section/rsvp-bg-desktop.png');
  background-size: cover;
  background-position: center;
  padding: 80px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.rsvp-form-wrapper {
  display: flex;
  max-width: 1200px;
  width: 100%;
  background: rgba(255, 255, 255, 0.88);
  border-radius: 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  overflow: hidden;
}

.rsvp-image-side {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.rsvp-image-side img {
  max-width: 100%;
  height: auto;
}

.rsvp-form-side {
  flex: 1;
  padding: 40px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.rsvp-form .form-group {
  margin-bottom: 20px;
}

.rsvp-form label {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 16px;
  display: block;
  margin-bottom: 8px;
  color: #5A4B44;
}

.rsvp-form input,
.rsvp-form select,
.rsvp-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #d8cfcf;
  border-radius: 8px;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 15px;
}

.rsvp-form textarea {
  resize: none;
  max-width: 100%;
  overflow: auto;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 15px;
}

.rsvp-submit-btn {
  background-color: #b38a57;
  color: white;
  padding: 12px 28px;
  border: none;
  border-radius: 8px;
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.rsvp-submit-btn:hover {
  background-color: #a37947;
}

.word-counter {
  font-size: 13px;
  font-style: italic;
  color: #555;
  text-align: right;
  margin-top: 5px;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .rsvp-form-wrapper {
    flex-direction: column;
  }

  .rsvp-image-side,
  .rsvp-form-side {
    width: 100%;
    padding: 20px;
  }
}

/* ==========================
   VALIMA DAY DETAILS SECTION
============================= */

.details-section {
  background-color: #fff9f7;
  padding: 80px 20px;
  text-align: center;
}

.details-wrapper {
  max-width: 850px;
  margin: 0 auto;
}

.details-title {
  font-family: 'Playlist Script', cursive;
  font-size: 85px;
  color: #64473A;
  margin-bottom: 10px;
}

.details-subtext {
  font-size: 26px;
  color: #6e6e6e;
  margin-bottom: 20px;
  font-style: italic;
}

.details-divider {
  width: 1000px;
  margin: 20px auto 40px auto;
}

.valima-detail-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  max-width: 1000px;
  margin: 60px auto;
  padding: 0 20px;
  flex-wrap: wrap;
}

.valima-detail-block.left .valima-icon {
  order: 0;
}
.valima-detail-block.right .valima-icon {
  order: 1;
}
.valima-detail-block.right .valima-content {
  text-align: right;
}

.valima-icon img {
  width: 50px;
  height: 50px;
}

.valima-content h4 {
  margin: 0 0 10px 0;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #3a3a3a;
  margin-bottom: 8px;
}

.valima-content p {
  font-size: 20px;
  margin: 0;
  color: #555;
  line-height: 1.6;
}

.valima-divider {
  width: 100%;
  height: 6px;
  background-color: #ddd;
  border: none;
  margin: 30px 0;
}

/* 📱 Mobile Responsive */
@media screen and (max-width: 768px) {
	
	body {
    background-size: cover;
    background-attachment: scroll;
    padding: 0 10px;
  }

  .section-title {
    font-size: 28px;
    line-height: 1.3;
    text-align: center;
  }

  .hero-section img {
    width: 100%;
    height: auto;
  }
	
	.valima-detail-block {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    margin: 40px auto;
    padding: 0 10px;
  }

  .valima-detail-block.right .valima-content,
  .valima-detail-block.left .valima-content {
    text-align: center;
  }
  
   .valima-icon img {
    width: 36px;
    height: 36px;
  }

   .valima-content h4 {
    font-size: 18px;
    letter-spacing: 0.5px;
  }

  .valima-content p {
    font-size: 16px;
  }
  
  .details-subtext {
    font-size: 18px;
    padding: 0 15px;
  }

  .details-divider {
    width: 90%;
  }

  .valima-divider {
    height: 4px;
    margin: 20px 0;
  }
  
  .gallery-slider img {
    width: 100%;
    height: auto;
  }

  .rsvp-form {
    padding: 20px;
  }

  .rsvp-form input,
  .rsvp-form select,
  .rsvp-form textarea {
    width: 100%;
    font-size: 16px;
  }

  .rsvp-submit-btn,
  .cancel-btn {
    width: 100%;
    margin-top: 15px;
    font-size: 18px;
  }
}

.floating-music-icon {
  position: fixed;
  bottom: 70px;
  right: 20px;
  width: 36px;
  animation: float 3s ease-in-out infinite;
  z-index: 1000;
}
@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}

/* ==========================
   GALLERY DETAILS SECTION
============================= */

.gallery-section {
  background-color: #fffaf5;
  padding: 80px 20px;
  text-align: center; 
}

.gallery-wrapper {
  max-width: 850px;
  margin: 0 auto;
}

.gallery-title {
  font-family: 'Playlist Script', cursive;
  font-size: 85px;
  color: #64473A;
  margin-bottom: 10px;
}

.gallery-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 30px;
  background-color: #fffaf8;
  border-radius: 16px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}
.gallery-slider img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}
.gallery-slider a:hover img {
  transform: scale(1.03);
}

/* ==========================
   FAQs SECTION
============================= */

.faqs-section {
  background-color: #fffaf3; /* light theme matching your other sections */
  padding: 80px 20px;
  text-align: center;
}


.faq-wrapper {
  max-width: 850px;
  margin: 0 auto;
}

.faq-title {
  font-family: 'Playlist Script', cursive;
  font-size: 85px;
  color: #64473A;
  margin-bottom: 10px;
}

.faq-container {
  max-width: 800px;
  margin: auto;
}
.faq {
  border-bottom: 1px solid #d9cfc7;
  padding: 10px 0;
}
.faq-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-question-text {
  font-size: 26px;
  font-weight: bold;
  width: 70%;
  color: #4a3a2a;
}

.faq-toggle {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}
.faq-answer {
  font-size: 18px;
  color: #5a4a3a;
  margin: 15px 0 30px;
  line-height: 1.6;
}

/* ==========================
   Contact Us SECTION
============================= */

.contact-section {
  background-color: #fff8f0;
  padding: 80px 20px;
  text-align: center;
}

.contact-wrapper {
  max-width: 850px;
  margin: 0 auto;
}

.contact-title {
  font-family: 'Playlist Script', cursive;
  font-size: 85px;
  color: #64473A;
  margin-bottom: 10px;
}


.contact-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.contact-box {
  flex: 1 1 320px;
  max-width: 360px;
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  background-color: #fff;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.contact-box p {
  margin: 0;
  font-size: 18px;
}

.contact-box a {
  display: block;
  margin-top: 10px;
  font-weight: bold;
  font-size: 16px;
}

.contact-box-glow:hover {
  box-shadow: 0 0 25px rgba(255, 200, 150, 0.4);
  transform: translateY(-6px);
}
.contact-box.email { background-color: #fff6f2; }
.contact-box.phone { background-color: #f5f4ff; }
.contact-box.whatsapp { background-color: #f2fff6; }


/* ==========================
   Footer SECTION
============================= */


.black-footer {
  background-color: #111;
  color: white;
  padding: 30px 20px;
}
.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.footer-left img {
  width: 100px;
}
.footer-right {
  text-align: right;
  font-size: 14px;
}

/* ==========================
   FLOATING MUSIC 
============================= */


.floating-music-icon {
  position: fixed;
  bottom: 70px;
  right: 20px;
  width: 40px;
  animation: float 3s ease-in-out infinite;
  z-index: 1000;
}
@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}

/* SCROLL TO TOP BUTTON */
#scrollTopBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 2000;
  background-color: #6e3c2b;
  color: white;
  border: none;
  padding: 12px 16px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}
#scrollTopBtn:hover {
  background-color: #a36a48;
}


