/* Reset and base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: none;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #fffefc;
  color: #4b3621;
  line-height: 1.6;
  max-width: 100%;
  overflow-x: hidden;
}

/* Navigation */
.navbar {
  background-color: #5c4033;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1em;
  flex-wrap: wrap;
}

.logo {
  font-weight: bold;
  font-size: 1.2rem;
}

.nav-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
}

/* Hero Section with video background */
.hero {
  position: relative;
  min-height: 70vh;
  width: 100%;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hero Content */
.logo-area {
  text-align: center;
  margin-bottom: 1em;
}

.logo-area img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.brand-title {
  font-size: 1.8rem;
  color: #f6c800;
  margin: 0.5em 0;
}

.hero-text h2 {
  font-size: 1.5rem;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.hero-text p {
  font-size: 1rem;
  margin: 0.5em 0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-text .btn {
  margin-top: 1em;
  background-color: #f6c800;
  color: #000;
  padding: 0.6em 1.2em;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
}

.hero-text .btn:hover {
  background-color: #ffd700;
}

/* Sections */
section {
  padding: 1em;
  text-align: center;
}

/* Make all gallery images larger and fill space */
.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5em;
  margin-top: 1em;
  padding: 0;
}

.gallery-grid img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

/* Scrollable Gallery Row */
.gallery-row {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 1em;
  padding: 0.5em 0;
  scrollbar-width: none;
}

.gallery-row::-webkit-scrollbar {
  display: none;
}

.gallery-row figure {
  flex: 0 0 auto;
  width: 100%;
  margin: 0;
}

.gallery-row img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}

/* Category section */
.category-section {
  margin-bottom: 2em;
}

.category-section h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

/* Scroll buttons */
.scroll-btn {
  background-color: rgba(0, 0, 0, 0.6);
  border: none;
  color: white;
  font-size: 20px;
  padding: 6px 10px;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  border-radius: 50%;
}

.scroll-btn:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.scroll-btn.left {
  left: 0;
}

.scroll-btn.right {
  right: 0;
}

/* Buttons */
.btn-secondary {
  background-color: transparent;
  border: 2px solid #f6c800;
  color: #5c4033;
  padding: 0.5em 1em;
  margin-top: 1em;
  text-decoration: none;
  border-radius: 6px;
  font-size: 0.95rem;
}

.btn-secondary:hover {
  background-color: #f6c800;
  color: #000;
}

/* Testimonials */
blockquote {
  font-style: italic;
  background-color: #fff9e6;
  color: #5c4033;
  padding: 1em;
  margin: 1.5em auto;
  border-left: 5px solid #f6c800;
  max-width: 95%;
}

/* Footer */
footer {
  background-color: #5c4033;
  color: #fff;
  padding: 1em;
  text-align: center;
  font-size: 0.9rem;
}

.items-for-hire {
    padding: 2em 1em;
    background-color: #f9f9f9;
    position: relative;
}

.scroll-wrapper-hire {
    position: relative;
}

.scroll-container {
    display: flex;
    overflow-x: auto;
    gap: 1em;
    padding: 0.5em 0 1em 0;
    scroll-behavior: smooth;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
}

.scroll-container::-webkit-scrollbar {
    display: none;
}

.item-card {
    flex: 0 0 auto;
    scroll-snap-align: start;
    width: 220px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.item-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
    border-bottom: 1px solid #eee;
}

.item-card p {
    font-size: 0.95rem;
    color: #333;
    padding: 0.5em;
    margin: 0;
    text-align: center;
}

/* Scroll buttons specifically for items for hire */
.items-for-hire .scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.6);
    border: none;
    color: white;
    font-size: 20px;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 20;
}

.items-for-hire .scroll-btn.left {
    left: 5px;
}

.items-for-hire .scroll-btn.right {
    right: 5px;
}

.items-for-hire .scroll-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
}
/* Filter Buttons */
.category-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8em;
  margin-bottom: 1.5em;
}

.filter-btn {
  background-color: #fff;
  border: 2px solid #f6c800;
  color: #5c4033;
  padding: 0.4em 0.8em;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.9rem;
}

.filter-btn:hover,
.filter-btn.active {
  background-color: #f6c800;
  color: #000;
}

.item-card.hidden {
  display: none;
}

.location-section {
  padding: 40px 20px;
  background: #fef5ea;
  text-align: center;
}

.location-section h2 {
  color: #b36a2d;
  font-size: 2rem;
  margin-bottom: 10px;
}

.social-footer {
  text-align: center;
  margin-top: 20px;
  background-color: transparent; /* Optional: Or use light gray for contrast */
  padding: 1rem 0;
}

.social-footer {
  text-align: center;
  margin-top: 20px;
  padding: 10px 0;
}

.social-footer a {
  color: #222; /* Make them dark */
  font-size: 1.8rem;
  margin: 0 12px;
  transition: color 0.3s ease, transform 0.2s ease;
}

.social-footer a:hover {
  color: #b67234; /* Accent on hover */
  transform: scale(1.2);
}

.social-links {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.social-links a {
  text-decoration: none;
  background-color: #eee;
  padding: 8px 12px;
  border-radius: 6px;
  color: #333;
  font-weight: bold;
}

.social-button {
  display: inline-block;
  background-color: #f1f1f1;
  color: #333;
  padding: 10px 16px;
  margin: 5px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
}

.social-button img {
  vertical-align: middle;
  margin-right: 8px;
}

.social-button.whatsapp {
  background-color: #25D366;
  color: white;
}

.social-button.facebook {
  background-color: #4267B2;
  color: white;
}

.social-button.instagram {
  background-color: #C13584;
  color: white;
}

.social-button:hover {
  opacity: 0.9;
}

footer {
  background-color: #f1f1f1;
  text-align: center;
  padding: 12px;
  font-size: 14px;
}

.map-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  margin-top: 10px;
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.btn {
  display: inline-block;
  background-color: #b36a2d;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 30px;
  transition: background 0.3s ease;
}

.btn:hover {
  background-color: #944d14;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: center;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    align-items: center;
    gap: 0.5em;
    margin-top: 1em;
  }

  .hero-text h1 {
    font-size: 1.6rem;
  }

  .hero-text h2 {
    font-size: 1.2rem;
  }

  .hero-text p {
    font-size: 0.95rem;
  }

  .brand-title {
    font-size: 1.2rem;
  }

  .logo-area img {
    width: 70px;
    height: 70px;
  }

  section {
    padding: 1em;
  }

  .gallery-grid img,
  .gallery-row img {
    max-width: 100%;
  }
}