* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: #f5f1e8;
}

@font-face {
  font-family: 'SugarMagic';
  src: url('/fonts/sugarmagic.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

.fallback-char {
  font-family: 'Playfair Display', 'Raleway', sans-serif;
  font-weight: 600;
}

:root {
  --primary-color: #000000;
  --bg-light: #f5f1e8;
  --text-dark: #000000;
  --text-light: #f5f1e8;
  --green: #74966E;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

body {
  font-family: 'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--bg-light);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.floating-buttons-container {
  position: fixed;
  bottom: 5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: row;
  gap: 0;
  z-index: 1000;
  align-items: center;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 30px;
  padding: 0;
  overflow: hidden;
  pointer-events: auto;
  opacity: 1;
  --divider-color: rgba(0, 0, 0, 0.15);
  transition: opacity 0.3s ease;
}

.floating-buttons-container.hidden {
  opacity: 0;
  pointer-events: none;
}

.floating-buttons-container.corner {
  bottom: auto;
  top: 2rem;
  left: auto;
  right: 2rem;
  transform: none;
  background: rgb(116, 150, 110);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  --divider-color: rgba(255, 255, 255, 0.3);
}

.floating-buttons-container.corner .floating-button {
  color: white;
}

.floating-button {
  background: transparent;
  color: black;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 25px;
  text-decoration: none;
  flex: 1 1 0;
  min-width: 0;
  justify-content: center;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  white-space: nowrap;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  opacity: 1;
  transform: none;
  transition: background 0.3s ease;
  pointer-events: auto;
  position: relative;
}

.floating-button:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 60%;
  width: 1px;
  background: var(--divider-color, rgba(255, 255, 255, 0.3));
  transition: opacity 0.3s ease;
}

.instagram-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background: white;
  text-decoration: none;
  color: var(--text-dark);
  transition: all 0.1s ease-in-out;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 2px solid white;
  border-radius: 12px;
  overflow: hidden;
}

.instagram-card:hover {
  transform: rotate(2deg);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.instagram-card-image {
  width: 100%;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  border-radius: 11px;
}

.instagram-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease-out, opacity 0.5s ease-out;
  position: relative;

}

.instagram-card-content {
  padding: 0.75rem 1rem;
  display: inline-flex;
  gap: 0.5rem;
  background: white;
  position: relative;
  font-family: monospace;
}

.instagram-card-content .ph-instagram-logo {
  font-size: 1.4rem;
  color: #E4405F;
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.instagram-card:hover .instagram-card-content .ph-instagram-logo {
  opacity: 0;
  transform: scale(0.5);
}

.instagram-card-content span {
  font-size: 0.8rem;
  font-weight: 500;
  transition: opacity 0.3s ease;
  opacity: 0.8;
  position: relative;
}

.instagram-card-content .instagram-handle {
  transform: translateY(3px);
}


.instagram-card-content .instagram-cta {
  position: absolute;
  inset: 0  ;
  opacity: 0;
}

.instagram-card-text {
  position: relative;
}

.instagram-card:hover .instagram-handle {
  opacity: 0;
}

.instagram-card:hover .instagram-cta {
  opacity: 1;
}

.instagram-card-arrow {
  position: absolute;
  left: 1rem;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.3s ease, transform 0.3s ease;
  font-size: 1.25rem !important;
  color: var(--text-dark) !important;
}

.instagram-card:hover .instagram-card-arrow {
  opacity: 1;
  transform: scale(1);
}

.floating-button:hover {
  background: rgba(0, 0, 0, 0.2);
}

.floating-buttons-container:hover .floating-button:not(:last-child)::after {
  opacity: 0;
}

.floating-button i {
  font-size: 1.1rem;
  order: -1;
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-light);
  overflow: visible;
  background: var(--bg-light);
}

.hero-slideshow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  transform-origin: center center;
  z-index: 1;
  overflow: hidden;
  background: transparent;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 2s ease-in-out, filter 0.3s ease-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide:nth-child(1) {
  animation: panRight 21s linear infinite;
}

.hero-slide:nth-child(2) {
  animation: panLeft 21s linear infinite;
}

.hero-slide:nth-child(3) {
  animation: panRight 21s linear infinite;
}

@keyframes panRight {
  0% { transform: scale(1.2) translateX(-5%); }
  100% { transform: scale(1.2) translateX(5%); }
}

@keyframes panLeft {
  0% { transform: scale(1.2) translateX(5%); }
  100% { transform: scale(1.2) translateX(-5%); }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 40%;
  max-width: 1400px;
  padding: 0 20px;
}

.hero-logo {
  max-width: none;
  width: 100%;
  height: auto;
  margin: 0 auto 0.5rem;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.4));
}

