@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Poppins:wght@400;500;600&display=swap');

.home-page {
  font-family: "Montserrat", sans-serif;
  color: #111;
  background: #f6f6f6;
  line-height: 1.6;
}

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

.home-page h2 {
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 60px;
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

.home-page .hero {
  position: relative;
  width: 100%;
  height: 65vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
}

.home-page .hero-full-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
  z-index: 1;
}

.home-page .hero-overlay {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  text-align: center;
}

.home-page .hero-overlay h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(38px, 6vw, 5.5rem);
  letter-spacing: 4px;
  text-transform: uppercase;
  line-height: 1.15;
  margin: 0;
  color: #c6a46c;
  text-shadow: 0 2px 4px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.home-page .hero-overlay h1 span {
  display: block;
}

.home-page .hero-overlay p {
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 400;
  color: #ffffff;
  margin-top: 20px;
  letter-spacing: 3px;
  line-height: 1.5;
  text-transform: uppercase;
  opacity: 0.85;
}

.home-page .about-us {
  background: #ffffff;
  padding: 90px 0;
}

.home-page .about-grid {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.home-page .about-text {
  flex: 1;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #333;
}

.home-page .about-photo {
  flex: 1;
  max-width: 420px;
}

.home-page .about-photo img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.home-page .about-photo img:hover {
  transform: scale(1.03);
  box-shadow: 0 25px 60px rgba(0,0,0,0.25);
}

.home-page .categories{
  padding:120px 30px;
  background:#eaeaea;
}

.home-page .categories .container{
  max-width:none;
  width:100%;
}

.home-page .categories .categories-grid{
  display:flex;
  gap:25px;
  width:100%;
}

.home-page .categories .category-card{
  flex:1;
  height:300px;

  position:relative;
  overflow:hidden;

  border-radius:18px;
  text-decoration:none;
}

.home-page .categories .category-card img{
  width:100%;
  height:100%;
  object-fit:cover;

  filter:brightness(0.65);

  transition:all .4s ease;
}

.home-page .categories .category-card:hover img{
  filter:brightness(0.9);
  transform:scale(1.05);
}

.home-page .categories .category-card::after{
  content:"";
  position:absolute;
  inset:0;

  background:linear-gradient(
    to top,
    rgba(0,0,0,0.6),
    rgba(0,0,0,0)
  );
}

.home-page .categories .category-card span{
  position:absolute;

  left:40px;
  bottom:35px;

  font-size:28px;
  font-weight:700;
  color:#fff;

  z-index:2;
}

.home-page .product-categories{
  padding:140px 0;
  background:#fff;
}

.home-page .product-categories .container{
  width:100%;
  max-width:none;
  padding:0;
}

.home-page .product-categories .categories-grid{
  display:flex;
  flex-wrap:nowrap;
  width:100%;
  gap:0;
}

.home-page .product-categories .category-card{
  flex:1;
  position:relative;
  overflow:visible;
  text-decoration:none;
  display:block;
}

.home-page .product-categories .category-card img{
  width:100%;
  height:720px;
  object-fit:cover;
  display:block;

  transition:transform .5s ease, filter .5s ease;
}

.home-page .product-categories .category-card:hover img{
  transform:scale(1.25);
  filter:brightness(1.15);
  z-index:2;
}

.home-page .product-categories .category-card span{
  position:absolute;
  bottom:0;
  left:0;
  right:0;

  padding:22px 0;
  text-align:center;

  font-size:24px;
  font-weight:700;
  color:#fff;

  background:rgba(0,0,0,0.55);
  z-index:3;
}

.home-page .reviews {
  padding: 110px 0;
  background: #eaeaea;
}

.home-page .reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 35px;
}

.home-page .review-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-page .review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.2);
}

.home-page .review-card p {
  font-size: 15px;
  margin-bottom: 15px;
  color: #333;
}

.home-page .review-card p:first-child {
  font-weight: 600;
}

.home-page .review-card span {
  font-size: 13px;
  color: #777;
}

.home-page .newsletter {
  padding: 80px 8%;
  background: #fff;
  display: flex;
  justify-content: center;
  font-family: "Montserrat", sans-serif;
}

.home-page .newsletter .container {
  max-width: 650px;
  width: 100%;
  background: #4F494B;
  color: #fff;
  padding: 50px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  transition: box-shadow 0.4s ease, background 0.4s ease;
}

.home-page .newsletter .container:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

.home-page .newsletter h2,
.home-page .newsletter p {
  text-align: center;
}

