/* HOME PAGE */

body { font-family: 'Inter', sans-serif; }
    .carousel-container { position: relative; overflow: hidden; }
        .carousel-slide {
            position: absolute; /* stack slides */
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }

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

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

        .dot { 
            transition: all 0.3s ease; 
            cursor: pointer; 
        }

        .dot.active { 
            background-color: #f97316; 
            transform: scale(1.2); 
        }

        .nav-link { 
            position: relative; 
            transition: color 0.3s ease; 
        }

        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -4px;
            left: 50%;
            background-color: #f97316;
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .nav-link:hover::after { width: 100%; }
        .fade-in { 
            opacity: 0; 
            transform: translateY(30px); 
            animation: fadeInUp 1s ease forwards; 
        }
        @keyframes fadeInUp {
            to { opacity: 1; transform: translateY(0); }
        }

        .card-hover {
            transition: all 0.3s ease;
        }

        .card-hover:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

/* REVIEWS PAGE - [Cities / Countries] */

body { font-family: 'Inter', sans-serif; }
        .nav-link { 
            position: relative; 
            transition: color 0.3s ease; 
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -4px;
            left: 50%;
            background-color: #f97316;
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        .nav-link:hover::after { width: 100%; }

        .city-card {
            cursor: pointer;
            transition: all 0.4s ease;
            overflow: hidden;
            border-radius: 1rem;
        }

        .city-card:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 25px 50px rgba(0,0,0,0.2);
        }

        .city-name-top {
            z-index: 10;
            font-weight: 700;
            text-align: center;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
        }

        .city-card img {
            display: block;
            width: 100%;
            height: 16rem; /* adjust as needed */
            object-fit: cover;
        }

        .fade-in { 
            opacity: 0; 
            transform: translateY(30px); 
            animation: fadeInUp 1s ease forwards; 
        }

/* RESTAURANTS BASED IN CITIES */

        .restaurant-card {
            position: relative;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.4s ease;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .restaurant-card:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 25px 50px rgba(0,0,0,0.2);
        }

        .restaurant-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0,0,0,0), rgba(0,0,0,0));
            transition: all 0.3s ease;
        }

        .restaurant-card:hover::before {
            background: linear-gradient(135deg, rgba(0,0,0,0), rgba(0,0,0,0));
        }

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

/* RESTAURANT REVIEWS */

body { 
            font-family: 'Inter', sans-serif;
            box-sizing: border-box;
        }

        .nav-link { 
            position: relative; 
            transition: color 0.3s ease; 
        }

        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -4px;
            left: 50%;
            background-color: #f97316;
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .nav-link:hover::after { width: 100%; }
        .fade-in { 
            opacity: 0; 
            transform: translateY(30px); 
            animation: fadeInUp 1s ease forwards; 
        }

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

        .star-rating {
  display: flex;
  gap: 2px;
}

.star {
  font-size: 1.52rem;
  color: #d1d5db; /* Empty star */
  -webkit-text-stroke: 0.8px black; /* Black outline */
}

.star.filled {
  color: #fbbf24; /* Filled star color */
  -webkit-text-stroke: 0.8px black; /* Keep black outline */
}

.star.half {
  position: relative;
  color: #d1d5db; /* Base star color */
  -webkit-text-stroke: 0.8px black;
}