.hero-logo path {
  fill: transparent !important;
  stroke: var(--text-light) !important;
  stroke-width: 2.5 !important;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-logo.filled path {
  fill: var(--text-light) !important;
  stroke: var(--text-light) !important;
  stroke-width: 2.5 !important;
  animation: fadeInFill 2s ease-in forwards;
}

@keyframes fadeInFill {
  from { fill-opacity: 0; }
  to { fill-opacity: 1; stroke-width: 0; }
}

.hero p {
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-top: 1rem;
  margin-bottom: 0;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
  color: var(--text-light);
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}

.hero p.show {
  opacity: 1;
}

.scroll-indicator {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transition: opacity 0.5s ease-out;
}

.scroll-indicator.show {
  opacity: 0.7;
}

.scroll-arrows {
  position: relative;
  height: 20px;
  width: 20px;
}

.scroll-arrow {
  position: absolute;
  top: 0;
  left: 0;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  animation: scrollFlow 3s ease-out infinite;
  opacity: 0;
}

.scroll-arrow:nth-child(2) {
  animation-delay: 2s;
}

@keyframes scrollFlow {
  0% { transform: translateY(-5px); opacity: 0; }
  20% { transform: translateY(0px); opacity: 0.6; }
  50% { transform: translateY(5px); opacity: 0.7; }
  80% { transform: translateY(10px); opacity: 0; }
  100% { transform: translateY(-5px); opacity: 0; }
}

.hero-nav-buttons {
  position: absolute;
  bottom: 4rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.5rem;
  opacity: 0;
  transition: opacity 0.5s ease-out;
}

.hero-nav-buttons.show {
  opacity: 1;
}

.hero-nav-buttons-mobile {
  display: none;
}

.hero-nav-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: var(--text-light);
  padding: 0.75rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  will-change: transform, background, border-color;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.hero-nav-button:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.hero-nav-button span {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: 30px;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background: var(--bg-light);
  color: var(--text-dark);
}

.btn-primary:hover {
  background: var(--primary-color);
  color: var(--bg-light);
  transform: translateY(-2px);
}

.cafe-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-reservation {
  background: transparent;
  color: var(--text-dark);
  border: 1px solid var(--text-dark);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 0.85rem 2rem;
  margin-top: 0;
}

.btn-reservation:hover {
  background: var(--text-dark);
  color: var(--bg-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.almas-cest-quoi,
.qui-sommes-nous,
.nos-prestations,
.notre-cafe {
  padding: 7rem 14rem;
  background: var(--bg-light);
  scroll-margin-top: 4rem;
}

.almas-cest-quoi h2,
.qui-sommes-nous h2,
.nos-prestations h2 {
  font-family: 'SugarMagic', 'Raleway', sans-serif;
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 1rem;
  text-align: center;
  line-height: 1.2;
}

.almas-cest-quoi h2::after,
.qui-sommes-nous h2::after,
.nos-prestations h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 60px;
  height: 2px;
  background: var(--primary-color);
  opacity: 0.2;
  left: 50%;
  transform: translateX(-50%);
}

.qui-sommes-nous h2 {
  text-align: center;
}

.almas-cest-quoi-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 700px;
  margin: 0 auto;
}

.qui-sommes-nous-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.almas-cest-quoi-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 0;
  white-space: pre-line;
  opacity: 0.9;
  text-align: left;
}

.qui-sommes-nous-text p,
.notre-cafe-description p {
  font-size: 1.05rem;
  line-height: 2;
  margin-bottom: 2rem;
  white-space: pre-line;
  opacity: 0.9;
}