.home-page .newsletter h2 {
  font-size: 28px;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.home-page .newsletter p {
  font-size: 16px;
  color: #ddd;
  margin-bottom: 30px;
  line-height: 1.7;
}

.home-page .newsletter-form {
  display: flex;
  justify-content: center;
  max-width: 520px;
  margin: 0 auto;
}

.home-page .newsletter-form input.newsletter-input {
  flex: 1;
  padding: 18px 20px;
  font-size: 16px;
  border: 1px solid #777;
  border-right: none;
  border-radius: 12px 0 0 12px;
  background: #7D7577;
  color: #fff;
  outline: none;
  transition: all 0.3s ease;
}

.home-page .newsletter-form input.newsletter-input::placeholder {
  color: #aaa;
}

.home-page .newsletter-form input:focus {
  border-color: #fff;
  box-shadow: 0 0 12px rgba(255,255,255,0.15);
}

.home-page .newsletter-form button {
  padding: 18px 28px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 0 12px 12px 0;
  background: #A99FA1;
  color: #fff;
  cursor: pointer;
  transition: all 0.4s ease;
}

.home-page .newsletter-form button:hover {
  background: linear-gradient(135deg, #e0e0e0, #f5f5f5, #bdbdbd);
  color: #000;
  box-shadow: 0 8px 25px rgba(255,255,255,0.2);
  transform: translateY(-2px);
}


@media (max-width: 1200px) {
  .home-page .about-grid {
    gap: 40px;
  }

  .home-page .reviews-grid {
    gap: 25px;
  }

  .home-page .categories .categories-grid{
    flex-wrap:wrap;
  }

  .home-page .categories .category-card{
    flex:1 1 calc(33.333% - 20px);
    height:260px;
  }

  .home-page .product-categories .categories-grid{
    flex-wrap:wrap;
  }

  .home-page .product-categories .category-card{
    flex:1 1 calc(33.333%);
  }

  .home-page .product-categories .category-card img{
    height:420px;
  }
}


@media (max-width: 992px) {
  .home-page .about-grid {
    flex-direction: column;
    align-items: center;
    gap: 35px;
  }

  .home-page .about-photo {
    max-width: 320px;
  }

  .home-page .hero-overlay h1 {
    font-size: clamp(30px, 8vw, 45px);
  }

  .home-page .hero-overlay p {
    font-size: 1.3rem;
  }

  .home-page .hero-overlay h1 .brand-bold,
  .home-page .hero-overlay h1 .brand-italic {
    font-size: clamp(28px, 7vw, 36px);
  }

  .home-page .product-categories .categories-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px;
  }

  .home-page .product-categories .category-card img {
    height: 300px;
  }

  .home-page .categories .category-card{
    flex:1 1 calc(50% - 15px);
    height:240px;
  }

  .home-page .categories .category-card span{
    font-size:24px;
  }

  .home-page .product-categories .category-card{
    flex:1 1 50%;
  }

  .home-page .product-categories .category-card img{
    height:340px;
  }

}


@media (max-width: 768px) {
  .home-page .hero {
    height: 50vh;
  }

  .home-page .hero-overlay h1 .brand-bold,
  .home-page .hero-overlay h1 .brand-italic {
    font-size: clamp(24px, 8vw, 32px);
  }

  .home-page .hero-overlay p {
    font-size: 1.1rem;
    letter-spacing: 1.5px;
  }

  .home-page .product-categories .categories-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .home-page .product-categories .category-card img {
    height: 280px;
  }

  .home-page .product-categories h2 {
    font-size: 30px;
    margin-bottom: 40px;
  }

  .home-page .categories .category-card {
    flex: 1 1 100%;
  }

  .home-page .categories{
    padding:80px 20px;
  }

  .home-page .categories .categories-grid{
    gap:18px;
  }

  .home-page .categories .category-card{
    flex:1 1 100%;
    height:220px;
  }

  .home-page .categories .category-card span{
    font-size:22px;
    left:25px;
    bottom:25px;
  }

  .home-page .product-categories{
    padding:90px 0;
  }

  .home-page .product-categories .categories-grid{
    flex-direction:column;
  }

  .home-page .product-categories .category-card{
    width:100%;
  }

  .home-page .product-categories .category-card img{
    height:300px;
  }
}


@media (max-width: 576px) {
  .home-page .hero {
    height: 40vh;
  }

  .home-page .hero-overlay h1 .brand-bold,
  .home-page .hero-overlay h1 .brand-italic {
    font-size: clamp(22px, 9vw, 28px);
  }

  .home-page .hero-overlay p {
    font-size: 1rem;
  }

  .home-page .about-us {
    padding: 60px 10px;
  }

  .home-page .reviews {
    padding: 60px 10px;
  }

  .home-page .categories{
    padding:60px 15px;
  }

  .home-page .categories .category-card{
    height:190px;
  }

  .home-page .categories .category-card span{
    font-size:20px;
  }

  .home-page .product-categories .category-card img{
    height:240px;
  }

  .home-page .product-categories .category-card span{
    font-size:18px;
    padding:16px 0;
  }

}


@media (max-width: 360px) {
  .home-page .hero {
    height: 35vh;
  }

  .home-page .hero-overlay h1 .brand-bold,
  .home-page .hero-overlay h1 .brand-italic {
    font-size: clamp(20px, 10vw, 26px);
  }

  .home-page .hero-overlay p {
    font-size: 0.9rem;
  }

  .home-page .about-us h2,
  .home-page .product-categories h2,
  .home-page .reviews h2 {
    font-size: 24px;
  }

  .home-page .about-text {
    font-size: 0.95rem;
  }
}