/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Global Styles */
body {
    background-color: #f0f0f0;
    color: #333;
}

/* Header Styles */
header {
    background-color: #2563eb;
    padding: 20px 0;
    color: white;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header h1 {
    font-size: 2.5rem;
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.hero-section {
  position: relative;
  width: 100%;
  height: 400px;
  background-color: #f1f5f9; /* light gray fallback */
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 0.7s;
}

.hero-background:hover {
  transform: scale(1.1);
}

.overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
}

.hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  padding: 0 1rem;
  color: white;
}

.text-box {
  max-width: 600px;
}

.text-box h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: bold;
}

.text-box p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-button {
  padding: 0.75rem 2rem;
  font-size: 1rem;
  color: #fff;
  background-color: #007bff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-button:hover {
  background-color: #0056b3;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}


header nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: color 0.3s;
}

header nav ul li a:hover {
    color: #ffeb3b;
}

/* Hero Section Styles */
.hero {
    background: url('https://via.placeholder.com/1500x600') center/cover no-repeat;
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-content {
    text-align: center;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 40px;
    border-radius: 10px;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.hero button {
    padding: 10px 20px;
    font-size: 1.1rem;
    background-color: #ffeb3b;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.hero button:hover {
    background-color: #fbc02d;
}

/* Features Section */
.features {
    background-color: white;
    padding: 50px 0;
}

.features .container {
    display: flex;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
}

.feature {
    background-color: #f7f7f7;
    padding: 20px;
    border-radius: 10px;
    width: 30%;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.feature p {
    font-size: 1rem;
    color: #666;
}

/* Footer Styles */
footer {
    background-color: #333;
    color: white;
    padding: 20px 0;
}

footer p {
    font-size: 1rem;
}

.cart-count-hidden {
  display: none !important;
}

.cart-count[data-count="0"], 
.cart-count:empty {
  background-color: transparent !important;
}

.cart-count {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  background-color: #f59e0b; /* yellow-400 */
  color: #111827; /* gray-900 */
  border-radius: 9999px;
  width: 1.25rem;
  height: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: bold;
  transition: all 0.2s ease;
}

.cart-count-hidden {
  opacity: 0;
  transform: scale(0.5);
  pointer-events: none;
  background-color: transparent !important;
}


        
        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 50;
            width: 100%;
            border-bottom: 1px solid #e5e7eb;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
        }
        
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            height: 80px;
            align-items: center;
            justify-content: space-between;
            padding: 0 1rem;
        }
        
        .logo {
            flex-shrink: 0;
        }
        
        .logo img {
            height: 60px;
            width: auto;
            object-fit: contain;
        }
        
        /* Desktop Navigation */
        .desktop-nav {
            display: none;
        }
        
        @media (min-width: 768px) {
            .desktop-nav {
                display: flex;
                align-items: center;
                gap: 2rem;
            }
            
            .nav-link {
                font-size: 0.875rem;
                font-weight: 500;
                color: #6b7280;
                text-decoration: none;
                transition: color 0.3s ease;
            }
            
            .nav-link:hover, .nav-link.active {
                color: #6f42c1;
            }
            
            .nav-link.active {
                font-weight: 600;
            }
        }
        
        /* Mobile Menu Button */
        .mobile-menu-btn {
            display: flex;
            padding: 0.5rem;
            border-radius: 0.375rem;
            color: #374151;
            transition: all 0.3s ease;
        }
        
        @media (min-width: 768px) {
            .mobile-menu-btn {
                display: none;
            }
        }
        
        .mobile-menu-btn:hover {
            color: #6f42c1;
        }
        
        .mobile-menu-btn:focus {
            outline: 2px solid #6f42c1;
            outline-offset: 2px;
        }
        
        .mobile-menu-btn svg {
            height: 1.5rem;
            width: 1.5rem;
        }
        
        /* Mobile Menu */
        .mobile-menu {
            position: fixed;
            top: 80px;
            left: 0;
            right: 0;
            height: 0;
            overflow: hidden;
            background: white;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            transition: height 0.3s ease;
            z-index: 40;
        }
        
        .mobile-menu.open {
            height: calc(100vh - 80px);
        }
        
        .mobile-nav {
            display: flex;
            flex-direction: column;
            padding: 1rem;
        }
        
        .mobile-nav-link {
            padding: 0.75rem 1rem;
            font-size: 1rem;
            font-weight: 500;
            color: #374151;
            text-decoration: none;
            border-radius: 0.375rem;
            transition: all 0.3s ease;
        }
        
        .mobile-nav-link:hover, .mobile-nav-link.active {
            color: #6f42c1;
            background-color: #f3f4f6;
        }
        
        /* Content Styles */
        .content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem 1rem;
            text-align: center;
        }
        
        .content h1 {
            color: #6f42c1;
            margin-bottom: 1.5rem;
            font-size: 2.25rem;
        }
        
        @media (min-width: 768px) {
            .content h1 {
                font-size: 3rem;
            }
        }
        
        .content p {
            font-size: 1.125rem;
            line-height: 1.7;
            color: #4b5563;
            max-width: 800px;
            margin: 0 auto 2rem;
        }
        
        .content-image {
            width: 100%;
            max-width: 600px;
            height: auto;
            border-radius: 0.5rem;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            margin: 2rem auto;
        }
        
        /* Footer Styles */
        footer {
            width: 100%;
            border-top: 1px solid #e5e7eb;
            background: #fff;
            margin-top: 4rem;
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 3rem 1rem;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        
        @media (min-width: 640px) {
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (min-width: 1024px) {
            .footer-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }
        
        .footer-section {
            display: flex;
            flex-direction: column;
        }
        
        .footer-logo {
            margin-bottom: 1rem;
        }
        
        .footer-logo img {
            height: 50px;
            width: auto;
        }
        
        .footer-description {
            color: #6b7280;
            font-size: 0.875rem;
            margin-bottom: 1.5rem;
            line-height: 1.5;
        }
        
        .social-icons {
            display: flex;
            gap: 1rem;
        }
        
        .social-icon {
            color: #6b7280;
            transition: color 0.3s ease;
        }
        
        .social-icon:hover {
            color: #6f42c1;
        }
        
        .footer-heading {
            font-size: 1.125rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: #111827;
        }
        
        .footer-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }
        
        .footer-link a {
            color: #6b7280;
            text-decoration: none;
            font-size: 0.875rem;
            transition: color 0.3s ease;
        }
        
        .footer-link a:hover {
            color: #6f42c1;
        }
        
        .contact-info {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
        }
        
        .contact-icon {
            color: #6b7280;
            margin-top: 0.125rem;
            flex-shrink: 0;
        }
        
        .contact-text {
            color: #6b7280;
            font-size: 0.875rem;
        }
        
        .service-times {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }
        
        .service-time {
            color: #6b7280;
            font-size: 0.875rem;
        }
        
        .service-time span {
            font-weight: 500;
            color: #374151;
        }
        
        .footer-bottom {
            border-top: 1px solid #e5e7eb;
            margin-top: 3rem;
            padding-top: 1.5rem;
            text-align: center;
        }
        
        .copyright {
            color: #6b7280;
            font-size: 0.875rem;
        }