.almas-cest-quoi-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.qui-sommes-nous-text {
  width: 100%;
  margin-bottom: 1.5rem;
}

.qui-sommes-nous-text p {
  text-align: center;
}

.almas-cest-quoi-image {
  width: 100%;
  max-width: 350px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 0 45px rgba(0, 0, 0, 0.24);
  margin-left: auto;
}

.almas-cest-quoi-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.1s ease-out;
  position: relative;
}

.qui-sommes-nous-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.qui-sommes-nous-gallery img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease;
  transform: translateY(var(--parallax-offset, 2%));
}

/* Name labels with hand-drawn lines */
.gallery-item-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
}

.name-label {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: -15px;
  z-index: 10;
}

.name-label[data-name="Sandra"] {
  align-items: center;
  margin-right: 0;
}

.name-label[data-name="Anna"] {
  align-items: center;
}

.name-label[data-name="Maryam"] {
  align-items: center;
  margin-left: 0;
}

.hand-drawn-line {
  width: 100%;
  height: 60px;
  margin-bottom: -10px;
}

.line-path {
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 120;
  stroke-dashoffset: 120;
  transition: stroke-dashoffset 0.8s ease-out;
}

.line-path.animate {
  stroke-dashoffset: 0;
}

.name-text {
  font-family: 'Caveat', cursive;
  font-size: 2rem;
  font-weight: 700;
  color: #74966E;
  transform: rotate(-2deg);
  display: inline-block;
  padding: 0.2rem 0.5rem;
  opacity: 0;
  transition: opacity 0.5s ease-out;
}

.name-text.show {
  opacity: 1;
}

.name-label[data-name="Sandra"] .name-text {
  transform: rotate(2deg);
}

.name-label[data-name="Anna"] .name-text {
  transform: rotate(1deg);
}

.name-label[data-name="Maryam"] .name-text {
  transform: rotate(-3deg);
}

.nos-prestations-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  max-width: 700px;
  margin: 0 auto;
}

.nos-prestations-images {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1.5rem;
  width: 100%;
}

.nos-prestations-images img:first-child {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: inset 0 0 45px rgba(0, 0, 0, 0.24);
}

.nos-prestations-images img:last-child {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: inset 0 0 45px rgba(0, 0, 0, 0.24);
}

.nos-prestations-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.nos-prestations-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 0;
  white-space: pre-line;
  opacity: 0.9;
  text-align: center;
}

.nos-prestations-contact {
  text-align: center;
  font-size: 0.95rem;
}

.nos-prestations-contact a {
  color: var(--primary-color);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.nos-prestations-contact a:hover {
  opacity: 0.7;
}

.nos-prestations-contact a i {
  font-size: 1.2rem;
  margin-right: 0.3rem;
  vertical-align: -0.1em;
}

.nos-prestations-contact .separator {
  margin: 0 1rem;
  opacity: 0.3;
}

.notre-cafe-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.notre-cafe-description {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.notre-cafe-description h2 {
  font-family: 'SugarMagic', 'Raleway', sans-serif;
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
  position: relative;
  padding-bottom: 1rem;
  text-align: center;
}

.notre-cafe-description h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--text-dark);
  opacity: 0.2;
}

.notre-cafe-description p {
  line-height: 1.6;
  opacity: 0.95;
  text-align: center;
}

.notre-cafe-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: stretch;
}

.notre-cafe-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.visit-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.visit-card {
  background: transparent;
  padding: 0.75rem 0;
}

.visit-card h3 {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.4rem;
  color: var(--text-dark);
  font-weight: 600;
  opacity: 0.5;
}

.visit-card p {
  margin: 0.15rem 0;
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.35;
  opacity: 0.85;
  font-weight: 400;
}

.visit-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}

.visit-card-link:hover {
  opacity: 0.7;
}

.notre-cafe-map {
  position: relative;
  width: 250px;
  height: 250px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background-color: #f5f1e8;
  margin-left: auto;
}

.notre-cafe-map #mapbox-map {
  position: relative;
  width: 250px;
  height: 250px;
}

.cafe-social {
  margin-top: auto;
}

