/* Root Variables */
:root {
  --primary-color: #d97706;
  --primary-hover: #b45309;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --bg-light: #f9fafb;
  --white: #ffffff;
  --transition: all 0.3s ease;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.2;
}

/* Navbar */
.navbar {
  padding: 1rem 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.navbar-brand .logo {
  height: 56px;
  width: auto;
  transition: var(--transition);
}

@media (min-width: 992px) {
  .navbar-brand .logo {
    height: 64px;
  }
}

.navbar-nav .nav-link {
  color: var(--text-dark);
  padding: 0.5rem 1rem;
  transition: var(--transition);
  font-weight: 500;
}

.navbar:not(.scrolled) .nav-link {
  color: #c8234d;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-color);
}

.phone-link {
  font-size: 0.95rem;
}

.btn-book {
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  transition: var(--transition);
}

.btn-book:hover {
  background-color: var(--primary-hover);
  transform: scale(1.05);
  color: var(--white);
}

.navbar-toggler {
  border: 1px solid rgba(0, 0, 0, 0.1); /* Optional: adds a subtle border */
  padding: 0.25rem 0.5rem;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.7%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  background-image: url("src/assets/gallery/4.jpg?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w3Nzg4Nzd8MHwxfHNlYXJjaHwxfHxlbGVnYW50JTIwY2F0ZXJpbmclMjBmb29kJTIwc3ByZWFkfGVufDF8fHx8MTc3MTgzMDg3Nnww&ixlib=rb-4.1.0&q=80&w=1080");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  color: var(--white);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
}

.hero-subtitle {
  color: #fbbf24;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

@media (min-width: 992px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.text-accent {
  color: #fbbf24;
}

.hero-description {
  font-size: 1.125rem;
  color: #e5e7eb;
  margin-bottom: 2rem;
}

.hero-buttons .btn {
  font-size: 1.125rem;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  transition: var(--transition);
}

.hero-buttons .btn-primary {
  background-color: var(--primary-color);
  border: none;
}

.hero-buttons .btn-primary:hover {
  background-color: var(--primary-hover);
  transform: scale(1.05);
}

.hero-buttons .btn-outline-light:hover {
  background-color: var(--white);
  color: var(--text-dark);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.scroll-indicator i {
  font-size: 2rem;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeIn 0.8s ease-out;
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s ease-out;
  animation-fill-mode: both;
}

.animate-fade-in-up:nth-child(2) {
  animation-delay: 0.2s;
}

.animate-fade-in-up:nth-child(3) {
  animation-delay: 0.4s;
}

/* Section Padding */
.section-padding {
  padding: 5rem 0;
}

@media (min-width: 992px) {
  .section-padding {
    padding: 8rem 0;
  }
}

/* Section Titles */
.section-subtitle {
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

@media (min-width: 992px) {
  .section-title {
    font-size: 3rem;
  }
}

.section-description {
  color: var(--text-light);
  font-size: 1.125rem;
}

/* Service Cards */
.service-card {
  background: var(--white);
  border-radius: 1rem;
  padding: 2rem;
  transition: var(--transition);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

.bg-rose {
  background-color: #ffe4e6;
  color: #e11d48;
}

.bg-blue {
  background-color: #dbeafe;
  color: #2563eb;
}

.bg-purple {
  background-color: #f3e8ff;
  color: #9333ea;
}

.bg-amber {
  background-color: #fef3c7;
  color: #d97706;
}

.bg-emerald {
  background-color: #d1fae5;
  color: #059669;
}

.bg-indigo {
  background-color: #e0e7ff;
  color: #4f46e5;
}

.service-title {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.service-description {
  color: var(--text-light);
}

/* Menu Section */
.menu-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.btn-filter {
  padding: 0.625rem 1.5rem;
  border-radius: 50px;
  background-color: #f3f4f6;
  color: var(--text-dark);
  border: none;
  transition: var(--transition);
}

.btn-filter:hover,
.btn-filter.active {
  background-color: var(--primary-color);
  color: var(--white);
  transform: scale(1.05);
  box-shadow: 0 10px 15px -3px rgba(217, 119, 6, 0.3);
}

.menu-item {
  transition: var(--transition);
}

.menu-item.hidden {
  display: none;
}

.menu-card {
  background: var(--white);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  height: 100%;
}

.menu-card:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.menu-image {
  position: relative;
  height: 256px;
  overflow: hidden;
}

.menu-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.menu-card:hover .menu-image img {
  transform: scale(1.1);
}

.menu-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.menu-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.875rem;
  z-index: 1;
}

.menu-content {
  padding: 1.5rem;
}

.menu-name {
  font-size: 1.25rem;
  margin-bottom: 0;
}

.menu-price {
  color: var(--primary-color);
  font-weight: 600;
}

.menu-description {
  color: var(--text-light);
  font-size: 0.875rem;
  margin-bottom: 0;
}

/* Gallery Section */
.gallery-item {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  height: 300px;
}

.gallery-item-large {
  height: 100%;
  min-height: 300px;
}

@media (min-width: 768px) {
  .gallery-item-large {
    min-height: 613px;
  }
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* Testimonials Section */
.bg-testimonial {
  background-color: #fef3c7;
}

.testimonial-card {
  background: var(--white);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  position: relative;
  height: 100%;
}

.testimonial-card:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.quote-icon {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 3rem;
  color: #fef3c7;
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.testimonial-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fbbf24, #d97706);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 600;
  margin-right: 1rem;
}

.testimonial-name {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.testimonial-role {
  color: var(--text-light);
  font-size: 0.875rem;
  margin-bottom: 0;
}

.testimonial-rating {
  color: #fbbf24;
}

.testimonial-text {
  color: var(--text-light);
  line-height: 1.7;
}

/* Contact Section */
.contact-form-wrapper {
  background: var(--white);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.form-label {
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-control,
.form-select {
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid #d1d5db;
  transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.1);
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.5rem;
}

.contact-info-item h4 {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

/* Footer */
.footer {
  background-color: #111827;
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.footer-heading {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.footer-text {
  color: #9ca3af;
}

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

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #9ca3af;
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: #fbbf24;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background-color: #1f2937;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: var(--transition);
  font-size: 1.25rem;
}

.social-link:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 2rem;
  margin-top: 2rem;
}

.footer-bottom p {
  color: #9ca3af;
  font-size: 0.875rem;
}

/* Button Styles */
.btn-primary {
  background-color: var(--primary-color);
  border: none;
  transition: var(--transition);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: scale(1.05);
}

/* Utility Classes */
.bg-light {
  background-color: var(--bg-light);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .hero-section {
    background-attachment: scroll;
  }

  .navbar-collapse {
    background-color: var(--white);
    padding: 1rem;
    border-radius: 0.5rem;
    margin-top: 1rem;
  }

  .navbar:not(.scrolled) .navbar-collapse .nav-link {
    color: var(--text-dark);
  }
}

/* Scroll animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

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

/* ── WhatsApp Floating Button ── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.whatsapp-float a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  background-color: #25d366;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  text-decoration: none;
}

.whatsapp-float a:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.55);
}

.whatsapp-float a svg {
  width: 30px;
  height: 30px;
  fill: #ffffff;
}

.whatsapp-tooltip {
  background: #fff;
  color: #111;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
  pointer-events: none;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* Pulse ring animation on the button */
.whatsapp-float a::after {
  content: "";
  position: absolute;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 3px solid rgba(37, 211, 102, 0.5);
  animation: wa-pulse 2s ease-out infinite;
}

@keyframes wa-pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  70% {
    transform: scale(1.5);
    opacity: 0;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}
