/* General styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #000000;
    color: #FFFFFF;
    scroll-behavior: smooth; /* Enable smooth scrolling */
}

/* Header styles */
header {
    background: #0f0f0f;
    color: #ffffff;
    padding: 1rem 0;
}

.logo a {
    color: #FFFFFF;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    margin-right: 10px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.navbar nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.navbar nav ul li {
    margin-left: 1rem;
}

.navbar nav ul li a {
    color: #48befe;
    text-decoration: none;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    transition: background-color 0.3s, color 0.3s, box-shadow 0.3s;
}

.navbar nav ul li a:hover {
    background-color: #000000;
    color: #aed7fb;
    box-shadow: 0 0 5px rgb(0, 242, 255);
    border-radius: 4px;
}

.search-bar {
    display: flex;
    align-items: center;
}

.search-bar input {
    padding: 0.5rem;
    border: none;
    border-radius: 0.25rem;
}

.search-bar button {
    padding: 0.5rem 1rem;
    border: none;
    background: #3741d2;
    color: #FFFFFF;
    border-radius: 0.25rem;
    margin-left: 0.5rem;
    cursor: pointer;
}

.auth-buttons {
    display: flex;
    gap: 10px;
    margin-left: 20px;
}

.auth-buttons .login,
.auth-buttons .signup {
    padding: 0.5rem 1rem;
    border: none;
    cursor: pointer;
    background-color: #3741d2;
    color: #fff;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.auth-buttons .login:hover,
.auth-buttons .signup:hover {
    background-color: #1a237e;
}

/* Contact section */
.contact {
    background-color: #000000;
    padding: 20px;
}

.contact-box {
    display: flex;
    background-color: #1a1a1a;
    padding: 20px;
    border: 1px solid #000000;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    flex-wrap: wrap;
}

.map {
    flex: 1 1 45%; /* Takes up 45% of the width */
    height: 300px; 
    border: 0;
    margin-right: 20px;
}

.contact-details {
    flex: 1 1 45%; /* Takes up 45% of the width */
    display: flex;
    flex-direction: column;
}

.form-control {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #000000;
}

.btn-primary {
    background-color: #000000;
    color: #0ff4f8;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #23527c;
}

h1.heading {
    color: rgb(0, 242, 255); 
}

/* Product card styles */
.product-card {
    transition: all 0.3s ease-in-out;
}

.product-image img {
    transition: transform 0.3s ease-in-out;
}

.product-card:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-card:hover h3 {
    color: #35e4ff;
    transition: color 0.5s ease-in-out;
}

.product-card:hover p {
    color: #dfebf6;
    transition: color 0.3s ease-in-out;
}

/* Footer styles with unique class names */
footer {
    background-image: url('https://i.pinimg.com/originals/95/be/e7/95bee75c0362049e426a932273d1b0b4.jpg');
    background-position: auto;
    background-size: cover;
    padding: 10px;
    height: 600px;
    width: 100%;
    color: #fff;
}

.footer-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: rgba(22, 22, 22, 0.5); /* Semi-transparent background */
    border-radius: 10px;
    box-shadow: 0 0 5px rgb(0, 242, 255);
    text-align: center;
  }

  
  .opening-hours, .contact-details {
    margin-bottom: 20px;
    text-align: center; /* Add this to center the text horizontally */
  }
  
  h3.footer-heading {
    margin-top: 0;
    font-weight: bold;
    color: #58b3fe;
    text-align: center; /* Add this to center the text horizontally */
  }
  
  ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center; /* Add this to center the text horizontally */
  }
  
  li {
    margin-bottom: 10px;
  }
  
  time {
    font-size: 16px;
    text-align: center; /* Add this to center the text horizontally */
  }
  
  .contact-details p {
    margin-bottom: 10px;
    text-align: center; /* Add this to center the text horizontally */
  }
  
  .contact-details a {
    color: #ffffff;
    text-decoration: none;
  }
  
  .contact-details a:hover {
    text-decoration: underline;
  }
  
  /* Add spacing between the footer elements */
  .footer-container > div {
    margin-bottom: 20px;
  }
  
  /* Add a bottom margin to the footer */
  footer {
    margin-bottom: 20px;
  }