.social-links {
  display: flex;
  justify-content: start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.social-links a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--text-dark);
  font-size: 1.75rem;
  background: rgba(0, 0, 0, 0.05);
  border: 2px solid transparent;
}

.social-links a:hover {
  background: var(--text-dark);
  color: var(--bg-light);
  border-color: var(--text-dark);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.social-links a[href*="instagram"] {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  color: white;
  border: none;
  position: relative;
  top: 2px;
}

.social-links a[href*="instagram"]:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(214, 36, 159, 0.4);
}

#cafe-tagline {
  margin: 0.75rem 0;
  font-size: 0.95rem;
  opacity: 0.95;
}

.mapboxgl-popup-content {
  border-radius: 8px;
  padding: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.mapboxgl-popup-close-button {
  font-size: 20px;
  padding: 4px 8px;
}

.mapboxgl-popup-close-button:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.mapboxgl-ctrl-logo {
  display: none !important;
}

.mapboxgl-ctrl-attrib-inner,
.mapboxgl-ctrl-attrib,
.mapboxgl-compact {
  display: none !important;
}

.footer {
  background: var(--bg-light);
  color: var(--text-dark);
  text-align: center;
  padding: 2rem 4rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.footer p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-dark);
  opacity: 0.6;
}

.footer a {
  color: var(--text-dark);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer a:hover {
  opacity: 0.7;
}

.footer .separator {
  margin: 0 1rem;
}

.menu-hero {
  height: 400px;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/images/menu-hero.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-light);
}

.menu-hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.menu-hero-content p {
  font-size: 1.25rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.menu-content {
  padding: 5rem 0;
}

.menu-section {
  margin-bottom: 5rem;
}

.menu-section:last-child {
  margin-bottom: 0;
}

.menu-section-header {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.menu-section-header h2 {
  font-family: 'SugarMagic', 'Raleway', sans-serif;
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 1rem;
  flex: 1;
}

.menu-section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--primary-color);
}

.section-image {
  width: 200px;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: inset 0 0 35px rgba(0, 0, 0, 0.2), var(--shadow);
}

.menu-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.menu-item {
  background: var(--bg-light);
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
  transition: transform 0.3s;
}

.menu-item:hover {
  transform: translateY(-3px);
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.5rem;
}

.menu-item h3 {
  color: var(--primary-color);
  font-size: 1.25rem;
}

.price {
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1.1rem;
}

.menu-item p {
  color: rgba(0, 0, 0, 0.7);
  font-size: 0.95rem;
}

