/* Reset & Base Styles */
body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #f5f3ee; /* cream background */
  color: #4a4a4a; /* charcoal text */
  line-height: 1.6;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.main-content {
  flex: 1;
}

/* Header & Navigation */
.site-header {
  position: relative; /* Added for positioning call-us */
  background-color: #0b3c53; /* deep blue */
  color: #f5f3ee;
  padding: 20px 0;
  text-align: center;
}

.call-us {
  position: absolute;
  top: 20px;
  right: 30px;
  display: flex;
  align-items: center;
  font-size: 1.2rem;
  font-weight: bold;
  color: #f5f3ee;
  z-index: 100;
}

.call-us i {
  font-size: 2rem; /* Bigger icon */
  margin-right: 12px;
  color: #f5f3ee;
}

.call-us-text {
  display: flex;
  flex-direction: column;
  line-height: 1.4;
}

.call-us-text span {
  display: block;
}

.call-us-text a {
  color: #f5f3ee;
  text-decoration: none;
  font-weight: normal;
  font-size: 1.1rem;
}

.call-us-text a:hover {
  text-decoration: underline;
}


.branding {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.branding .logo {
  max-width: 100px;
  margin-bottom: 10px;
}

.business-name {
  font-size: 1.8rem;
  margin: 0;
  color: #f5f3ee;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 0;
  margin: 20px 0 0;
}

nav li {
  position: relative;
}

nav a {
  text-decoration: none;
  color: #f5f3ee;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s ease;
}

nav a:hover,
nav a.active {
  color: #b0b0b0; /* soft gray hover */
}

/* Dropdown Menu Styles */
nav ul ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #0b3c53;
  padding: 10px 0;
  border-radius: 6px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  min-width: 160px;
  z-index: 1000;
  flex-direction: column;
}

nav ul ul li {
  padding: 8px 20px;
}

nav ul ul li a {
  color: #f5f3ee;
  font-size: 0.95rem;
  display: block;
  transition: background-color 0.3s ease;
}

nav ul ul li a:hover {
  background-color: #093144;
}

nav li:hover > ul {
  display: flex;
}

