@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&family=Rubik:wght@400;500;700&display=swap');

/* 🎯 General Body Styling */
body {
   font-family: 'Roboto', sans-serif;
   background-color: #ffffff;

  margin: 0;
  padding: 20px;
  color: #333333; /* Dark gray text for readability */
  text-align: center;
}
h1, h2 {
  font-size: 2.8rem;
  color: #003087;                    /* HoJo Deep Blue */
  text-transform: uppercase;
  font-weight: 700;
}

/* Back to Home Button */
.back-to-home {
  position: absolute;
  top: 20px;
  right: 30px;
  padding: 12px 28px;
  background: #FF6200;              /* HoJo Orange */
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 98, 0, 0.3);
}

.back-to-home:hover {
  background: #e55a00;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 98, 0, 0.4);
}

/* Gallery Section */
.luxury-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 60px 20px;
}

/* Each Card */
.luxury-item {
  display: block;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
  transition: all 0.3s ease;
  border-top: 5px solid #FF6200;
}

/* Fixed Image Height (Perfect Alignment) */
.luxury-item img {
  width: 100%;
  height: 260px;           /* FIXED HEIGHT — choose your preferred */
  object-fit: cover;       /* crops evenly and keeps alignment */
  display: block;
  transition: transform 0.4s ease;
}

/* Hover Effect */
.luxury-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 35px rgba(0,0,0,0.18);
}

.luxury-item:hover img {
  transform: scale(1.05);
}

/* Luxury Button */
.luxury-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #FF6200;
  color: #fff;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
  box-shadow: 0 6px 18px rgba(255, 98, 0, 0.3);
  margin-top: 10px; /* Space between title & button */
}

.luxury-btn:hover {
  background: #e45700;
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(255, 98, 0, 0.45);
}


/* Caption Overlay */
.luxury-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 24px;

  /* Dark gradient background */
  background: linear-gradient(to top, rgba(0,48,135,0.95), rgba(0,48,135,0.65));

  color: #fff;
  opacity: 0;
  transition: opacity 0.4s ease;

  /* Ensures everything stays LEFT aligned */
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.luxury-item:hover .luxury-caption {
  opacity: 1;
}

.luxury-caption h3 {
  margin: 0 0 8px 0;
  font-size: 20px;
  font-weight: 600;
  color: #FF6200;
}


/* Responsive */
@media (max-width: 600px) {
  .luxury-item img {
    height: 220px; /* smaller for mobile */
  }
}
