/* Import Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600&display=swap");

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

body {
  background-color: #ffffff;
  color: #333333;
  line-height: 1.6;
  font-family: "Montserrat", sans-serif;
  background-image: url("/fullpagepic.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* Header */
.page-header {
  background-color: #f5f5f5;
  padding: 60px 0;
  margin-top: 10vh;
  text-align: center;
}

.page-header h1 {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 15px;
}

.page-header p {
  max-width: 700px;
  margin: 0 auto;
  color: #666666;
  font-size: 1.1rem;
  line-height: 1.8;
}

/* Product Houses Section */
.product-houses-section {
  padding: 80px 0;
}

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

.product-houses-container {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.product-house {
  display: flex;
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.product-house:nth-child(even) {
  flex-direction: row-reverse;
}

.product-house-image {
  flex: 1;
  min-height: 400px;
  position: relative;
  overflow: hidden;
}

.product-house-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-house:hover .product-house-image img {
  transform: scale(1.05);
}

.product-house-content {
  flex: 1;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-house-content h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #000000;
}

.product-house-description {
  color: #666666;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 25px;
}

.product-house-btn {
  align-self: flex-start;
  background-color: transparent;
  border: 1px solid #000000;
  color: #000000;
  padding: 12px 25px;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  margin-top: 10px;
}

.product-house-btn:hover {
  background-color: #000000;
  color: #ffffff;
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
  .page-header h1 {
    font-size: 2.5rem;
  }

  .page-header p {
    font-size: 1rem;
  }

  .product-house-content h2 {
    font-size: 2rem;
  }
}

@media screen and (max-width: 768px) {
  .product-house {
    flex-direction: column !important;
  }

  .product-house-image {
    min-height: 300px;
  }

  .product-house-content {
    padding: 30px;
  }
}

@media screen and (max-width: 500px) {
  .page-header h1 {
    font-size: 2rem;
  }

  .product-house-content h2 {
    font-size: 1.8rem;
  }

  .product-house-description {
    font-size: 1rem;
  }
}
