/* ========== HERO ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  font-size: 16px;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Header Styles */
.top-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header {
  background-color: #FFFFFF;
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 15px 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
  margin-right: 10px;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

.logo-text h1 {
  font-size: 1.2rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.logo-text p {
  font-size: 0.75rem;
  color: #666;
}

.nav {
  display: flex;
  gap: 20px;
  transition: all 0.3s ease;
}

.nav-link {
  text-decoration: none;
  color: #666;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #1A3C34;
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: #1A3C34;
  font-weight: bold;
}

.nav-link:hover {
  color: #1A3C34;
}

.menu-toggle-checkbox {
  display: none;
}

.menu-toggle {
  display: none;
  font-size: 24px;
  border: none;
  background: none;
  cursor: pointer;
  color: #1A3C34;
  transition: transform 0.3s ease;
}

.menu-toggle:hover {
  transform: rotate(90deg);
}

/* Products Dropdown */
.nav .nav-link.products-link {
  position: relative;
}

.nav .nav-link.products-link:hover .dropdown {
  display: block;
}

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #1A3C34;
  min-width: 200px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  padding: 0.5rem 0;
}

.dropdown a {
  color: #fff;
  padding: 0.5rem 1rem;
  text-decoration: none;
  display: block;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

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

/* Animations for Navbar */
[data-animate="fade-in"] {
  opacity: 0;
  animation: fadeIn 1s ease-in-out forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.footer {
  background-color: #1A3C34;
  color: #bbb;
  padding: 40px 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.footer-section h4 {
  font-weight: bold;
  color: #FFFFFF;
  margin-bottom: 10px;
}

.footer-section p {
  font-size: 0.875rem;
}

.footer-section a {
  color: #bbb;
  text-decoration: none;
}

.footer-section a:hover {
  color: #FFFFFF;
}

.footer-text {
  font-size: 0.75rem;
  border-top: 1px solid #666;
  padding-top: 10px;
  text-align: center;
}

.footer-section img {
  width: 80px;
  height: 84px;
  margin-right: 10px;
}

.action-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 50;
}

.action-button {
  background-color: #A9C9A4;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.2s;
}

.action-button:hover {
  transform: scale(1.1);
}

.action-button svg {
  fill: none;
  stroke: #FFFFFF;
  width: 24px;
  height: 24px;
}

.hero {
  display: flex;
  height: 90vh;
  position: relative;
}

.hero-left {
  flex: 1;
  background-color: #1A3C34;
}

.hero-right {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.hero-slider img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 6s ease-in-out;
}

.hero-slider img.active {
  opacity: 1;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #FFFFFF;
  text-align: center;
  width: 100%;
  padding: 0 1rem;
  z-index: 3;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  color: #5e8881;
}

.hero-content h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  padding-left: 1rem;
  color: #5e8881;
}

.hero-content .btn {
  background-color: #A9C9A4;
  color: #fff;
  padding: 0.9rem 1.8rem;
  border: none;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
  cursor: pointer;
}

.hero-content .btn:hover {
  background-color: #1A3C34;
}

/* ========== ABOUT SECTION ========== */
.about-section {
  background: #fff;
  padding: 6rem 0;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.about-images {
  flex: 1;
  display: flex;
  gap: 1.5rem;
  justify-content: flex-end;
  position: relative;
}

.about-images img {
  width: 48%;
  border-radius: 6px;
  object-fit: cover;
}

.about-text {
  flex: 1;
  max-width: 500px;
  padding-left: 2rem;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #1A3C34;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.about-text .btn {
  background-color: transparent;
  color: #1A3C34;
  border: 1.5px solid #1A3C34;
  padding: 0.7rem 1.5rem;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  transition: 0.3s;
}

.about-text .btn:hover {
  background-color: #1A3C34;
  color: #fff;
}

/* ========== FEATURES SECTION ========== */
.features-section {
  padding: 5rem 1rem;
  background-color: #e9e9e7;
  text-align: center;
}

.features-section h2 {
  font-size: 2rem;
  color: #1A3C34;
  font-weight: 700;
  margin-bottom: 3rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  justify-items: center;
}

.feature-card {
  background: none;
  padding: 1rem;
  max-width: 260px;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card img {
  height: 60px;
  margin-bottom: 1.2rem;
}

.feature-card h3 {
  font-size: 1rem;
  color: #1A3C34;
  font-weight: 600;
  line-height: 1.5;
}

/* ========== PRODUCTS SECTION ========== */
.products-section {
  background-color: #000;
  color: #fff;
  padding: 6rem 0;
}

.product-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 3rem;
}

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

.product-text h2 {
  font-size: 2.8rem;
  margin-bottom: 2rem;
}

.product-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem 0;
  font-weight: bold;
  font-size: 1rem;
}

.product-item {
  padding: 1rem 0;
  border-bottom: 1px solid #ccc;
  cursor: pointer;
  transition: all 0.3s ease;
}

.product-item[open] {
  background-color: #1a1a1a;
}

.product-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-item summary::-webkit-details-marker {
  display: none;
}

.product-item summary::after {
  content: "▾";
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.product-item[open] summary::after {
  transform: rotate(180deg);
}

.product-description {
  margin-top: 1rem;
  padding: 1rem;
  background: #333;
  border-radius: 4px;
  font-size: 0.9rem;
  color: #fff;
  line-height: 1.5;
  display: none;
}

.product-item[open] .product-description {
  display: block;
}

.product-buttons {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.outline-btn {
  border: 1.5px solid #fff;
  color: #fff;
  padding: 0.8rem 1.5rem;
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.outline-btn:hover {
  background-color: #fff;
  color: #000;
}

.product-image {
  flex: 1;
  position: relative;
  min-width: 300px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.prod-top {
  width: 55%;
  z-index: 2;
  position: relative;
}

.prod-bottom {
  width: 55%;
  margin-top: -4rem;
  margin-left: -2rem;
  z-index: 1;
  position: relative;
}

/* NEW ARRIVALS AND SPECIALS */
.new-arrivals {
  background-color: #fff;
  padding: 5rem 1rem;
  text-align: center;
}

.new-arrivals h2 {
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 3rem;
  color: #1A3C34;
  letter-spacing: 0.5px;
}

.arrivals-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.arrival-item {
  width: 250px;
  height: 250px;
  overflow: hidden;
  background-color: #f5f5f5;
  display: flex;
  justify-content: center;
  align-items: center;
}

.arrival-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.black-box {
  background-color: #000;
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
}

.black-box span {
  padding: 1rem;
  display: block;
}

.offers-btn-wrapper {
  margin-top: 2rem;
}

.offers-btn {
  padding: 0.75rem 2rem;
  border: 2px solid #1A3C34;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  color: #1A3C34;
  transition: 0.3s;
}

.offers-btn:hover {
  background-color: #1A3C34;
  color: #fff;
}

/* ========== QUOTE SECTION ========== */
.quote-section {
  background-color: #1A3C34;
  color: #FFFFFF;
  padding: 3rem 1rem;
  text-align: center;
  font-style: italic;
  font-size: 1.3rem;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: #FFFFFF;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 40;
    padding: 1rem 0;
  }

  .menu-toggle-checkbox:checked ~ .nav {
    display: flex;
  }

  .nav-link {
    margin: 0;
    padding: 0.75rem 1rem;
    text-align: center;
    border-bottom: 1px solid #e9e9e7;
  }

  .nav-link:last-child {
    border-bottom: none;
  }

  .nav .nav-link.products-link .dropdown {
    display: none !important;
  }

  .hero {
    flex-direction: column;
    height: auto;
  }

  .hero-left, .hero-right {
    flex: none;
    width: 100%;
  }

  .hero-left {
    padding: 3rem 1rem;
    height: auto;
  }

  .hero-content {
    position: static;
    transform: none;
    padding: 0;
  }

  .hero-content h1 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
  }

  .hero-content h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-left: 0;
  }

  .hero-right {
    height: 60vh;
  }

  .about-container {
    flex-direction: column;
    gap: 3rem;
  }

  .about-images {
    justify-content: center;
  }

  .about-text {
    padding-left: 0;
    margin-top: 0;
    text-align: center;
  }

  .about-text .btn {
    margin-top: 1rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .product-container {
    flex-direction: column;
    gap: 3rem;
  }

  .product-text {
    padding-left: 0;
    margin-top: 0;
    text-align: center;
  }

  .product-image {
    flex-direction: column;
    align-items: center;
    min-width: unset;
  }

  .prod-top, .prod-bottom {
    width: 100%;
    margin-top: 0;
    margin-left: 0;
  }

  .prod-bottom {
    margin-top: 1rem;
  }

  .product-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .product-item summary {
    flex-direction: row;
    align-items: center;
  }

  .arrivals-grid {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .action-buttons {
    bottom: 10px;
    right: 10px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }

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

  .hero-right {
    height: 50vh;
  }

  .about-text h2 {
    font-size: 2rem;
  }

  .new-arrivals h2 {
    font-size: 2rem;
  }

  .arrival-item {
    width: 200px;
    height: 200px;
  }
}