.star.half::before {
  content: "★";
  color: #fbbf24;
  position: absolute;
  left: 0;
  width: 50%;
  overflow: hidden;
  -webkit-text-stroke: 0.8px black;

}


        .review-image {
            border-radius: 1rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .review-image:hover {
            transform: scale(1.02);
        }
        
        .info-card {
            background: white;
            border-radius: 1rem;
            padding: 1.5rem;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            margin-bottom: 1.5rem;
            transition: all 0.3s ease;
        }
        .info-card:hover {
            box-shadow: 0 8px 30px rgba(0,0,0,0.12);
            transform: translateY(-2px);
        }
        .halal-badge {
            display: inline-flex;
            align-items: center;
            padding: 0.5rem 1rem;
            border-radius: 2rem;
            font-weight: 600;
            font-size: 0.875rem;
        }

        .halal-yes {
            background: linear-gradient(135deg, #10b981, #059669);
            color: white;
        }

        .halal-no {
            background: linear-gradient(135deg, #ef4444, #dc2626);
            color: white;
        }

        .vegetarian-yes {
            background: linear-gradient(135deg, #fed346, #f6d11b);
            color: rgb(0, 0, 0);
        }

        .review-date {
            font-weight: 500;
            color: #6b7280; /* Tailwind gray-500 */
            font-size: 1rem;
        }




/* Portfolio Page */
        
.gallery {
  -moz-column-gap: 0;
       column-gap: 0;
}
@media (max-width: 800px) {
  .gallery {
    -moz-column-count: 3;
         column-count: 3;
  }
  figure figcaption {
    display: none !important;
  }
}
@media (min-width: 1260px) {
  .gallery {
    -moz-column-count: 3;
         column-count: 3;
  }
}

.gallery-image {
  position: relative;
  margin: 0;
  padding: 0;
}
.gallery-image:before, .gallery-image:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 16px solid rgba(0, 0, 0, 0.1);
  transition: all 0.2s;
  will-change: border;
}
.gallery-image:after {
  border-width: 0;
}
.gallery-image img {
  display: block;
  max-width: 100%;
  height: auto;
}
html:not(.touch) .gallery-image {
  overflow: hidden;
}
html:not(.touch) .gallery-image:hover:before {
  border-width: 16px;
}
html:not(.touch) .gallery-image:hover:after {
  border-width: 32px;
}
.touch .gallery-image figcaption {
  top: auto;
  bottom: 2em;
}

/* Lightbox */
#lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#lightbox.active {
  display: flex;
}

#lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain; /* Ensures full image visible without cropping */
  box-shadow: 0 0 20px rgba(0,0,0,0.8);
  border-radius: 8px;
}

/* Lightbox buttons */

.lb-close, .lb-prev, .lb-next {
  position: absolute;
  background: rgba(255,255,255,0.2);
  color: white;
  border: none;
  width: 50px;          /* fixed width */
  height: 50px;         /* fixed height */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  cursor: pointer;
  padding: 10px 15px;
  border-radius: 50%;
  transition: background 0.2s;
}

.lb-close:hover, .lb-prev:hover, .lb-next:hover {
  background: rgba(255,255,255,0.4);
}

.lb-close {
  top: 20px;
  right: 30px;
}

.lb-prev {
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
}

.lb-next {
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
}

/* Optional gallery hover effects */
html:not(.touch) .gallery-image:hover img {
  transform: scale(1.02);
  transition: transform 0.3s ease;
}

/* Remove default link styling */
a {
  text-decoration: none;
  color: inherit;
}


/* About Us Page*/

body { 
            font-family: 'Inter', sans-serif;
            box-sizing: border-box;
        }
        .nav-link { 
            position: relative; 
            transition: color 0.3s ease; 
        }
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -4px;
            left: 50%;
            background-color: #f97316;
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        .nav-link:hover::after { width: 100%; }
        .fade-in { 
            opacity: 0; 
            transform: translateY(30px); 
            animation: fadeInUp 1s ease forwards; 
        }
        @keyframes fadeInUp {
            to { opacity: 1; transform: translateY(0); }
        }
        .card-hover {
            transition: all 0.3s ease;
        }
        .card-hover:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }
        .success-message {
            opacity: 0;
            transform: translateY(-20px);
            transition: all 0.5s ease;
        }
        .success-message.show {
            opacity: 1;
            transform: translateY(0);
        }
        .form-input {
            transition: all 0.3s ease;
        }
        .form-input:focus {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(249, 115, 22, 0.15);
        }
        .submit-btn {
            background: linear-gradient(135deg, #f97316, #ea580c);
            transition: all 0.3s ease;
        }
        .submit-btn:hover {
            background: linear-gradient(135deg, #ea580c, #dc2626);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
        }
        .submit-btn:disabled {
            background: #d1d5db;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }