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

body {
  font-family: Arial, sans-serif;
  background-color: #ffffff;
  color: #333333;
  line-height: 1.6;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: white;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #eee;
  flex-wrap: wrap;
}

.logo img {
  height: 50px;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 20px;
}

.nav-links a {
  text-decoration: none;
  color: #333333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #999999;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #333333;
}

/* Responsive Navbar */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background: white;
    position: absolute;
    top: 70px;
    right: 0;
    width: 200px;
    border: 1px solid #ddd;
    padding: 1rem;
  }

  .nav-links.show {
    display: flex;
  }
}

/* Video Slider */
.video-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.video-slider video {
  width: 100%;
  height: 1600px;
  object-fit: cover;
  display: block;
}

#unmuteBtn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  padding: 10px 15px;
  font-size: 1rem;
  background-color: #ffffffdd;
  color: #333333;
  border: 1px solid #333333;
  border-radius: 5px;
  cursor: pointer;
  z-index: 10;
}

.book-btn {
  position: absolute;
  bottom: 20px;
  left: 20px;
  padding: 10px 15px;
  font-size: 1rem;
  background-color: #ffffffdd;
  color: #333333;
  border: 1px solid #333333;
  border-radius: 5px;
  text-decoration: none;
  z-index: 10;
  transition: background-color 0.3s ease;
}

.book-btn:hover {
  background-color: #e0e0e0;
}

/* About Short */
.about-short {
  padding: 3rem 2rem;
  text-align: center;
  background-color: #333333;
  color: #ffffff;
  width: 100%;
  margin-bottom: 0;
}

/* About Preview */
.about-preview {
  background-color: #f4f4f4;
  padding: 2rem;
  margin: 2rem;
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 10px;
}

.about-preview h2 {
  margin-bottom: 1rem;
  color: #444;
}

.about-preview p {
  max-width: 900px;
  margin: 0 auto 1rem;
  font-style: italic;
  color: #444;
  line-height: 1.8;
}

.about-preview a {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  background-color: #333333;
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.about-preview a:hover {
  background-color: #555555;
}

/* Team Grid Layout */
.team-feature {
  padding: 4rem 2rem;
  text-align: center;
  background-color: #fff;
}

.team-feature h2 {
  font-size: 2.5rem;
  margin-bottom: 2.5rem;
  color: #333;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.team-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  text-align: center;
}

.team-member img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 0;
}

.team-member h4 {
  margin-top: 1rem;
  font-size: 1.1rem;
  font-weight: bold;
  text-transform: uppercase;
  color: #333;
}

.team-member p {
  font-size: 0.95rem;
  color: #666;
  font-style: italic;
  margin-top: 0.2rem;
}

@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}/* About Detail Section */
.about-detail {
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.about-detail .about-text {
  font-style: italic;
  color: #444;
}

.about-detail .about-text h2 {
  margin-bottom: 1rem;
  margin-left: 0.5rem;
  color: #444;
}

.about-detail .about-text p {
  line-height: 1.8;
}

.about-detail .about-image {
  float: right;
  width: 40%;
  margin-left: 2rem;
  margin-bottom: 1rem;
}

.about-detail .about-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 5px;
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 2rem;
}

.product-grid .grid-item {
  position: relative;
  overflow: hidden;
}

.product-grid img {
  width: 100%;
  height: auto;
  display: block;
}

.product-grid .label {
  position: absolute;
  bottom: 50%;
  left: 50%;
  transform: translate(-50%, 50%);
  color: white;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  text-shadow: 0 1px 3px rgba(0,0,0,0.6);
}

/* Carousel */
.carousel {
  overflow-x: auto;
  white-space: nowrap;
  padding: 0 0 2rem 0;
}

.carousel-track {
  display: inline-flex;
  gap: 0;
}

.carousel-track img {
  width: 300px;
  height: 200px;
  object-fit: cover;
  display: inline-block;
  border-radius: 0;
}

/* ===== Collection Page Styles ===== */
.collection-section {
  padding: 4rem 2rem;
  text-align: center;
}
.collection-section h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 2rem;
}
.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  padding: 20px;
}

.brand-item img {
  width: 100%;
  height: auto;
  display: block;
}


/* Reviews */
.reviews {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 1rem;
  padding: 2rem;
}

.review-box {
  flex: 0 0 auto;
  width: 300px;
  height: 200px;
  border: none;
  padding: 1.5rem;
  background-color: #555;
  color: white;
  text-align: center;
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
}

.review-box .text {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 6.5em;
}

.review-box .name {
  font-weight: normal;
  font-style: normal;
  font-size: 1rem;
  padding-top: 0.5rem;
  width: 100%;
  text-align: right;
}

/* Instagram Feed */
.instagram-feed {
  padding: 2rem;
  background-color: #fdfdfd;
  text-align: center;
}

/* Location and Hours */
.location-hours {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 2rem;
  background-color: #f9f9f9;
  gap: 2rem;
}

.map-container {
  flex: 1 1 60%;
  min-width: 300px;
  filter: grayscale(100%);
}

.hours-container {
  flex: 1 1 35%;
  min-width: 200px;
}

.hours-container h3 {
  margin-bottom: 0.5rem;
}

/* Footer */
footer {
  background-color: #f1f1f1;
  padding: 1.5rem;
  text-align: center;
}

.social-icons a {
  color: #333333;
  margin: 0 10px;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #999999;
}

/* Responsive Layout Fixes */
@media (max-width: 768px) {
  .carousel-track img {
    width: 200px;
    height: 140px;
  }

  .review-box {
    width: 90%;
  }

  .video-slider video {
    height: 500px;
  }

  .location-hours {
    flex-direction: column;
  }

  .map-container,
  .hours-container {
    width: 100%;
  }

  .instagram-feed iframe {
    height: 300px !important;
  }

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

  .about-detail .about-image {
    float: none;
    width: 100%;
    margin: 0 auto 2rem;
  }
}
form input,
    form textarea {
      width: 100%;
      padding: 12px;
      border: 1px solid #ccc;
      border-radius: 4px;
      font-size: 16px;
    }
    form button {
      padding: 12px;
      background-color: #333;
      color: #fff;
      font-size: 16px;
      border: none;
      border-radius: 4px;
      cursor: pointer;
    }
    form button:hover {
      background-color: #555;
    }
    .confirmation-message {
      margin-top: 15px;
      padding: 10px;
      background-color: #e6ffe6;
      border: 1px solid #b3ffb3;
      color: #2d662d;
      display: none;
    }