:root {
  --bg-color: #FAF9F6;
  --accent-color: #ef7814;
  --text-color: #010100;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .display-font {
  font-family: 'Oswald', sans-serif;
}

.gradient-title {
  background: linear-gradient(135deg, #ffc107 0%, var(--accent-color) 40%, #c95c00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.15);
  font-weight: 700;
  display: inline-block;
}

.text-shadow {
  text-shadow: 2px 2px 6px rgba(0,0,0,0.8);
}

.navbar {
  background-color: rgba(250, 249, 246, 0.95) !important;
  backdrop-filter: blur(10px);
}

.hero-section {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url('../i/hero_casablanca.jpg') center/cover no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  padding-top: 86px; /* Offset for navbar */
}

.btn-cta {
  background: linear-gradient(45deg, var(--accent-color), #ff9800);
  border: none;
  color: white;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(239, 120, 20, 0.5);
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(239, 120, 20, 0.7);
  color: white;
}

.service-box {
  background-color: white;
  border-bottom: 5px solid var(--accent-color);
  height: 100%;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.service-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

/* Slideshow Strip */
.slideshow-strip {
  width: 100%;
  overflow: hidden;
  background-color: #E2E0D8;
  padding: 40px 0;
  position: relative;
  box-shadow: inset 0 5px 15px rgba(0,0,0,0.05);
}

.slide-track {
  display: flex;
  width: calc(320px * 10);
  animation: scroll 25s linear infinite;
}

.slide-track img {
  width: 300px;
  height: 200px;
  object-fit: cover;
  margin: 0 10px;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-320px * 5)); }
}

/* Reviews Animation */
.reviews-section {
  background-color: var(--bg-color);
}

.review-card {
  position: absolute;
  background: white;
  border-left: 5px solid var(--accent-color);
  border-radius: 10px;
  padding: 20px 30px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  width: 360px;
  max-width: 85vw;
  z-index: 10;
  display: flex;
  flex-direction: column;
}

.review-card strong {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  color: var(--accent-color);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.review-card p {
  font-size: 1rem;
  margin-bottom: 0;
  color: var(--text-color);
  font-style: italic;
  line-height: 1.5;
}

.review-card .like-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #ffc107;
  font-size: 1.8rem;
}

.bg-review {
  z-index: 1;
  opacity: 0.35;
  filter: blur(2px);
  background: #f0efe9;
  box-shadow: none;
}

@keyframes slide-ltr {
  0% { left: -400px; opacity: 0; }
  5% { opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  95% { opacity: 0; }
  100% { left: 110vw; opacity: 0; }
}

@keyframes slide-rtl {
  0% { left: 110vw; opacity: 0; }
  5% { opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  95% { opacity: 0; }
  100% { left: -400px; opacity: 0; }
}

/* Contact Footer Section */
.footer-section {
  position: relative;
  background-image: url('../i/footer_casablanca.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.footer-overlay {
  background-color: rgba(1, 1, 0, 0.92);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.contact-icon {
  color: var(--accent-color);
  width: 25px;
  text-align: center;
}

/* WhatsApp Button */
.whatsapp-btn {
  position: fixed;
  bottom: 40px;
  right: 40px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  z-index: 1000;
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  color: white;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.whatsapp-text {
  display: none;
}

@media (max-width: 768px) {
  .whatsapp-btn {
    bottom: 20px;
    right: 5%;
    width: 90%;
    border-radius: 35px;
    font-size: 24px;
    font-weight: bold;
    height: 65px;
  }
  .whatsapp-text {
    display: inline;
    margin-left: 12px;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 1px;
  }
  .footer-section {
    padding-bottom: 110px !important; /* Make room for floating button */
  }
  .hero-section {
    padding-top: 100px;
  }
  .gradient-title {
    font-size: 2.5rem;
  }
}
