/* style.css - اكتب هنا التنسيقات المخصصة بجانب Bootstrap */

/* Coffee Website Palette from YouTube Video */
:root {
  --main-bg: #f7f5f2;
  /* خلفية رئيسية بيج فاتح مائل للرمادي */
  --card-bg: #fff;
  /* خلفية البطاقات أبيض نقي */
  --navbar-bg: #6f4e37;
  /* بني متوسط للنافبار */
  --footer-bg: #3e2723;
  /* بني داكن للفوتر */
  --accent: #ffb26b;
  /* برتقالي دافي للأزرار */
  --accent2: #bfa084;
  /* بيج دافي للتفاصيل */
  --text-main: #3e2723;
  /* نص أساسي بني داكن */
  --text-secondary: #7c6f65;
  /* نص ثانوي بني فاتح */
  --border: #e0d6c3;
  /* حدود خفيفة بيج */
  --shadow: 0 2px 16px rgba(111, 78, 55, 0.10);
  --gradient-primary: linear-gradient(135deg, #ffb26b 0%, #ff9f43 100%);
  --gradient-secondary: linear-gradient(135deg, #bfa084 0%, #d4a574 100%);
  --gradient-card: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  --shadow-hover: 0 20px 40px rgba(111, 78, 55, 0.15);
  --shadow-card: 0 10px 30px rgba(111, 78, 55, 0.1);
  --shadow-button: 0 8px 25px rgba(255, 178, 107, 0.3);
  --shadow-button-hover: 0 12px 35px rgba(255, 178, 107, 0.4);
}

html,
body {
  /* overflow-x: hidden !important;*/
  max-width: 100vw;
  font-family: 'Tajawal', Arial, sans-serif;
  background: var(--main-bg);
  color: var(--text-main);
  letter-spacing: 0.01em;
  scroll-behavior: smooth;
  line-height: 1.6;
}

/* تحسين التحميل */
body {
  opacity: 1;
  /* transform: translateY(0); */
  transition: all 0.3s ease;
}

/* تحسينات عامة للتصميم */
* {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 900;
  color: var(--navbar-bg);
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
  position: relative;
}

p,
li,
label,
input,
textarea,
.btn {
  font-weight: 400;
  color: var(--text-main);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  margin: 0;
  border-radius: 0;
  transition: all 0.4s ease;
  z-index: 1000;
  background-color: white;
  box-shadow: none;
}

#navbar.scrolled {
  width: 90%;
  margin: 0 auto;
  left: 2.5%;
  right: 2.5%;
  top: 2.5%;
  border-radius: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}


.color-btn .btn {
  background-color: var(--accent);
  width: 300px;
  margin: 0 auto;
  transition: all 0.3s;
}

.color-btn .btn:hover {
  /* background-color:#fdbc80; */
  background-color: var(--footer-bg);
  color: var(--card-bg);
}

/* Navbar */
.bg-brown,
.navbar,
.sticky-navbar {
  background: var(--navbar-bg) !important;
  color: var(--main-bg) !important;
  box-shadow: var(--shadow);
  /* border-radius: 0 0 18px 18px; */
}

.navbar-brand,
.footer-link:hover {
  color: var(--accent) !important;
}

.navbar-nav .nav-link {
  color: var(--main-bg) !important;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  color: var(--accent) !important;
}

/* Sections */
.hero-section,
.about-section,
.menu-section,
.gallery-section,
.testimonials-section,
.contact-section {
  background: var(--main-bg);
}

/* Cards & Boxes */
.menu-card,
.testimonial-card,
.bg-white,
.contact-section .bg-white {
  background: var(--card-bg) !important;
  color: var(--text-main) !important;
  border-radius: 18px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

/* Gallery */
.gallery-img-wrap {
  background: var(--card-bg);
  border: 1px solid var(--border);
}

/* Footer */
.footer-section {
  background: linear-gradient(135deg, #2C1810 0%, #3D2315 50%, #2C1810 100%);
  color: #F5F5DC;
  position: relative;
  margin-top: 0 !important;
}

.footer-bg-pattern {
  background-image:
    radial-gradient(circle at 20% 80%, rgba(255, 178, 107, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(123, 182, 134, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(255, 178, 107, 0.05) 0%, transparent 50%);
  opacity: 0.6;
}

.footer-wave {
  z-index: 1;
}

.footer-wave svg {
  filter: drop-shadow(0 -2px 4px rgba(0, 0, 0, 0.1));
}

/* Footer Brand Section */
.footer-brand-section {
  position: relative;
}

.footer-logo-container {
  background: linear-gradient(135deg, #FFB26B, #F5A623);
  border-radius: 50%;
  padding: 8px;
  box-shadow: 0 4px 12px rgba(255, 178, 107, 0.3);
  transition: all 0.3s ease;
}

.footer-logo-container:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 20px rgba(255, 178, 107, 0.4);
}

.footer-logo {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
  transition: all 0.3s ease;
}

.footer-brand-title {
  background: linear-gradient(135deg, #FFB26B, #F5A623);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.8rem;
  letter-spacing: 1px;
}

.footer-brand-subtitle {
  color: #D4AF37;
  font-size: 0.95rem;
  font-weight: 500;
}

.footer-about-text {
  color: #E8E8E8;
  line-height: 1.7;
  font-size: 0.95rem;
  opacity: 0.9;
}

/* Footer Section Titles */
.footer-section-title {
  color: #FFB26B;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  position: relative;
  padding-bottom: 8px;
}

.footer-section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, #FFB26B, #F5A623);
  border-radius: 1px;
}

/* Social Media Links */
.footer-social-section {
  margin-top: 2rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.3s ease;
}

.social-link:hover::before {
  transform: scale(1);
}

.instagram-link {
  background: linear-gradient(135deg, #E4405F, #C13584);
  color: #fff;
}

.facebook-link {
  background: linear-gradient(135deg, #1877F2, #0D6EFD);
  color: #fff;
}

.twitter-link {
  background: linear-gradient(135deg, #1DA1F2, #0EA5E9);
  color: #fff;
}

.whatsapp-link {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
}

.social-link:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Footer Links */
.footer-links-list,
.footer-services-list {
  margin: 0;
  padding: 0;
}

.footer-link-item,
.footer-service-item {
  display: flex;
  align-items: center;
  color: #E8E8E8;
  text-decoration: none;
  padding: 8px 0;
  transition: all 0.3s ease;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.footer-link-item::before,
.footer-service-item::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 178, 107, 0.1));
  transition: width 0.3s ease;
}

.footer-link-item:hover::before,
.footer-service-item:hover::before {
  width: 100%;
}

.footer-link-item:hover,
.footer-service-item:hover {
  color: #FFB26B;
  transform: translateX(-5px);
  text-decoration: none;
}

.footer-link-item svg,
.footer-service-item svg {
  transition: all 0.3s ease;
}

.footer-link-item:hover svg,
.footer-service-item:hover svg {
  transform: scale(1.2);
  color: #FFB26B;
}

/* Contact Info */
.footer-contact-info {
  position: relative;
}

.contact-item {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 178, 107, 0.1);
  transition: all 0.3s ease;
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-item:hover {
  transform: translateX(-5px);
}

.contact-icon-container {
  background: linear-gradient(135deg, #FFB26B, #F5A623);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(255, 178, 107, 0.3);
  transition: all 0.3s ease;
}

.contact-item:hover .contact-icon-container {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 20px rgba(255, 178, 107, 0.4);
}

.contact-icon-container svg {
  color: #fff;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.contact-item h6 {
  color: #FFB26B;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.contact-item p {
  color: #E8E8E8;
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.5;
}

/* Newsletter Section */
.footer-newsletter-section {
  background: linear-gradient(135deg, rgba(255, 178, 107, 0.1), rgba(123, 182, 134, 0.1));
  border-radius: 20px;
  border: 1px solid rgba(255, 178, 107, 0.2);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.footer-newsletter-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 178, 107, 0.05) 50%, transparent 70%);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

.newsletter-container {
  max-width: 500px;
  position: relative;
  z-index: 2;
}

.newsletter-container h5 {
  color: #FFB26B;
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.newsletter-container p {
  color: #E8E8E8;
  font-size: 0.95rem;
  opacity: 0.9;
}

.newsletter-form {
  max-width: 400px;
}

.newsletter-input {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 178, 107, 0.3);
  border-radius: 12px;
  color: #fff;
  padding: 12px 16px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-input:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: #FFB26B;
  box-shadow: 0 0 0 3px rgba(255, 178, 107, 0.2);
  outline: none;
}

.newsletter-btn {
  background: linear-gradient(135deg, #FFB26B, #F5A623);
  border: none;
  border-radius: 12px;
  color: #fff;
  padding: 12px 20px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(255, 178, 107, 0.3);
  display: flex;
  align-items: center;
  gap: 8px;
}

.newsletter-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 178, 107, 0.4);
  background: linear-gradient(135deg, #F5A623, #FFB26B);
  color: #fff;
}

.newsletter-btn:active {
  transform: translateY(0);
}

/* Footer Bottom */
.footer-bottom-section {
  border-top: 1px solid rgba(255, 178, 107, 0.2);
  padding-top: 20px;
  margin-top: 20px;
}

.footer-copyright {
  color: #E8E8E8;
  font-size: 0.9rem;
  opacity: 0.8;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-bottom-link {
  color: #E8E8E8;
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  position: relative;
  padding: 4px 0;
}

.footer-bottom-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, #FFB26B, #F5A623);
  transition: width 0.3s ease;
}

.footer-bottom-link:hover {
  color: #FFB26B;
  text-decoration: none;
}

.footer-bottom-link:hover::after {
  width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-section {
    padding: 3rem 0 2rem !important;
  }

  .footer-brand-title {
    font-size: 1.5rem;
  }

  .footer-section-title {
    font-size: 1rem;
  }

  .social-link {
    width: 40px;
    height: 40px;
  }

  .contact-icon-container {
    width: 35px;
    height: 35px;
  }

  .newsletter-form {
    flex-direction: column;
    gap: 12px;
  }

  .newsletter-btn {
    width: 100%;
    justify-content: center;
  }

  .footer-bottom-links {
    justify-content: center;
    gap: 15px;
  }
}

@media (max-width: 576px) {
  .footer-section {
    padding: 2rem 0 1.5rem !important;
  }

  .footer-brand-section {
    text-align: center;
    margin-bottom: 2rem;
  }

  .footer-links-section,
  .footer-services-section {
    text-align: center;
    margin-bottom: 2rem;
  }

  .footer-contact-section {
    text-align: center;
  }

  .contact-item {
    justify-content: center;
    text-align: center;
  }

  .footer-bottom-section {
    text-align: center;
  }

  .footer-bottom-links {
    justify-content: center;
    margin-top: 1rem;
  }
}

/* Animation Classes */
.footer-section [class*="col-"] {
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
  transform: translateY(30px);
}

.footer-section [class*="col-"]:nth-child(1) {
  animation-delay: 0.1s;
}

.footer-section [class*="col-"]:nth-child(2) {
  animation-delay: 0.2s;
}

.footer-section [class*="col-"]:nth-child(3) {
  animation-delay: 0.3s;
}

.footer-section [class*="col-"]:nth-child(4) {
  animation-delay: 0.4s;
}

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

/* Hover Effects */
.footer-section:hover .footer-bg-pattern {
  opacity: 0.8;
}

/* Scroll Animation */
.footer-section {
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.8s ease;
}

.footer-section.animate {
  transform: translateY(0);
  opacity: 1;
}

/* Back to Top */
#backToTop {
  background: var(--accent);
  color: var(--footer-bg);
  opacity: 0;
  pointer-events: none;
  transform: translateY(30px);
  transition: opacity 0.3s, transform 0.3s;
}

#backToTop.show {
  background: var(--accent2);
  color: var(--main-bg);
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* تحسينات عامة */
.section-title {
  color: var(--accent);
  font-weight: 900;
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--text-secondary);
  font-size: 1.1em;
  margin-bottom: 2rem;
}

/* تحسين المسافات الرأسية بين الأقسام */
.hero-section,
.about-section,
.menu-section,
.gallery-section,
.testimonials-section,
.contact-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

@media (max-width: 991px) {

  .hero-section,
  .about-section,
  .menu-section,
  .gallery-section,
  .testimonials-section,
  .contact-section {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}

/* مسافة إضافية حول العناوين */
.section-title,
h2,
h1 {
  margin-bottom: 2rem !important;
}

/* مسافة بين العناصر داخل كل سكشن */
.menu-card,
.testimonial-card,
.gallery-img-wrap,
.about-section img,
.contact-section .bg-white {
  margin-bottom: 2rem;
}

/* ضبط محاذاة الصور والنصوص */
.about-section .row,
.contact-section .row {
  align-items: center;
}

/* White space حول العناصر المهمة */
.menu-section .row,
.gallery-section .row,
.testimonials-section .container,
.contact-section .container {
  margin-top: 0.5rem;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--main-bg) 0%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
}

.hero-section .hero-img {
  max-height: 420px;
  filter: drop-shadow(0 8px 24px rgba(111, 78, 55, 0.15));
}

@media (max-width: 991px) {
  .hero-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .hero-section .hero-img {
    max-height: 320px;
  }
}

/* Menu Section */
.menu-section {
  background: linear-gradient(135deg, var(--main-bg) 0%, #f8f9fa 100%);
}

.menu-card {
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.menu-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(111, 78, 55, 0.15);
}

.menu-card .card-body {
  padding: 1.5rem;
}

.menu-card:hover .card-body {
  background: var(--card-bg);
}

.menu-card .card-title {
  color: var(--navbar-bg);
  font-weight: 700;
}

.menu-card .badge.bg-brown {
  background: var(--accent) !important;
  color: var(--footer-bg) !important;
}

.menu-card .badge.bg-gold {
  background: var(--accent2) !important;
  color: var(--main-bg) !important;
}

/* Gallery Section */
.gallery-section {
  background: var(--main-bg);
}

.gallery-img-wrap {
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

.gallery-img-wrap:hover {
  transform: scale(1.02);
}

.gallery-img {
  transition: all 0.3s ease;
}

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

/* Testimonials Section */
.testimonials-section {
  background: linear-gradient(135deg, var(--main-bg) 0%, #f8f9fa 100%);
}

.testimonial-card {
  border-radius: 18px;
  background: var(--card-bg);
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.testimonial-card img {
  border: 3px solid var(--accent);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: var(--accent);
  border-radius: 50%;
}

/* Contact Section */
.contact-section {
  background: var(--main-bg);
}

.contact-section .form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 0.2rem rgba(255, 178, 107, 0.25);
}

.contact-section .btn {
  background: var(--accent) !important;
  color: var(--footer-bg) !important;
  border: none;
  font-weight: 600;
}

.contact-section .btn:hover {
  background: var(--navbar-bg) !important;
  color: var(--main-bg) !important;
}

.contact-section h5 {
  color: var(--navbar-bg);
  font-weight: 700;
}

/* Map Responsive */
.map-responsive {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.map-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Sticky Navbar */
.sticky-navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

/* Back to Top Button */
#backToTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  font-size: 20px;
  cursor: pointer;
  z-index: 1000;
  transition: all 0.3s ease;
}

#backToTop.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Hero Background Pattern */
.hero-bg-pattern {
  background: radial-gradient(circle at 20% 80%, rgba(255, 178, 107, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(191, 160, 132, 0.1) 0%, transparent 50%);
}

.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-section h1 {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

@media (min-width: 992px) {
  .hero-section h1 {
    font-size: 4rem;
  }
}

.hero-section .lead {
  font-size: 1.25rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hero-section .hero-img {
  max-height: 420px;
  filter: drop-shadow(0 8px 24px rgba(111, 78, 55, 0.15));
}

.hero-cta {
  background: var(--gradient-primary) !important;
  color: var(--footer-bg) !important;
  border: none;
  font-weight: 700;
  padding: 15px 30px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(255, 178, 107, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 178, 107, 0.4);
  background: linear-gradient(135deg, #ff9f43 0%, var(--accent) 100%) !important;
}

@media (min-width: 992px) {
  .about-section .col-lg-6:first-child {
    padding-right: 3rem;
  }

  .about-section .col-lg-6:last-child {
    padding-left: 3rem;
  }
}

/* Menu Image Wrapper */
.menu-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
  border-radius: 12px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.menu-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  border-radius: 12px;
}

.menu-card.drink-food-card {
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.3s ease;
}

@media (max-width: 991px) {
  .menu-img-wrap {
    height: 180px;
  }

  .menu-card.drink-food-card {
    margin-bottom: 1.5rem;
  }
}

/* صورة المشروب طويلة ومناسبة */
.drink-image-container {
  position: relative;
  height: 340px;
  overflow: hidden;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.drink-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  border-radius: 0;
}

.drink-card:hover .drink-image {
  transform: scale(1.05);
}

/* ===== MODERN DRINK CARDS - PROFESSIONAL DESIGN ===== */

/* Card Container */
.drink-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  height: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.drink-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(255, 178, 107, 0.15);
  border-color: rgba(255, 178, 107, 0.3);
}

/* Image Container */
.drink-image-container {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.drink-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: scale(1);
}

.drink-card:hover .drink-image {
  transform: scale(1.08);
}

/* Card Overlay */
.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(44, 24, 16, 0.8), rgba(61, 35, 21, 0.9));
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.drink-card:hover .card-overlay {
  opacity: 1;
}

.overlay-content {
  text-align: center;
  color: #ffffff;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.drink-card:hover .overlay-content {
  transform: translateY(0);
}

.overlay-price {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #FFB26B;
}

.overlay-btn {
  background: linear-gradient(135deg, #FFB26B, #F5A623);
  color: #ffffff;
  border: none;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 178, 107, 0.3);
}

.overlay-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 178, 107, 0.4);
}

/* Card Body */
.card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  height: calc(100% - 220px);
  background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
}

/* Card Header */
.card-header-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #2C1810;
  margin: 0;
  line-height: 1.3;
  flex: 1;
}

/* Card Badge */
.card-badge {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #ffffff;
  background: linear-gradient(135deg, #FFB26B, #F5A623);
  box-shadow: 0 2px 8px rgba(255, 178, 107, 0.3);
  margin-right: 8px;
}

.card-badge.new {
  background: linear-gradient(135deg, #25D366, #128C7E);
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
}

.card-badge.popular {
  background: linear-gradient(135deg, #E4405F, #C13584);
  box-shadow: 0 2px 8px rgba(228, 64, 95, 0.3);
}

.card-badge.special {
  background: linear-gradient(135deg, #9C27B0, #673AB7);
  box-shadow: 0 2px 8px rgba(156, 39, 176, 0.3);
}

.card-badge.classic {
  background: linear-gradient(135deg, #607D8B, #455A64);
  box-shadow: 0 2px 8px rgba(96, 125, 139, 0.3);
}

.card-badge.healthy {
  background: linear-gradient(135deg, #4CAF50, #388E3C);
  box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
}

/* Description */
.card-description {
  font-size: 0.9rem;
  color: #6c757d;
  line-height: 1.5;
  margin-bottom: 1rem;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Features */
.card-features {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.feature-tag {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  color: #495057;
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.feature-tag:hover {
  background: linear-gradient(135deg, #FFB26B, #F5A623);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 178, 107, 0.3);
}

/* Card Footer */
.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.price-tag {
  background: linear-gradient(135deg, #7BB686, #5A8B6A);
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(123, 182, 134, 0.3);
  transition: all 0.3s ease;
}

.price-tag:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(123, 182, 134, 0.4);
}

/* Rating */
.rating {
  display: flex;
  align-items: center;
  gap: 4px;
}

.stars {
  color: #FFB26B;
  font-size: 0.8rem;
  letter-spacing: 1px;
}

.rating-text {
  font-size: 0.8rem;
  font-weight: 600;
  color: #6c757d;
}

/* Premium Card Effects */
.premium-card {
  position: relative;
}

.premium-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background: linear-gradient(135deg, #FFB26B, #F5A623, #7BB686, #5A8B6A);
  border-radius: 25px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.premium-card:hover::before {
  opacity: 1;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .drink-image-container {
    height: 200px;
  }

  .card-body {
    padding: 1.25rem;
  }

  .card-title {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .drink-card {
    margin-bottom: 1.5rem;
  }

  .drink-image-container {
    height: 180px;
  }

  .card-body {
    padding: 1rem;
  }

  .card-title {
    font-size: 1.1rem;
  }

  .card-description {
    font-size: 0.85rem;
  }

  .feature-tag {
    font-size: 0.7rem;
    padding: 5px 10px;
  }

  .price-tag {
    font-size: 0.9rem;
    padding: 6px 12px;
  }

  .overlay-price {
    font-size: 1.3rem;
  }

  .overlay-btn {
    padding: 10px 20px;
    font-size: 0.85rem;
  }
}

@media (max-width: 576px) {
  .drink-image-container {
    height: 160px;
  }

  .card-body {
    padding: 0.875rem;
  }

  .card-header-section {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }

  .card-badge {
    align-self: flex-start;
    margin-right: 0;
  }

  .card-features {
    gap: 0.4rem;
  }

  .feature-tag {
    font-size: 0.65rem;
    padding: 4px 8px;
  }

  .card-footer {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }

  .rating {
    align-self: flex-end;
  }
}

/* Animation Classes */
.drink-card {
  animation: cardSlideIn 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  opacity: 0;
  transform: translateY(40px);
}

.drink-card:nth-child(1) {
  animation-delay: 0.1s;
}

.drink-card:nth-child(2) {
  animation-delay: 0.2s;
}

.drink-card:nth-child(3) {
  animation-delay: 0.3s;
}

.drink-card:nth-child(4) {
  animation-delay: 0.4s;
}

.drink-card:nth-child(5) {
  animation-delay: 0.5s;
}

.drink-card:nth-child(6) {
  animation-delay: 0.6s;
}

@keyframes cardSlideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hover Animations */
.drink-card:hover .feature-tag {
  animation: tagFloat 0.6s ease-in-out;
}

@keyframes tagFloat {

  0%,
  100% {
    transform: translateY(-1px);
  }

  50% {
    transform: translateY(-3px);
  }
}

/* Loading State */
.drink-card.loading {
  animation: cardPulse 1.5s ease-in-out infinite;
}

@keyframes cardPulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.7;
  }
}

/* Focus States for Accessibility */
.drink-card:focus-within {
  outline: 2px solid #FFB26B;
  outline-offset: 2px;
}

.overlay-btn:focus {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
  .drink-card {
    background: #1a1a1a;
    border-color: rgba(255, 255, 255, 0.1);
  }

  .card-body {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  }

  .card-title {
    color: #ffffff;
  }

  .card-description {
    color: #b0b0b0;
  }

  .feature-tag {
    background: linear-gradient(135deg, #2d2d2d, #404040);
    color: #b0b0b0;
    border-color: rgba(255, 255, 255, 0.1);
  }
}

.drinks-cards-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 16px;
}

@media (min-width: 500px) {
  .drinks-cards-container {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}

@media (min-width: 992px) {
  .drinks-cards-container {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
  }
}

/* === MODERN NAVBAR (Enhanced Gradient & CTA) === */
.navbar-modern {
  background: var(--navbar-bg) !important;
  /* border-radius: 0 0 24px 24px; */
  box-shadow: 0 8px 32px rgba(111, 78, 55, 0.13);
}

.navbar-modern .navbar-brand {
  font-size: 2rem;
  font-weight: 900;
  color: #ffb26b !important;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar-modern .navbar-brand img {
  border-radius: 50%;
  background: linear-gradient(135deg, #ffb26b 0%, #fffbe6 100%);
  box-shadow: 0 4px 18px rgba(255, 178, 107, 0.18), 0 1.5px 8px rgba(111, 78, 55, 0.10);
  padding: 4px;
  border: 2.5px solid #fffbe6;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.navbar-modern .navbar-brand img:hover,
.navbar-modern .navbar-brand img:focus {
  transform: scale(1.08) rotate(-3deg);
  box-shadow: 0 8px 32px rgba(255, 178, 107, 0.28), 0 2px 12px rgba(111, 78, 55, 0.13);
  border-color: #ffb26b;
}

.navbar-modern .navbar-nav {
  gap: 1.5rem;
}

.navbar-modern .nav-link {
  position: relative;
  color: #fff !important;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0.5rem 1.1rem;
  border-radius: 16px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: visible;
  z-index: 1;
}

.navbar-modern .nav-link.active,
.navbar-modern .nav-link:focus,
.navbar-modern .nav-link:hover {
  color: #ffb26b !important;
  background: rgba(255, 178, 107, 0.10);
}

.navbar-modern .nav-link.active::after,
.navbar-modern .nav-link:focus::after,
.navbar-modern .nav-link:hover::after {
  width: 80%;
  opacity: 1;
}

.navbar-modern .nav-link::after {
  content: '';
  display: block;
  position: absolute;
  right: 10%;
  left: 10%;
  bottom: 6px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, #ffb26b 0%, #ff9f43 100%);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: 0;
  opacity: 0;
  z-index: 2;
}

.navbar-modern .nav-link.active {
  font-weight: 900;
  letter-spacing: 1px;
  background: rgba(255, 178, 107, 0.18);
}

/* Hamburger Button Modern */
.navbar-modern .navbar-toggler {
  border: none;
  background: transparent;
  outline: none;
  box-shadow: none;
  padding: 8px 12px;
  border-radius: 12px;
  transition: background 0.2s;
}

.navbar-modern .navbar-toggler:focus,
.navbar-modern .navbar-toggler:hover {
  background: rgba(255, 178, 107, 0.12);
}

.navbar-modern .navbar-toggler-icon {
  background-image: none;
  width: 28px;
  height: 28px;
  position: relative;
  display: inline-block;
}

.navbar-modern .navbar-toggler-icon::before,
.navbar-modern .navbar-toggler-icon::after,
.navbar-modern .navbar-toggler-icon span {
  content: '';
  display: block;
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, #ffb26b 0%, #ff9f43 100%);
  border-radius: 2px;
  margin: 5px 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-modern .navbar-toggler-icon span {
  margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .navbar-modern .navbar-nav {
    gap: 0.5rem;
    background: linear-gradient(135deg, #6f4e37 80%, #bfa084 100%);
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(111, 78, 55, 0.10);
    padding: 1.2rem 0.5rem;
    margin-top: 0.5rem;
  }

  .navbar-modern .nav-link {
    font-size: 1.05rem;
    padding: 0.7rem 1.2rem;
    border-radius: 12px;
    text-align: right;
  }

  .navbar-modern .navbar-brand img {
    width: 38px;
    height: 38px;
    padding: 3px;
  }
}

@media (max-width: 576px) {
  .navbar-modern {
    border-radius: 0 0 16px 16px;
    padding: 0.4rem 0;
  }

  .navbar-modern .navbar-brand {
    font-size: 1.3rem;
    gap: 6px;
  }

  .navbar-modern .navbar-brand img {
    width: 32px;
    height: 32px;
    padding: 2px;
  }
}

/* RTL Support */
[dir="rtl"] .navbar-modern .nav-link::after {
  right: 10%;
  left: 10%;
}

.navbar-modern .btn-cta {
  background: linear-gradient(90deg, #ffb26b 0%, #ff9f43 100%);
  color: #fff !important;
  border: none;
  border-radius: 24px;
  font-weight: 900;
  font-size: 1.08rem;
  box-shadow: 0 4px 18px rgba(255, 178, 107, 0.18);
  padding: 10px 28px;
  letter-spacing: 1px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.navbar-modern .btn-cta:hover,
.navbar-modern .btn-cta:focus {
  background: linear-gradient(90deg, #ff9f43 0%, #ffb26b 100%);
  color: #fff !important;
  box-shadow: 0 8px 32px rgba(255, 178, 107, 0.28);
  transform: translateY(-2px) scale(1.04);
  outline: none;
}

.navbar-modern .btn-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  box-shadow: 0 0 16px 4px rgba(255, 178, 107, 0.18);
  opacity: 0.7;
  pointer-events: none;
  transition: box-shadow 0.3s;
}

.container,
.container-fluid,
.row,
section,
header,
footer {
  box-sizing: border-box;
  max-width: 100vw;
  /* overflow-x: hidden;*/
}

@media (max-width: 576px) {

  body,
  html {
    padding: 0 !important;
    margin: 0 !important;
  }

  .container,
  .container-fluid,
  .row,
  section,
  header,
  footer {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}

@media (max-width: 576px) {

  .row,
  .col,
  [class^="col-"] {
    /* overflow-x: hidden !important;*/
    max-width: 100vw !important;
  }
}

.custom-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 991px) {
  .custom-container {
    max-width: 100%;
    padding: 0 8px;
  }
}

/* #################################################################### */
/* Scroll Up */
.up {
  width: 50px;
  height: 50px;
  position: fixed !important;
  bottom: 30px;
  right: 30px;
  background-color: var(--accent);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  transform: scale(0);
  transition: 0.3s ease;
  cursor: pointer;
  z-index: 999999;
}

.up img {
  width: 30px;
  height: auto;
}

.up:hover {
  bottom: 35px;
  transform: scale(1.1);
}

.up.show {
  transform: scale(1);
}

@media (max-width: 768px) {
  .up {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 480px) {
  .up {
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
  }
}

/* #################################################################### */
/* whatsapp */
.whatsapp {
  width: 50px;
  height: 50px;
  padding: 5px;
  position: fixed;
  bottom: 30px;
  left: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50% 50% 50% 50%;
  background-color: #25D366;
  cursor: pointer;
  z-index: 999999;
  transition: transform 0.3s ease, bottom 0.3s ease;
}

.whatsapp img {
  width: 25px;
  height: auto;
  transition: all 0.5s;
}

.whatsapp:hover img {
  transform: rotate(360deg);
}

.whatsapp:hover {
  bottom: 35px;
}

@media (max-width: 768px) {
  .whatsapp {
    bottom: 20px;
    left: 20px;
    width: 45px;
    height: 45px;
  }

  .whatsapp img {
    width: 20px;
  }
}

@media (max-width: 480px) {
  .whatsapp {
    bottom: 15px;
    left: 15px;
    width: 40px;
    height: 40px;
  }
}

/* #################################################################### */
/* phone */
.phone {
  width: 50px;
  height: 50px;
  padding: 5px;
  position: fixed;
  bottom: 90px;
  left: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50% 50% 50% 50%;
  color: var(--main-bg);
  background-color: var(--accent2);
  cursor: pointer;
  z-index: 999999 !important;
  transition: transform 0.3s ease, bottom 0.3s ease;
  pointer-events: auto !important;
}

a {
  text-decoration: none !important;
}

.phone:hover {
  color: var(--light-color);
}

.phone .phone-i {
  width: 25px !important;
  height: auto;
  transition: all 0.5s;
}

.phone:hover i {
  transform: rotate(360deg);
}

@media (max-width: 768px) {
  .phone {
    bottom: 70px;
    left: 20px;
    width: 45px;
    height: 45px;
  }

  .phone i {
    width: 20px;
  }
}

@media (max-width: 480px) {
  .phone {
    bottom: 60px;
    left: 15px;
    width: 40px;
    height: 40px;
  }
}

/* #################################################################### */