html {
  scroll-behavior: smooth;
}
body {
	font-family: Georgia;
	background-color: #fff;
	color: black;
	padding-top: 60px;
}
/* Desktop and mobile responsive header */
header {
	text-align: center;
	color: #007BFF;
	font-weight: bold;
}

/* Main container */
#Superstore {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
}

/* Navbar styles */
#navbar {
	background-color: #007BFF;
	width: 100%;
	height: 50px; 
	position: fixed;  
	top: 0;           
	left: 0;
	z-index: 1000;    
	display: flex;    
	align-items: center;
	justify-content: center;
	padding: 0 20px;
	flex-wrap: wrap;
}

#navbar a {
	padding: 5px 10px;
	color: white;
	font-family: Georgia, serif;
	font-size: 18px;
	text-decoration: none;
	margin: 0 8px;
	transition: all 0.3s ease-in-out;
}
#navbar a:hover {
	border: 2px solid #fff;   /* white border */
	border-radius: 5px;       /* rounded corners */
	color: #007BFF;              /* change text color */
	background-color: #fff;   /* optional: highlight effect */
}

#home {
	font-family: Georgia;
	text-align: center;
	font-size: 19px;
}
#home h2{
	color: #007BFF;
	font-family: Segoe UI;
}

/* Offer Section */
.offer-section {
	background-color: #f8f9fa;
	padding: 20px;
	border-radius: 8px;
	margin-top: 10px;
}
.offer-section h2 {
	color: #007BFF;
	font-size: 28px;
	margin-bottom: 10px;
}
.offer-section p {
	font-size: 16px;
	color: #333;
	margin-bottom: 10px;
}
.offer-section ul {
	list-style-type: square;
	padding-left: 20px;
}
.offer-section li {
	margin-bottom: 5px;
	font-weight: 500;
}

/* Store/Product Grid */
#store {
  padding: 40px 20px;
  background-color: #f8f9fa;
  text-align: center;
}
#store h2 {
  font-size: 32px;
  color: #007BFF;
  margin-bottom: 10px;
}
#store p {
  color: #333;
  font-size: 16px;
  margin-bottom: 20px;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  justify-items: center;
}
.product-grid figure {
  background: white;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}
.product-grid figure:hover {
  transform: translateY(-5px);
}
.product-grid img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
}
.product-grid figcaption {
  margin-top: 10px;
  font-weight: 500;
  color: #444;
}
.store-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #007BFF;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}
.store-btn:hover {
  background-color: #0056b3;
}

/* Contact Section */
.contact {
	text-align: center;
	padding: 2rem;
	background-color: #f9f9f9;
}
.contact-info {
	color: #007BFF;
	font-family: Segoe UI;
	font-weight: bold;
	margin-bottom: 1rem;
}
.contact-form {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	max-width: 500px;
	margin: 0 auto;
}
.contact-form textarea,
.contact-form input,
.contact-form button {
	width: 100%;
	padding: 0.8rem;
	border: 1px solid #ccc;
	border-radius: 5px;
	font-size: 1rem;
}
.contact-form button {
	background-color:  #007BFF;
	color: white;
	font-weight: bold;
	cursor: pointer;
	transition: background-color: 0.3s ease;
}
.contact-form button:hover {
	background-color:  #006BFF;
}

/* Booking Button */
.booking {
	padding: 7px;
	background-color: #007BFF;
	color: #fff;
	border: none;
	border-radius: 5px;
}
.booking:hover {
	transition: background-color 0.3s ease;
	background-color: #006BFF;
}
.Us {
	text-align: center;
	color: #007BFF;
	font-size: 32px;
}

/* Footer */
footer {
  background-color: #007BFF;
  color: white;
  text-align: center;
  padding: 7px 0;
  font-family: Georgia, serif;
  position: relative;
  bottom: 0;
  width: 100%;
}

/* --- Responsive Styles for Mobile & Desktop --- */
@media (max-width: 900px) {
  #store {
    padding: 30px 10px;
  }
  .product-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
  }
  #store h2, .Us {
    font-size: 26px;
  }
}

@media (max-width: 600px) {
  body {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    padding-top: 50px;
  }

  #Superstore {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  #navbar {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    align-items: center;
    padding: 8px 0;
  }

  #navbar a {
    margin: 5px 0;
    padding: 8px 14px;
    font-size: 17px;
    width: 90%;
    box-sizing: border-box;
    text-align: center;
  }

  #home {
    font-size: 17px;
    padding: 0 5px;
  }

  .offer-section {
    padding: 15px 5px;
    font-size: 15px;
  }

  #store {
    padding: 20px 5px;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .product-grid img {
    height: 120px;
  }

  .store-btn {
    width: 100%;
    font-size: 18px;
    padding: 12px 0;
  }

  .contact {
    padding: 1rem 0.5rem;
  }

  .contact-form {
    max-width: 100%;
    padding: 0 4px;
  }

  .Us {
    font-size: 22px;
  }

  footer {
    font-size: 15px;
    padding: 8px 0;
  }
}