:root {
  --primary-color: #FFD700;
  --background-dark: #000000;
  --background-light: #ffffff;
  --text-light: #ffffff;
  --text-dark: #000000;
  --font-main: 'Montserrat', sans-serif;
}

/* Hero Section */
.products-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3rem 1rem 2rem;
  background-color: var(--background-dark);
  color: var(--text-light);
  text-align: center;
  font-family: var(--font-main);
}

.products-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.products-hero p {
  font-size: 1.2rem;
  max-width: 1200px;
  line-height: 1.6;
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding: 2rem;
  background-color: var(--background-light);
  font-family: var(--font-main);
}

/* Product Card */
.product-card {
  background-color: rgba(255, 255, 255, 0.85);
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  padding: 1rem;
  text-align: center;
  color: var(--text-dark);
  backdrop-filter: blur(4px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.product-card:hover {
  transform: scale(1.03);
  box-shadow: 0 0 15px rgba(0,0,0,0.2);
  background-color: rgba(255, 255, 255, 0.95);
}

.product-card img {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 0;
  padding: 0;
  border: none;
}

.product-card h2 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.product-card p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.product-card a {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: var(--primary-color);
  color: var(--background-dark);
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
}

.product-card a:hover {
  background-color: #d4a832;
}

/* Overlay Text */
.image-wrapper {
  position: relative;
  width: 100%;
  display: block;
  overflow: hidden;
}

.overlay-text {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  color: #000;
  font-size: 0.85rem;
  font-weight: bold;
  padding: 0;
  margin: 0;
  background: none;
  border: none;
  white-space: nowrap;
  pointer-events: none;
  z-index: 2;
}

.overlay-text-vertical {
  position: absolute;
  top: 1rem;
  left: 1rem;
  transform: rotate(-270deg) translateX(1%);
  transform-origin: top left;
  color: #000;
  font-size: 0.85rem;
  font-weight: bold;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  white-space: nowrap;
  pointer-events: none;
  z-index: 2;
}

/* Welcome Section */
.welcome-section {
  background-color: var(--background-light);
  color: var(--text-dark);
  text-align: center;
  padding: 3rem 1rem;
  font-family: var(--font-main);
}

.welcome-section p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.welcome-section .btn-book {
  margin-top: 1rem;
}

/* Divider */
.divider {
  height: 4px;
  background-color: var(--primary-color);
}

/* Responsive */
@media (max-width: 600px) {
  .product-card h2 {
    font-size: 1rem;
  }

  .product-card p {
    font-size: 0.85rem;
  }
}
