* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial;
  font-size: 15px;
  background: linear-gradient(135deg, #ffedf1, #7d83ff);
  color: #3626A7;
  line-height: 1.6;
}


h1,
h2,
h3,
h4,
h5,
h6,
.logo {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  letter-spacing: 0.5px;
}


/* ==================== BARRE NAV ==================== */
nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #3626A7;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
}

nav a:hover:not(.active) {
  color: #7d83ff;
  transform: translateY(-2px);
}

nav a.active {
  font-weight: 700;
  position: relative;
}

nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: #3626A7;
  border-radius: 2px;
}

.page-detail {
  padding-bottom: 60px;
}


header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 60px;
  background: rgba(227, 232, 253, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle span {
  width: 28px;
  height: 3px;
  background: #3626A7;
  border-radius: 4px;
  transition: all 0.3s ease;
}

/* Burger Animation */
.menu-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}


.logo {
  font-weight: 700;
  font-size: 22px;
  color: #7d83ff;
}

.logo a {
  text-decoration: none;
  color: inherit;
}


/* ==================== HERO ==================== */
.hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  overflow: hidden;
  background: black;
  /* Base color while images load */
}

.hero-bg-layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: opacity 2s ease-in-out;
  opacity: 0;
}

.hero-bg-layer.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 0, 40, 0.4);
  z-index: 1;
}

.hero-contact {
  position: relative;
  min-height: 40vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

/* ==================== QUICK CONTACT INFO ==================== */
.contact-quick-info {
  max-width: 900px;
  margin: 60px auto 20px;
  text-align: center;
  padding: 0 20px;
}

.contact-quick-info h2 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: #3626A7;
}

.contact-methods {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  color: #3626A7;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.4);
  padding: 25px 40px;
  border-radius: 20px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  min-width: 250px;
}

.contact-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 10px 25px rgba(54, 38, 167, 0.1);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: #3626A7;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
  background: #7d83ff;
  transform: rotate(10deg);
}

.contact-icon svg {
  width: 24px;
  height: 24px;
  fill: white;
}

.contact-item span {
  font-size: 1.2rem;
  font-weight: 600;
  font-family: 'Merriweather', serif;
}

@media (max-width: 600px) {
  .contact-methods {
    gap: 20px;
  }

  .contact-item {
    width: 100%;
  }
}


.hero-content {
  position: relative;
  z-index: 2;
  /*  font-family:'Playfair Display', serif; */
  font-family: Inter, Arial;
  font-size: clamp(1rem, 2.5vw, 1.3rem);
}


.hero-brand {
  display: block;
  font-family: 'Merriweather', serif;
  font-size: clamp(2.2rem, 8vw, 4rem);
  font-weight: 700;
  margin-bottom: 10px;
}



/* ==================== SPLIT SECTION ==================== */
.split-section {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 5px;
  padding-top: 40px;
  padding-bottom: 15px;
  display: flex;
  gap: 40px;
  align-items: center;
}

.split-section2 {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 5px;
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
  gap: 40px;
  align-items: center;
}

.split-section2 .image-side {
  aspect-ratio: 1 / 1;
  width: 100%;
  max-width: 500px;
  height: auto;
  flex: 0 1 500px;
}

.circle-side {
  border-radius: 50% !important;
  flex: 0 0 auto !important;
  align-self: center;
  overflow: hidden;
  height: auto;
  min-width: 0;
  /* Fixes some flexbox overflow issues */
  display: block;
}

.circle-side img {
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

/* Philosophy Section */
.philosophy-section {
  max-width: 1200px;
  margin: 0 auto 80px;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.philosophy-item h3 {
  font-family: 'Merriweather', serif;
  color: #3626A7;
  font-size: 1.4rem;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.philosophy-item h3::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: #7d83ff;
  margin: 10px auto 0;
  border-radius: 2px;
}

.philosophy-item p {
  font-size: 1rem;
  color: #4a4a8a;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .philosophy-section {
    grid-template-columns: 1fr;
    gap: 50px;
    margin-bottom: 60px;
  }
}

.text-side {
  flex: 1;
  font-size: 17px;
  text-align: center;
}


.rdv-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;

  padding: 8px 16px;
  border-radius: 999px;
  background: #3626A7;
  color: #D4DCFF;
  width: 230px;
  text-decoration: none;
  font-size: 17px;
  font-weight: 500;

  transition: all 0.4s ease-in-out;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);

  margin: 20px auto 0 auto;
}

.rdv-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(54, 38, 167, 0.15);
  background: linear-gradient(135deg, #4b38d3, #9499ff);
}

/* Modifier for smaller split section */
.split-section-small {
  max-width: 900px;
  margin: 20px auto;
  gap: 30px;
}

.body-contact .split-section {
  padding-top: 20px;
  padding-bottom: 10px;
}

.body-contact .separator {
  margin: 30px auto;
}

@media (max-width: 768px) {
  .body-contact .split-section {
    padding: 20px 10px;
    gap: 15px;
  }
}

.split-section-small .image-side {
  max-width: 500px;
}

/* Address link styling */
.address-link {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  display: inline-block;
}

.address-link:hover {
  color: #7d83ff;
  transform: scale(1.02);
}

.image-side {
  flex: 1;
  max-width: 700px;
  aspect-ratio: 4 / 3;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
}

.image-side img {
  flex: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Mobile */

@media(max-width:768px) {
  .split-section {
    flex-direction: column;
  }
}



/* ==================== CARDS INFO ==================== */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  padding: 40px 60px;
}

.card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
  text-align: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(54, 38, 167, 0.12);
  background: white;
}

.card-img {
  width: 100%;
  aspect-ratio: 1.2 / 1;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 12px;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card h2 {
  font-size: 1.1rem;
  margin: 10px 0 8px;
  color: #3626A7;
}

.card p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #4a4a8a;
}


.separator {
  max-width: 1200px;
  width: 90%;
  height: 1px;
  background: #3626A7;
  margin: 60px auto;
  opacity: .2;
}




.youtube {
  display: flex;
  justify-content: center;
  padding: 40px;
}

iframe {
  max-width: 560px;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  border: none;
}


/* ==================== FULL BAND ==================== */
.full-band1 {
  width: 100%;
  background: #D4DCFF;
  color: #3626A7;
  padding: 30px 20px;
}

.full-band1-contact {
  width: 100%;
  background: #7d83ff;
  color: #fff;
  padding: 30px 20px;
}

.band-content {
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

.full-band2 {
  width: 100%;
  background: #e3e8fd;
  color: #3626A7;
  padding: 15px 20px;
  /*font-family:'Playfair Display', serif;*/
  font-weight: 700;
}

.full-band2-contact {
  width: 100%;
  background: #7d83ff;
  color: #fff;
  padding: 15px 20px;
  /*font-family:'Playfair Display', serif;*/
  font-weight: 700;
}


.band-content2 {
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

/* ==================== CAROUSEL ==================== */
.carousel-section {
  padding: 30px 0;
  overflow: hidden;
}

.section-title {
  text-align: center;
  margin: 60px auto 10px;
  color: #3626A7;
  font-size: 1.8rem;
  font-weight: 700;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: #7d83ff;
  margin: 10px auto 0;
  border-radius: 2px;
}



.carousel-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  padding: 0 40px;
}

.carousel-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE and Edge */
}

.carousel-track::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Opera */
}

.carousel-slide {
  flex: 0 0 calc(50% - 10px);
  scroll-snap-align: center;
  aspect-ratio: 4 / 3;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  background: white;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Gallery Carousel specific */
/* Services Grid Section */
.services-section {
  max-width: 1200px;
  margin: 0 auto 60px;
  padding: 0 20px;
}

.services-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 120px;
  flex-wrap: wrap;
}

