.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #000;
  color: #fff;
  padding: 15px 40px;
  font-size: 0.95rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.logo-link {
  display: flex;
  align-items: center;
  margin-right: 24px;
}

.site-logo {
  height: 150px;
  width: auto;
}

.book-now {
  margin-left: auto;
  margin-right: 16px;
  color: white;
}

.site-nav a:hover {
  color: #d8b979;
  transition: color 0.3s ease;
}



.nav-toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 40px;
  width: 40px;
  margin-left: 8px;
}

.hamburger {
  width: 28px;
  height: 3px;
  background: #fff;
  margin: 4px 0;
  border-radius: 2px;
  transition: all 0.3s;
  display: block;
}

.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    right: 0;
    background: #000;
    flex-direction: column;
    align-items: flex-end;
    width: 200px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  }
  .nav-links.open {
    display: flex;
  }
  .nav-toggle {
    display: flex;
  }
  .book-now {
    order: 2;
    margin-left: 0;
  }
}

/* Show nav-links and hide hamburger on desktop */
@media (min-width: 901px) {
  .nav-links {
    display: flex !important;
    position: static;
    flex-direction: row;
    align-items: center;
    background: none;
    box-shadow: none;
    padding: 0;
    width: auto;
  }
  .nav-toggle {
    display: none !important;
  }
}

.body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background-color: #f4f4f4;
  color: #222;
}

html {
  scroll-behavior: smooth;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.site-nav a {
  color: #fff; 
  text-decoration: none;
  margin: 0 10px;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 12pt;
}
.hero {
  min-height: 600px;
  background: url('../images/hero2.jpg');
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  color: #fff;
  text-align: center;
  padding: 220px 20px 80px;
  position: relative; 
}
.hero h1 {
  font-size: 2.8rem;
  max-width: 700px;
  margin: 0 auto 20px;
}
.our-story {
  padding: 80px 20px;
  background-color: #ffffff;
  color: #111;
}

.story-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.story-image {
  flex: 1;
  min-width: 300px;
}

.story-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.story-text {
  flex: 1;
  min-width: 300px;
}

.story-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  letter-spacing: -0.5px;
}

.story-text p {
  font-size: 1.5rem;
  line-height: 1.8;
  color: #222;
  font-weight: 400;
  letter-spacing: -0.2px;
}

.story-text .highlight {
  font-weight: 500;
  font-style: italic;
  text-decoration: underline;
  color: #d8b979; /* SHED uses a burnt red */
}

.service-box i {
  margin-right: 8px;
  color: #d8b979; /* matches your theme */
}

.menu-section {
  font-family: 'Playfair Display', serif;
  background: #605c5c;
  padding: 20px 20px;
  color: #ffffff;
}

.menu-logo {
  text-align: center;
  margin-bottom: 40px;
  height: 140px;
}

.menu-logo img.menu-icon {
  width: 100px;
  height: auto;
  margin-bottom: 20px;
}

.menu-heading {
  font-size: 2.5rem;
  margin: 0;
  font-weight: 600;
  letter-spacing: 2px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 60px 40px;
  max-width: 100%;
  margin: 0 auto;
  text-align: left;
}

.service-box {
  border-bottom: 1px solid #ffffff;
  padding-bottom: 24px;
}

.service-box i {
  margin-right: 8px;
  color: #d8b979;
  font-size: 1.1rem;
}

.service-box h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.service-box p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 10px;
  color: #ffffff;
}

.price a {
  font-style: italic;
  text-decoration: none;
  color: #ffffff;
  font-weight: bold;
  transition: color 0.3s ease;
}

.price a:hover {
  color: #d45d4c; /* Burnt red hover like SHED */
  text-decoration: underline;
  cursor: pointer;
}

.price.red a {
  color: #d45d4c;
  font-style: italic;
  text-decoration: underline;
}

.our-products {
  padding: 80px 20px;
  background-color: #ffffff;
  color: #111;
}

.product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.product-text, .product-image {
  flex: 1;
  min-width: 300px;
}

.product-text {
  padding-right: 40px;
  flex: 1;
  min-width: 300px;
}


.product-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.product-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  letter-spacing: -0.5px;
}

.product-text p {
  font-size: 1.5rem;
  line-height: 1.8;
  color: #222;
  font-weight: 400;
  letter-spacing: -0.2px;
}

.product-text .highlight {
  font-weight: 500;
  font-style: italic;
  text-decoration: underline;
  color: #d8b979; /* SHED uses a burnt red */
}
.btn-primary, .btn-secondary {
  display: inline-block;
  margin: 10px;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: bold;
  font-size: 1rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.btn-primary {
  background-color: #d8b979;
  color: #fffefe;
}
.btn-secondary {
  background: transparent;
  border: 2px solid #d8b979;
  color: #fff;
}
.btn-primary:hover {
  background-color: #c2a467;
}
.btn-secondary:hover {
  background-color: #d8b979;
  color: #000;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.promo {
  background-color: #1c1c1c;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}
.promo h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}
.promo-images {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 32px 0;
}
.promo-images img {
  width: 400px;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}


.services h2,
.reviews h2,
.locations h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
}
.grid-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.service-item {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  text-align: center;
}
.service-item img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 10px;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  margin-top: 32px;
}

.review-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 180px;
}

.review-text {
  font-size: 1.1rem;
  color: #222;
  margin-bottom: 18px;
  font-style: italic;
}

.review-author {
  font-weight: bold;
  color: #d8b979;
  font-size: 1rem;
  text-align: right;
}
.locations {
  background-color: #fdfdfd;
  padding: 60px 20px;
}
.location-card {
  background: #fff;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  text-align: center;
}
.location-card h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.site-footer {
  background-color: #111;
  color: #fff;
  padding: 60px 20px 30px;
  font-size: 0.95rem;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 100%;
  margin: 0 auto;
}

.footer-logo img {
  width: 250px;
  margin-bottom: 5px;
}

.footer-logo p {
  font-size: 0.95rem;
  color: #ccc;
  max-width: 280px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: #d8b979;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links a {
  text-decoration: none;
  color: #fff;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #d8b979;
}

.footer-contact p {
  margin: 4px 0;
  color: #ccc;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #333;
  font-size: 0.85rem;
  color: #aaa;
}


/* Dropdown container */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown toggle style */
.dropdown-toggle {
  color: white;
  text-decoration: none;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.dropdown-toggle i {
  margin-left: 6px;
  font-size: 0.8rem;
}

@media (max-width: 768px) {
  .hero {
    padding: 140px 20px 60px;
    min-height: 400px;
  }
}

/* Dropdown menu */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #111; /* match nav background */
  padding: 10px 0;
  min-width: 160px;
  z-index: 1000;
  border-radius: 4px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Dropdown menu links */
.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: white;
  text-decoration: none;
  font-size: 14px;
}

/* Hover behavior */
.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu a:hover {
  background-color: #222;
}
