@import url('https://fonts.googleapis.com/css2?family=David+Libre:wght@400;500;700&family=Inter:wght@400;700&display=swap');

/* ============================================
   TOP 3 MOST BOOKED SERVICES SECTION
   ============================================ */
.top-services {
    padding: 60px 5%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
}

.top-services h2 {
    font-family: 'David Libre', serif;
    font-size: 2rem;
    color: #1f3a5f;
    margin-bottom: 10px;
    font-weight: 700;
}

.top-services > p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 35px;
}

.top-services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.top-service-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    animation: fadeInUp 0.6s ease;
}

.top-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
}

/* Rank Badge */
.rank-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 10;
}

.rank-number {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: white;
    font-size: 1.2rem;
    font-weight: 800;
    padding: 8px 16px;
    border-radius: 40px;
    box-shadow: 0 3px 12px rgba(255, 215, 0, 0.4);
    display: inline-block;
}

.top-service-card[data-rank="1"] .rank-number {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    animation: pulse 2s infinite;
}

.top-service-card[data-rank="2"] .rank-number {
    background: linear-gradient(135deg, #C0C0C0 0%, #A8A8A8 100%);
}

.top-service-card[data-rank="3"] .rank-number {
    background: linear-gradient(135deg, #CD7F32 0%, #B87333 100%);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Service Image */
.service-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.top-service-card:hover .service-image img {
    transform: scale(1.1);
}

.booking-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 15px;
    text-align: left;
}

.booking-count {
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.booking-count i {
    font-size: 1rem;
}

/* Service Details */
.service-details {
    padding: 20px;
    text-align: left;
}

.service-details h3 {
    font-family: 'David Libre', serif;
    font-size: 1.3rem;
    color: #1f3a5f;
    margin-bottom: 12px;
    font-weight: 700;
}

.service-description {
    color: #666;
    line-height: 1.5;
    margin-bottom: 15px;
    font-size: 0.85rem;
}

/* Service Meta */
.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
}

.price-tag {
    display: flex;
    flex-direction: column;
}

.price-tag .label {
    font-size: 0.7rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-tag .price {
    font-size: 1.3rem;
    font-weight: 800;
    color: #1f6996;
}

.duration-tag {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #666;
    font-weight: 600;
    font-size: 0.9rem;
}

.duration-tag i {
    color: #1f6996;
}

/* Rating Display */
.rating-display {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.rating-display .stars {
    display: flex;
    gap: 2px;
}

.rating-display .stars i {
    color: #FFD700;
    font-size: 0.9rem;
}

.rating-text {
    font-size: 0.85rem;
    color: #666;
    font-weight: 600;
}

/* Category Badge */
.service-category {
    margin-bottom: 15px;
}

.category-badge {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 5px 12px;
    border-radius: 16px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Book Now Button */
.btn-book-now {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #1f6996 0%, #4a90e2 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(31, 105, 150, 0.3);
}

.btn-book-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(31, 105, 150, 0.4);
}

.btn-book-now i {
    transition: transform 0.3s ease;
}

.btn-book-now:hover i {
    transform: translateX(5px);
}

/* No Bookings Message */
.no-bookings-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.no-bookings-message p {
    font-size: 1.2rem;
    color: #666;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .top-services-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .top-services h2 {
        font-size: 1.8rem;
    }
    
    .service-details h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .top-services {
        padding: 40px 4%;
    }
    
    .top-services h2 {
        font-size: 1.6rem;
        margin-bottom: 8px;
    }
    
    .top-services > p {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }
    
    .top-services-container {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 100%;
    }
    
    .top-service-card {
        border-radius: 12px;
    }
    
    .service-image {
        height: 180px;
    }
    
    .rank-badge {
        top: 10px;
        left: 10px;
    }
    
    .rank-number {
        font-size: 1rem;
        padding: 6px 12px;
    }
    
    .service-details {
        padding: 16px;
    }
    
    .service-details h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .service-description {
        font-size: 0.8rem;
        margin-bottom: 12px;
    }
    
    .service-meta {
        flex-direction: column;
        gap: 10px;
        padding: 10px;
    }
    
    .price-tag .price {
        font-size: 1.1rem;
    }
    
    .duration-tag {
        font-size: 0.85rem;
    }
    
    .rating-display {
        margin-bottom: 10px;
    }
    
    .rating-display .stars i {
        font-size: 0.8rem;
    }
    
    .rating-text {
        font-size: 0.8rem;
    }
    
    .category-badge {
        font-size: 0.7rem;
        padding: 4px 10px;
    }
    
    .btn-book-now {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .booking-overlay {
        padding: 12px;
    }
    
    .booking-count {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .top-services {
        padding: 30px 3%;
    }
    
    .top-services h2 {
        font-size: 1.4rem;
    }
    
    .top-services > p {
        font-size: 0.85rem;
        margin-bottom: 20px;
    }
    
    .service-image {
        height: 160px;
    }
    
    .service-details h3 {
        font-size: 1rem;
    }
    
    .service-description {
        font-size: 0.75rem;
        line-height: 1.4;
    }
    
    .service-meta {
        padding: 8px;
    }
    
    .price-tag .price {
        font-size: 1rem;
    }
    
    .btn-book-now {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
   
}
body {
    background: #000000; 
    padding-top: 70px;
}

.banner-carousel {
  position: relative;
  width: 100%;
  height: 900px;
  overflow: hidden;
}

.banner-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.05); 
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center; 
}

.banner-slide::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6); 
  z-index: 1;
}

.banner-slide.active {
  opacity: 1;
  transform: scale(1); 
  z-index: 1;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.banner-content {
  color: white;
  text-align: center;
  max-width: 800px;
  padding: 20px;
  z-index: 2;
  position: relative;
}
.banner-content h1 {
  font-size: 50px;
  font-family: 'David Libre', serif;
  letter-spacing: 2px;
  margin-bottom: 30px; 
}

.banner-content p {
  font-size: 18px; 
  margin-bottom: 40px; 
  font-family: 'Inter', sans-serif;
}

.banner-buttons {
  display: flex;
  justify-content: center; 
  align-items: center;     
  gap: 50px;
  margin-top: 20px;
  
}

.banner-buttons .button {
  font-weight: 600;
  background-color: #6c93ff; 
  color: white; 
  padding: 10px 15px; 
  border-radius: 5px; 
  text-decoration: none; 
  transition: background-color 0.3s;  
  font-family: 'Inter', serif; 
}

.banner-buttons .button:hover {
  background-color: #e3ecff; 
  color: #3a5bb5; 
}



.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}
.menu-toggle .bar {
    height: 3px;
    width: 25px;
    background: #6c93ff;
    margin: 4px 0;
    transition: 0.3s;
}

/* Responsive Styles */
@media (max-width: 1000px) {
    header .nav-list {
        display: none; 
        flex-direction: column;
        width: 100%;
        background: #6c93ff; 
        top: 70px; 
        left: 0;
    }
    header .nav-list.active {
        display: flex; 
    header .nav-list.active li a {
        color: #000;
    }
    .menu-toggle {  
        display: flex; 
    }
    header .nav-list li {
        text-align: center;
        margin: 10px 0; 
    }
}
}

.logo-img {
  max-height: 50px; 
}
.nav-list .button {
  background-color: #6c93ff; 
  color: white;
  padding: 10px 15px;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s;
}

.nav-list .button:hover {
  background-color: #e3ecff; 
  color: #3a5bb5;
}
  .signature-dishes {
    background-image: url('bg.png'); 
    background-color: #6c93ff; 
    padding: 50px 20px;
    text-align: center;
    background-size: cover; 
    height: 650px; 
}

.signature-dishes h2 {
  font-family: 'David Libre', serif;
  margin-bottom: 30px;
  font-size: 30px;
  color: #ffffff;

}

.signature-dishes p {
  font-size: 16px; 
  margin-bottom: 40px; 
  font-family: 'Inter', sans-serif;
  color: #ffffff;
}
.dish-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
  margin-bottom: 100px;
}
.dish {
  background: linear-gradient(to bottom, transparent 30px, white 70%);
  border-radius: 10px;
  padding: 15px;
  width: 220px; 
  height: 320px;
  text-align: center;
  box-shadow: none; 
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.dish img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.dish:hover img {
  transform: scale(1.3); 
}
.dish h3 {
  font-size: 1.2em;
  margin: 15px 0 10px 0;
  font-family: 'David Libre', serif;
  flex-shrink: 0;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dish p {
  font-size: 0.9em;
  color: #000000;
  font-family: 'Inter', sans-serif;
  flex-grow: 1;
  line-height: 1.4;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
}
.light{
  width: 100%; 
  height: 60px; 
  background-color: #e3ecff;
}
.dark{
  width: 100%; 
  height: 60px; 
  background-color: #6c93ff; 
}


.customer-testimonials {
  background-image: url('bg3.jpg'); 
  background-color: #F9F9F9;
  padding: 50px 20px;
  text-align: center;
  background-size: cover; 
  height: 650px;
}
.customer-testimonials h2 {
  font-family: 'David Libre', serif;
  margin-bottom: 20px;
  margin-top: 30px;
  font-size: 30px;
  color: #000000;
}

.testimonial p {
  font-size: 16px;
  margin: 15px 0;
  font-family: 'Inter', sans-serif;
}

.testimonial h4 {
  margin-top: 10px;
  font-style: italic;
  color: #333;
}

.testimonial-avatar {
  margin-left: 20px;
}

.testimonial-avatar img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #6c93ff; 
}
.testimonial {
  background: #ffffff;
  border-radius: 15px;
  padding: 50px;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  margin-top: 100px;
  position: relative; 
  border: 2px solid #000000;
}

.testimonial h4 {
  margin-top: 10px;
  font-style: italic;
  color: #000000;
}
.testimonial-content {
  flex: 1;
}
.testimonial-rating {
  font-size: 20px;
  color: #FFD700; 
}
.floating-image {
  position: absolute; 
  top: -50px;
  left: 50%; 
  transform: translateX(-50%); 
  width: 100px; 
  height: auto; 
  border-radius: 50%; 
}

/* Testimonial Avatar with Initials - More specific selector to override floating-image */
.testimonial .testimonial-avatar-placeholder.floating-image {
  position: absolute; 
  top: -50px;
  left: 50%; 
  transform: translateX(-50%); 
  width: 100px !important; 
  height: 100px !important;
  border-radius: 50%;
  background: #1f6996;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.carousel-container {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.testimonial-carousel .testimonial {
  display: none;
  transition: opacity 0.5s ease-in-out;
}

.testimonial-carousel .testimonial.active {
  display: flex;
}

.carousel-controls {
  text-align: center;
  margin-top: 20px;
}

.carousel-controls button {
  background-color: #6c93ff;
  border: none;
  padding: 10px 20px;
  color: white;
  font-size: 18px;
  cursor: pointer;
  border-radius: 5px;
  margin: 0 10px;
}

.carousel-controls button:hover {
  background-color: #e3ecff;
  color: #3a5bb5;
}


 /* Footer */
 .site-footer {
  padding: 40px 5%;
  background: #fff;
  color: #333;
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 30px;
}
.footer-left {
  flex: 2;
  min-width: 280px;
}
.footer-left img {
  width: 100px;
  margin-bottom: 10px;
}
.footer-left p {
  color: #555;
  margin: 10px 0 20px;
  line-height: 1.6;
}
.footer-left .learn-more-link {
  color: #6c93ff;
  text-decoration: none;
}
.footer-left .learn-more-link:hover {
  text-decoration: underline;
}
.footer-left .opening-hours p {
  margin: 5px 0;
  font-size: 14px;
  color: #555;
}
.footer-left .opening-hours strong {
  display: block;
  margin-bottom: 8px;
  text-transform: uppercase;
  color: #333;
  font-size: 15px;
}
.footer-nav {
  flex: 1;
  min-width: 180px;
}
.footer-nav h4 {
  margin-bottom: 10px;
  font-size: 14px;
  text-transform: uppercase;
  color: #333;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
}
.footer-nav li {
  margin-bottom: 6px;
}
.footer-nav a {
  text-decoration: none;
  color: #555;
  font-size: 14px;
  transition: color 0.3s;
}
.footer-nav a:hover {
  color: #6c93ff;
}
.footer-social {
  flex: 1;
  min-width: 180px;
}
.footer-social h4 {
  margin-bottom: 10px;
  font-size: 14px;
  text-transform: uppercase;
  color: #333;
}
.footer-social .social-icons {
  display: flex;
  gap: 12px;
}
.footer-social .social-icons img {
  width: 28px;
  height: 28px;
  display: block;
}
.site-footer hr {
  border: none;
  border-top: 1px solid #ccc;
  margin: 0;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: 13px;
  color: #555;
  margin-top: 20px;
}
.footer-bottom a {
  color: #555;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-bottom a:hover {
  color: #6c93ff;
}

.opening-hours h5 {
  font-weight: bold;
  margin-bottom: 8px;
}
.hours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px 16px;
}
.hours-grid .day {
  font-size: 14px;
  color: #333;
}
.hours-grid .time {
  font-size: 14px;
  color: #555;
}

/* ============================================
   RESPONSIVE MEDIA QUERIES FOR BANNER CAROUSEL
   ============================================ */
@media (max-width: 1024px) {
    .banner-carousel {
        height: 600px !important;
    }
    
    .signature-dishes {
        height: auto !important;
        padding: 40px 20px !important;
    }
    
    .dish-container {
        gap: 30px !important;
    }
}

@media (max-width: 768px) {
    .banner-carousel {
        height: 400px !important;
    }
    
    .banner-content h1 {
        font-size: 1.8rem !important;
    }
    
    .banner-content p {
        font-size: 1rem !important;
    }
    
    /* Signature Services Mobile */
    .signature-dishes {
        height: auto !important;
        padding: 40px 15px !important;
    }
    
    .signature-dishes h2 {
        font-size: 1.8rem !important;
        margin-bottom: 15px !important;
    }
    
    .signature-dishes p {
        font-size: 0.95rem !important;
        margin-bottom: 30px !important;
    }
    
    .dish-container {
        gap: 25px !important;
        margin-bottom: 50px !important;
    }
    
    .dish {
        width: 280px !important;
        height: 320px !important;
    }
    
    .light, .dark {
        height: 40px !important;
    }
}

@media (max-width: 480px) {
    .banner-carousel {
        height: 300px !important;
    }
    
    .banner-content h1 {
        font-size: 1.4rem !important;
    }
    
    .banner-content p {
        font-size: 0.9rem !important;
    }
    
    .banner-content .button {
        padding: 10px 20px !important;
        font-size: 0.9rem !important;
    }
    
    /* Signature Services Small Mobile */
    .signature-dishes {
        height: auto !important;
        padding: 30px 10px !important;
    }
    
    .signature-dishes h2 {
        font-size: 1.5rem !important;
        margin-bottom: 10px !important;
    }
    
    .signature-dishes p {
        font-size: 0.85rem !important;
        margin-bottom: 25px !important;
        padding: 0 10px !important;
    }
    
    .dish-container {
        gap: 20px !important;
        margin-bottom: 30px !important;
    }
    
    .dish {
        width: 100% !important;
        max-width: 300px !important;
        height: 300px !important;
        margin: 0 auto !important;
    }
    
    .dish img {
        height: 140px !important;
    }
    
    .dish h3 {
        font-size: 1.1em !important;
        height: 40px !important;
        margin: 10px 0 8px 0 !important;
    }
    
    .dish p {
        font-size: 0.85em !important;
    }
    
    .light, .dark {
        height: 30px !important;
    }
}