@media (max-width: 1024px) {
  .container {
    padding: 0 28px;
  }

  .almas-cest-quoi,
  .qui-sommes-nous,
  .nos-prestations,
  .notre-cafe {
    padding: 3.5rem 3rem;
  }

  .almas-cest-quoi-content,
  .qui-sommes-nous-content,
  .nos-prestations-content,
  .notre-cafe-content {
    gap: 2rem;
  }

  .almas-cest-quoi-text,
  .qui-sommes-nous-text {
    max-width: 100%;
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  .floating-buttons-container {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  }

  .floating-button {
    padding: 0.65rem 1.2rem;
    font-size: 0.85rem;
  }

  .instagram-card-content span {
    flex: 0;
    text-align: left;
  }

  .instagram-card-content .instagram-handle {
    opacity: 0;
  }

  .instagram-card-content .instagram-cta {
    opacity: 1;
  }

  .footer p {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .footer .separator {
    display: none;
  }

  .hero-slide {
    background-position: 75% center;
  }

  .notre-cafe-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .notre-cafe-map {
    order: 1;
    height: 250px;
    width: 250px !important;
    align-self: center;
    margin-left: auto;
    margin-right: auto;
  }

  .notre-cafe-info {
    order: 2;
    gap: 2rem;
  }

  .visit-cards {
    align-items: center;
    text-align: center;
  }

  .cafe-social {
    text-align: center;
  }

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

  .almas-cest-quoi,
  .qui-sommes-nous,
  .nos-prestations,
  .notre-cafe {
    padding: 3rem 2rem;
  }

  .almas-cest-quoi h2,
  .qui-sommes-nous h2,
  .nos-prestations h2 {
    margin-bottom: 1.25rem;
    text-align: center;
  }

  .almas-cest-quoi h2::after,
  .qui-sommes-nous h2::after,
  .nos-prestations h2::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .almas-cest-quoi-text p,
  .qui-sommes-nous-text p,
  .nos-prestations-text p {
    margin-bottom: 1.25rem;
    text-align: center;
  }

  .almas-cest-quoi-text p:last-child,
  .qui-sommes-nous-text p:last-child {
    margin-bottom: 0;
  }

  .qui-sommes-nous-gallery {
    margin-top: 1.25rem;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .qui-sommes-nous-gallery img {
    height: 150px;
  }

  .name-text {
    font-size: 1.3rem;
  }

  .hand-drawn-line {
    height: 50px;
  }

  .line-path {
    stroke-width: 3 !important;
  }

  .hero-content {
    width: 60%;
    transform: translate(-50%, -58%);
  }

  .hero-logo {
    width: 95%;
  }

  .hero p {
    font-size: 1rem;
    margin-top: 0.5rem;
  }

  .hero-nav-buttons {
    bottom: 5rem;
  }

  .almas-cest-quoi-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .almas-cest-quoi-text {
    order: 1;
  }

  .almas-cest-quoi-content .instagram-card {
    order: 2;
    margin-left: auto;
    margin-right: auto;
  }

  .almas-cest-quoi-content,
  .nos-prestations-content {
    max-width: 500px;
  }

  .nos-prestations-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .nos-prestations-text {
    order: 1;
  }

  .nos-prestations-images {
    order: 2;
    margin-left: auto;
    margin-right: auto;
  }

  .almas-cest-quoi-text,
  .qui-sommes-nous-text,
  .nos-prestations-text {
    padding-right: 0;
    max-width: 100%;
    text-align: center;
  }

  .qui-sommes-nous-text {
    margin-bottom: 0;
  }

  .menu-section-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-image {
    width: 100%;
    height: 200px;
  }

  .menu-items {
    grid-template-columns: 1fr;
  }

  .menu-hero-content h1 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .almas-cest-quoi,
  .qui-sommes-nous,
  .nos-prestations,
  .notre-cafe {
    padding: 3.5rem 1.25rem;
  }

  .hero-content {
    width: 85%;
    padding: 0 15px;
    transform: translate(-50%, -60%);
  }

  .hero-logo {
    width: 95%;
  }

  .hero p {
    font-size: 0.95rem;
    margin-top: 0.5rem;
  }

  .hero-nav-buttons-desktop {
    display: none;
  }

  .hero-nav-buttons-mobile {
    display: flex;
    bottom: 8rem;
  }

  .hero-nav-button {
    padding: 0.6rem 1.25rem;
    min-width: 150px;
  }

  .hero-nav-button span {
    font-size: 0.8rem;
  }

  .scroll-indicator {
    bottom: 4.5rem;
  }

  .almas-cest-quoi h2,
  .qui-sommes-nous h2,
  .nos-prestations h2,
  .notre-cafe-description h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .almas-cest-quoi-text p,
  .qui-sommes-nous-text p,
  .nos-prestations-text p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1rem;
  }

  .almas-cest-quoi-image {
    margin: 1rem auto 0;
  }

  .qui-sommes-nous-gallery {
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    gap: 0.5rem;
  }

  .qui-sommes-nous-gallery img {
    height: 100px;
  }

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

  .hand-drawn-line {
    height: 40px;
  }

  .line-path {
    stroke-width: 4 !important;
  }

  .btn {
    padding: 0.75rem 2rem;
    font-size: 0.9rem;
  }


  .notre-cafe-map {
    height: 250px;
    margin: 1rem 0;
  }

  .visit-card {
    margin-bottom: 1rem;
  }

  .visit-card:last-child {
    margin-bottom: 0;
  }

  .visit-card h3 {
    font-size: 0.7rem;
    margin-bottom: 0.4rem;
  }

  .visit-card p {
    font-size: 0.9rem;
    margin: 0.25rem 0;
  }

  .cafe-social {
    margin-top: 1rem;
  }

  .footer {
    margin-top: 1.5rem;
    padding: 1.5rem 0;
  }
}