/* Reset */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background: #fffaf0;
  color: #333;
}

/* Header */
header {
  background: #f4c542;
  color: #333;
  padding: 15px;
  text-align: center;
}
header nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #333;
  font-weight: bold;
}
header nav a:hover,
header nav a.active {
  color: #000;
  text-decoration: underline;
}

/* =============================
   HERO SECTION
============================= */
.hero {
  position: relative;
  height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.45);
  border-radius: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 180px;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.7),
               0 0 20px rgba(255, 183, 3, 0.8); /* Honey glow */
  letter-spacing: 3px;
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 25px;
}

.hero-buttons a {
  margin: 0 10px;
}

.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn-primary {
  background: #d48806;
  color: #fff;
}

.btn-primary:hover {
  background: #b06d04;
  transform: scale(1.05);
}

.btn-secondary {
  background: #25d366;
  color: #fff;
}

.btn-secondary:hover {
  background: #1ebe5c;
  transform: scale(1.05);
}

/* =============================
   FEATURES SECTION
============================= */
.features {
  padding: 60px 20px;
  text-align: center;
  background: #fffaf0;
}

.features h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #d48806;
}

.features-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.feature-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card i {
  font-size: 2rem;
  color: #d48806;
  margin-bottom: 15px;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}

/* =============================
   BEST SELLERS SECTION
============================= */
.best-sellers {
  padding: 60px 20px;
  text-align: center;
}

.best-sellers h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #d48806;
}

/* =============================
   ABOUT HOME (STORY BLOCK)
============================= */
.about-home {
  padding: 60px 20px;
  background: #fffaf0;
}

.about-home-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

.about-home-content img {
  flex: 1 1 400px;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.about-text {
  flex: 1 1 400px;
}

.about-text h2 {
  font-size: 2rem;
  color: #d48806;
  margin-bottom: 15px;
}

.about-text p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #444;
}

/* Google Reviews */
.reviews {
  background: #fffbee;
  padding: 60px 20px;
  text-align: center;
}

.reviews h2 {
  font-size: 2.4rem;
  font-weight: bold;
  color: #ffb703;
  margin-bottom: 30px;
}

.reviews-container {
  max-width: 900px;
  margin: auto;
}

.review-card {
  background: #fff;
  border: 1px solid #f1c40f;
  border-radius: 10px;
  padding: 15px;
  margin: 15px 0;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  text-align: left;
}

.review-text {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 10px;
}

.review-author {
  font-size: 0.95rem;
  font-weight: bold;
  color: #555;
}

/* ================== */
/* Updates / Blog Section */
/* ================== */
.updates {
  background: linear-gradient(to bottom, #fffbee, #fdf6e3);
  padding: 70px 20px;
  text-align: center;
}

.updates h2 {
  font-size: 2.6rem;
  font-weight: 900;
  color: #ffb703;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.updates-container {
  max-width: 1000px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.update-card {
  position: relative;
  background: #fff;
  border-radius: 15px;
  padding: 25px;
  text-align: left;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 8px solid #ffb703;
}

.update-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.update-card h3 {
  margin-bottom: 10px;
  font-size: 1.6rem;
  color: #e76f51;
}

.update-card p {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: #444;
  line-height: 1.5;
}

.update-card .date {
  font-size: 0.9rem;
  color: #777;
}

/* Highlight Badge */
.badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: bold;
  color: #fff;
}

.badge.offer {
  background: linear-gradient(45deg, #ffb703, #f77f00);
}

.badge.new {
  background: linear-gradient(45deg, #2a9d8f, #219ebc);
}

.badge.info {
  background: linear-gradient(45deg, #e76f51, #d62828);
}

/* Highlighted Card */
.update-card.highlight {
  background: linear-gradient(135deg, #fff7d6, #fff);
  border-left: 8px solid #f77f00;
}



/* =============================
   PRODUCTS PAGE
============================= */
.products-section {
  padding: 50px 20px;
  text-align: center;
}

.products-section h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #d48806;
}

.products-section p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #444;
}

.products-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: auto;
}

.product-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Product Images */
.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.product-card:hover img {
  transform: scale(1.05);
}

.product-card h2 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #333;
}

.product-card p {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #555;
}

.price {
  display: block;
  font-weight: bold;
  color: #d48806;
  margin-bottom: 15px;
}

.buy-btn {
  display: inline-block;
  background: #25d366;
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
  font-size: 0.95rem;
}

.buy-btn:hover {
  background: #1ebe5c;
}


/* Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.contact-card {
  background: #fff3cd;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
.contact-card h3 {
  margin-bottom: 15px;
  color: #333;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: 0.3s ease;
}
.btn-location {
  background: #ffbf00;
  color: #333;
}
.btn-location:hover {
  background: #e6ac00;
}
.btn-call {
  background: #28a745;
  color: white;
}
.btn-call:hover {
  background: #218838;
}
.btn-whatsapp {
  background: #25d366;
  color: white;
}
.btn-whatsapp:hover {
  background: #1da851;
}
.btn-email {
  background: #007bff;
  color: white;
}
.btn-email:hover {
  background: #0056b3;
}

/* Footer */
footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 10px;
  margin-top: 20px;
}

/* Contact Page */
.contact-container {
  padding: 40px;
  max-width: 800px;
  margin: auto;
  text-align: center;
}

.contact-info p {
  font-size: 18px;
  margin: 15px 0;
}

.contact-info a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.contact-info a:hover {
  color: #e67e22;
}

.contact-info i {
  margin-right: 10px;
  color: #e67e22;
}

/* Social Media Links */
.social-links {
  margin-top: 20px;
}

.social-links a {
  margin: 0 15px;
  font-size: 32px;
  color: #333;
  transition: color 0.3s;
}

.social-links a:hover {
  color: #e67e22;
}

/* Navbar Styling */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f4a261;
  padding: 15px 30px;
  border-radius: 0 0 15px 15px;
}

.logo {
  font-size: 22px;
  font-weight: bold;
  color: white;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  text-decoration: none;
  color: white;
  font-weight: bold;
  padding: 8px 12px;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.nav-links li a:hover {
  background: #e76f51;
}

/* Special Style for Booking Button */
.booking-btn {
  background: #25d366;
  color: white !important;
  font-weight: bold;
  border-radius: 8px;
  padding: 8px 15px;
  transition: 0.3s;
}

.booking-btn:hover {
  background: #128c7e;
}

/* Navbar Logo */
.logo {
  font-size: 2rem;              /* Bigger text */
  font-weight: 800;             /* Extra bold */
  color: #000000;               /* Honey black */
  text-transform: uppercase;    /* All caps for branding */
  letter-spacing: 2px;          /* Spaced out for elegance */
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.logo:hover {
  color: #e76f51;              /* Reddish honey shade on hover */
  transform: scale(1.1);       /* Slight zoom */
}