.service-bubble {
  flex: 0 1 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  transition: all 0.4s ease;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.circle-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(54, 38, 167, 0.15);
  border: 6px solid white;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-bubble:hover .circle-image {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 40px rgba(54, 38, 167, 0.2);
}

.bubble-title {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #3626A7;
  text-align: center;
  transition: color 0.3s ease;
}

.service-bubble:hover .bubble-title {
  color: #7d83ff;
}

/* Response vertical on mobile */
@media (max-width: 768px) {
  .services-container {
    flex-direction: column;
    align-items: center;
    gap: 80px;
  }

  .service-bubble {
    width: 220px;
    max-width: 80%;
  }
}

/* Offres Section */
.offres-section {
  max-width: 1200px;
  margin: 0 auto 60px;
  padding: 0 20px;
}

.offres-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  justify-items: center;
}

.offres-container .card {
  width: 100%;
  max-width: 500px;
}

/* Card carousel specific */
.card-slide {
  aspect-ratio: auto;
  min-height: 350px;
  display: flex;
  scroll-snap-align: center;
}

.card-slide .card {
  width: 100%;
  height: 100%;
  margin: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.card-slide .card-img {
  aspect-ratio: 1 / 1;
}



.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.carousel-btn:hover {
  background: #3626A7;
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 10px 25px rgba(54, 38, 167, 0.2);
}

.carousel-btn:hover svg {
  fill: white;
}

.prev-btn {
  left: 10px;
}

.next-btn {
  right: 10px;
}

.carousel-btn svg {
  width: 30px;
  height: 30px;
  fill: #3626A7;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #D4DCFF;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.dot.active {
  background: #3626A7;
  width: 25px;
  border-radius: 5px;
}


.rdv {
  color: #7d83ff
}



.socials {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 25px;
}

.socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #3626A7;
  transition: .2s ease;
}

.socials svg {
  width: 18px;
  height: 18px;
  fill: white;
}

.socials a:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 15px rgba(54, 38, 167, 0.2);
  background: #7d83ff;
}


/* ==================== FOOTER ==================== */
.footer-main {
  background: rgba(30, 30, 63, 0.95);
  backdrop-filter: blur(10px);
  color: #D4DCFF;
  padding: 80px 60px 40px;
  font-family: 'Montserrat', sans-serif;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 80px;
}

.footer-col h3 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 25px;
  font-family: 'Merriweather', serif;
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  font-family: 'Merriweather', serif;
}

.footer-desc {
  font-size: 0.95rem;
  line-height: 1.8;
  opacity: 0.8;
  margin-bottom: 25px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #D4DCFF;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  opacity: 0.8;
}

.footer-links a:hover {
  opacity: 1;
  color: #7d83ff;
  padding-left: 5px;
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 0.95rem;
  opacity: 0.8;
}

.footer-social-links {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.footer-social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(125, 131, 255, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(125, 131, 255, 0.2);
}

.footer-social-links a:hover {
  background: #7d83ff;
  transform: translateY(-3px);
  border-color: #7d83ff;
}

.footer-social-links svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}