/* Hero Section Styling */
.hero {
  position: relative;
  background-image: url('images/hero-final.jpg');
  background-size: cover;
  background-position: center;
  height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-heading {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  color: #1e90ff; /* brand blue */
  margin-bottom: 10px;
}

.hero-subheading {
  font-family: 'Lato', sans-serif;
  font-size: 24px;
  color: #1e90ff; /* brand blue */
}

/* Removed white text and shadows */
.hero-heading,
.hero-subheading {
  position: relative;
  z-index: 1;
  text-shadow: none;
}

/* Hero Buttons */
.hero-button {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  margin: 10px;
  transition: all 0.3s ease;
  color: #f5f3ee;
  text-decoration: none;
  display: inline-block;
}

.explore-btn {
  background-color: #0b3c53;
}

.visit-btn {
  background-color: #4a4a4a;
}

.hero-button:hover {
  box-shadow: 0 4px 8px rgba(176, 176, 176, 0.5);
  transform: translateY(-2px);
}

/* About Us Section */
.about-us {
  background-color: #f5f3ee;
  padding: 40px 20px;
  max-width: 800px;
  margin: 40px auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.about-us h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 20px;
  color: #0b3c53;
}

.about-us p {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.about-us strong {
  color: #0b3c53;
  font-weight: 600;
}

/* Footer */
.site-footer {
  background-color: #0b3c53;
  color: #f5f3ee;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  border-top: 1px solid #b0b0b0;
}

/* Contact Page Styling */
.contact-intro {
  background-color: #f5f3ee;
  padding: 40px 20px;
  text-align: center;
}

.contact-form {
  background-color: #ffffff;
  padding: 40px 20px;
  max-width: 600px;
  margin: 40px auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #0b3c53;
}

.contact-form input[type="text"],
.contact-form input[type="email"] {
  width: 100%;
  height: 48px;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #d8cfc4;
  background-color: #fdf8f4;
  color: #4a4a4a;
  font-size: 1rem;
  font-family: 'Segoe UI', sans-serif;
  box-sizing: border-box;
  outline: none;
  appearance: none;
}

.contact-form textarea {
  width: 100%;
  min-height: 160px;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #d8cfc4;
  background-color: #fdf8f4;
  color: #4a4a4a;
  font-size: 1rem;
  font-family: 'Segoe UI', sans-serif;
  resize: vertical;
  box-sizing: border-box;
  outline: none;
  appearance: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #a89f94;
  font-style: italic;
}

.contact-form button {
  background-color: #0b3c53;
  color: #f5f3ee;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #093144;
}

/* Showroom Info */
.showroom-info {
  background-color: #f5f3ee;
  padding: 40px 20px;
  text-align: center;
}

.showroom-info h3 {
  font-size: 1.8rem;
  color: #0b3c53;
  margin-bottom: 10px;
}

.showroom-info p {
  font-size: 1.1rem;
  color: #4a4a4a;
  line-height: 1.6;
}

.business-hours {
  background-color: #ffffff;
  padding: 40px 20px;
  max-width: 600px;
  margin: 40px auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.business-hours h3 {
  font-size: 1.8rem;
  color: #0b3c53;
  margin-bottom: 10px;
}

.business-hours ul {
  list-style: none;
  padding: 0;
  font-size: 1.1rem;
  color: #4a4a4a;
}

/* Section Spacing */
section {
  margin-bottom: 60px;
}

/* Visit Us Section */

html {
  scroll-behavior: smooth;
}
/* Gallery Layout */
.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  padding: 0 20px;
}

.gallery figure {
  width: 260px; /* Slightly smaller for a more refined look */
  margin: 0;
  text-align: center;
}

.gallery-img {
  width: 100%;
  height: 200px; 
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.featured-vendors {
  background-color: #fdf8f4;
  padding: 60px 20px;
  text-align: center;
}

.featured-vendors h2 {
  font-size: 2rem;
  color: #0b3c53;
  margin-bottom: 10px;
}

.featured-vendors p {
  font-size: 1.1rem;
  color: #4a4a4a;
  margin-bottom: 40px;
}

.vendor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.vendor-card {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.vendor-card h3 {
  font-size: 1.3rem;
  color: #0b3c53;
  margin-bottom: 10px;
}

.vendor-card p {
  font-size: 1rem;
  color: #4a4a4a;
  margin-bottom: 15px;
}

.vendor-card a {
  color: #1e90ff;
  text-decoration: none;
  font-weight: 500;
}

.vendor-card a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .gallery {
    display: block;
    margin: 0 auto;
    padding: 10px;
  }

  .nav-bar {
    flex-direction: column;
    align-items: center;
  }

  img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 768px) {
  body {
    overflow-x: hidden;
    padding: 0 10px;
  }

  .call-us {
    position: static;
    margin-top: 10px;
    justify-content: center;
    flex-direction: column;
    text-align: center;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .hero {
    height: auto;
    padding: 40px 20px;
  }

  .hero-heading {
    font-size: 36px;
  }

  .hero-subheading {
    font-size: 18px;
  }

  .hero-button {
    font-size: 14px;
    padding: 10px 20px;
  }

  .gallery {
    flex-direction: column;
    align-items: center;
    padding: 10px;
  }

  .gallery figure {
    width: 100%;
    max-width: 320px;
    margin-bottom: 20px;
  }

  .gallery-img {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: cover;
  }

  .vendor-grid {
    grid-template-columns: 1fr;
  }

  .about-us,
  .contact-form,
  .business-hours {
    margin: 20px auto;
    padding: 20px;
  }

  .site-header,
  .site-footer {
    padding: 15px;
    text-align: center;
  }

  .branding .logo {
    max-width: 80px;
  }

  .business-name {
    font-size: 1.4rem;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 0.95rem;
  }

  .contact-form button {
    font-size: 0.95rem;
    padding: 10px 20px;
  }
}

.product-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 15px;
  justify-content: flex-start;
}

.product-item {
  width: 260px;
  text-align: center;
}

.product-item img {
  width: 100%;
  max-height: 180px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

}

.caption {
  margin-top: 6px;
  font-size: 0.85rem;
  color: #444;
}

}
.vendor-links {
  margin-top: 10px;
  display: flex;
  gap: 15px;
}

.vendor-links a,
.vendor-links button {
  background-color: #f2f2f2;
  border: none;
  padding: 8px 12px;
  border-radius: 5px;
  text-decoration: none;
  color: #333;
  cursor: pointer;
  font-size: 0.9rem;
}

.vendor-links button:hover,
.vendor-links a:hover {
  background-color: #e0e0e0;
}
.product-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 15px;
  justify-content: flex-start;
}

.product-item {
  width: 150px;
  text-align: center;
}

.product-item img {
  width: 100%;
  max-height: 120px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

}

.caption {
  margin-top: 6px;
  font-size: 0.85rem;
  color: #444;
}

.vendor-actions {
  margin-top: 10px;
  display: flex;
  gap: 10px;
}

.vendor-actions a,
.vendor-actions button {
  background-color: #f4f4f4;
  border: none;
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 0.85rem;
  cursor: pointer;
  text-decoration: none;
  color: #333;
}

.vendor-actions button:hover,
.vendor-actions a:hover {
  background-color: #e0e0e0;
}

/* Featured Vendors Section */
.featured-vendors {
  background-color: #fdf8f4;
  padding: 60px 20px;
  text-align: center;
}

.featured-vendors h2 {
  font-size: 2rem;
  color: #0b3c53;
  margin-bottom: 10px;
}

.featured-vendors p {
  font-size: 1.1rem;
  color: #4a4a4a;
  margin-bottom: 40px;
}

/* Vendor Grid Layout */
.vendor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.vendor-card {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.vendor-card h3 {
  font-size: 1.3rem;
  color: #0b3c53;
  margin-bottom: 10px;
}

.vendor-card p {
  font-size: 1rem;
  color: #4a4a4a;
  margin-bottom: 15px;
}

.vendor-card a {
  color: #1e90ff;
  text-decoration: none;
  font-weight: 500;
}

.vendor-card a:hover {
  text-decoration: underline;
}

/* Vendor Action Buttons */
.vendor-actions {
  margin-top: 10px;
  display: flex;
  gap: 10px;
}

.vendor-actions a,
.vendor-actions button {
  background-color: #f4f4f4;
  border: none;
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 0.85rem;
  cursor: pointer;
  text-decoration: none;
  color: #333;
}

.vendor-actions button:hover,
.vendor-actions a:hover {
  background-color: #e0e0e0;
}

/* Product Preview Gallery */
.product-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 15px;
  justify-content: center;
  padding: 0 20px;
}

.product-item {
  width: 150px;
  text-align: center;
}

.product-item img {
  width: 100%;
  max-height: 120px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

}

.caption {
  margin-top: 6px;
  font-size: 0.85rem;
  color: #444;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  body {
    overflow-x: hidden;
    padding: 0 10px;
  }

  .nav-bar {
    flex-direction: column;
    align-items: center;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .call-us {
    position: static;
    margin-top: 10px;
    justify-content: center;
    flex-direction: column;
    text-align: center;
  }

  .site-header,
  .site-footer {
    padding: 15px;
    text-align: center;
  }

  .branding .logo {
    max-width: 80px;
  }

  .business-name {
    font-size: 1.4rem;
  }

  .gallery {
    display: block;
    margin: 0 auto;
    padding: 10px;
    flex-direction: column;
    align-items: center;
  }

  .gallery figure {
    width: 100%;
    max-width: 320px;
    margin-bottom: 20px;
  }

  .gallery-img {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: cover;
  }

  .vendor-grid {
    grid-template-columns: 1fr;
  }

  .about-us,
  .contact-form,
  .business-hours {
    margin: 20px auto;
    padding: 20px;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 0.95rem;
  }

  .contact-form button {
    font-size: 0.95rem;
    padding: 10px 20px;
  }

  .hero {
    height: auto;
    padding: 40px 20px;
  }

  .hero-heading {
    font-size: 36px;
  }

  .hero-subheading {
    font-size: 18px;
  }

  .hero-button {
    font-size: 14px;
    padding: 10px 20px;
  }
}
/* Lightbox Overlay */
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.lightbox-overlay.show {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}

.lightbox-content img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
  transition: transform 0.3s ease;
  cursor: zoom-in;
}

.lightbox-content img:active {
  transform: scale(1.05);
  cursor: zoom-out;
}

/* Close Button */
.lightbox-close {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #fff;
  border: none;
  font-size: 1.5rem;
  color: #333;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}
.browse-button {
  padding: 0.75rem 1.5rem;
  background-color: #4a4a4a;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.browse-button:hover {
  background-color: #333;
}

.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.product-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 15px;
  justify-content: flex-start;
}

.product-item {
  width: 150px;
  text-align: center;
}

.product-item img {
  width: 100%;
  max-height: 120px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

}

.caption {
  margin-top: 6px;
  font-size: 0.85rem;
  color: #444;
}

.lightbox-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  overflow-y: auto;
  padding: 20px;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  overflow: auto;
}

.lightbox-content img {
  width: auto;
  max-width: 100%;
  max-height: 100%;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

}

.lightbox-content img:active {
  transform: scale(1.05);
  cursor: zoom-out;
}

.lightbox-close {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #fff;
  border: none;
  font-size: 1.5rem;
  color: #333;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}