.footer-bottom {
  max-width: 1200px;
  margin: 60px auto 0;
  padding-top: 30px;
  border-top: 1px solid rgba(212, 220, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  opacity: 0.6;
}

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

@media (max-width: 768px) {
  .footer-main {
    padding: 60px 20px 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-social-links {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

footer {
  text-align: center;
  padding: 30px;
  opacity: .7;
}

.recipe {
  background: white;
  padding: 40px;
  border-radius: 16px;
}

.contact {
  max-width: 400px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

input,
textarea {
  padding: 12px;
  border-radius: 10px;
  border: 2px solid #e3e8fd;
  transition: all 0.3s ease;
  background: white;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #7d83ff;
  box-shadow: 0 0 0 4px rgba(125, 131, 255, 0.15);
}

button {
  padding: 12px;
  font-weight: bold;
  font-size: 15px;
  border: none;
  border-radius: 12px;
  background: #7d83ff;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}

button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(125, 131, 255, 0.25);
  background: #8e94ff;
}

.art {
  max-width: 400px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
}

.socialmedia {
  width: 50px;
  height: auto;
}

.body-contact {
  background: #e3e8fd;
}


/* ==================== CONTACT INFOS SECTION ==================== */
.contact-infos-section {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
  gap: 40px;
}

.contact-text-side {
  flex: 1;
  text-align: left;
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 400px;
  margin: 0 auto;
}



/* ==================== RESPONSIVENESS REFINEMENTS ==================== */

/* Fix horizontal scroll issues */
html,
body {
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

/* Global Responsive Images & Videos */
img,
iframe,
video {
  max-width: 100%;
}

/* Responsive Font Sizes */
h1 {
  font-size: clamp(1.8rem, 6vw, 3rem);
}

h2 {
  font-size: clamp(1.3rem, 4vw, 2rem);
}

p {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
}


/* Header & Nav Responsive */
@media (max-width: 768px) {
  header {
    padding: 15px 20px;
    flex-direction: column;
    gap: 15px;
  }

  nav {
    display: flex;
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
    gap: 10px;
  }

  nav a {
    margin: 0 10px;
    font-size: 0.9rem;
  }

  .logo {
    font-size: 20px;
  }
}

/* Hero Section Responsive */
@media (max-width: 768px) {
  .hero {
    min-height: 60vh;
  }

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

/* Split Section Responsive */
@media (max-width: 768px) {

  .split-section,
  .split-section2 {
    flex-direction: column;
    padding: 40px 20px;
    gap: 30px;
    margin: 0;
  }

  .text-side {
    font-size: 1.1rem;
    padding: 0 10px;
  }

  .image-side {
    width: 100%;
    max-width: 100%;
  }

  .rdv-btn {
    width: 100%;
    max-width: 280px;
  }
}

/* Cards Responsive */
@media (max-width: 768px) {
  .cards {
    padding: 30px 20px;
    grid-template-columns: 1fr;
  }

  .card {
    padding: 20px;
  }
}

/* Full Band Responsive */
@media (max-width: 768px) {
  header {
    padding: 15px 30px;
  }

  .menu-toggle {
    display: flex;
  }

  nav {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 80%;
    height: calc(100vh - 70px);
    background: rgba(227, 232, 253, 0.98);
    backdrop-filter: blur(15px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.1);
  }

  nav.active {
    left: 0;
  }

  nav a {
    margin: 0;
    font-size: 1.5rem;
  }

  nav a.active::after {
    bottom: -10px;
    height: 3px;
  }

  .carousel-slide {
    flex: 0 0 100%;
  }

  .carousel-container {
    padding: 0 20px;
  }

  .full-band1,
  .full-band1-contact,
  .full-band2,
  .full-band2-contact {
    margin-left: 0;
    transform: none;
    width: 100%;
    border-radius: 0;
    padding: 30px 20px;
  }

  .band-content h2,
  .band-content2 h2 {
    font-size: 1.3rem;
  }
}


/* Form Responsive */
@media (max-width: 768px) {
  .contact {
    padding: 0 10px;
  }

  input,
  textarea,
  button {
    width: 100%;
  }
}

/* Map Responsive */
@media (max-width: 768px) {
  .map-container {
    border-radius: 12px;
  }

  .map-container iframe {
    height: 300px;
  }
}

/* Footer Responsive */
@media (max-width: 480px) {
  footer {
    font-size: 0.85rem;
    padding: 20px 10px;
  }
}

/* ==================== ANIMATIONS ==================== */
.fade-in-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Global improvements */
.rdv-btn {
  background: linear-gradient(135deg, #3626A7, #7d83ff);
  font-weight: 600;
  letter-spacing: 0.5px;
}