/* General Styles */
body {
  font-family: 'Inter', sans-serif;
  background-color: #fdfdfd;
  margin: 0;
  padding: 20px;
  color: #1d1d1d;
  text-align: center;
}

h1, h2 {
  font-size: 3rem;
  color: #003DA5;
  text-transform: uppercase;
  font-weight: 700;
  text-shadow: 1px 1px 2px rgba(255, 215, 0, 0.4);
}

/* Back to Home Button */
.back-to-home {
  position: absolute;
  top: 20px;
  right: 30px;
  padding: 12px 25px;
  background: linear-gradient(to right, #FFD700, #007a79);
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  border-radius: 25px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.back-to-home:hover {
  background: linear-gradient(to right, #003DA5, #FFD700);
  transform: scale(1.05);
}

/* Gallery Section */
.luxury-gallery {
  column-count: 3;
  column-gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px;
}

.luxury-item {
  display: inline-block;
  width: 100%;
  margin-bottom: 20px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  break-inside: avoid;
  box-shadow: 0 8px 20px rgba(0, 122, 121, 0.12);
  transition: transform 0.3s ease;
}

.luxury-item:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 25px rgba(0, 122, 121, 0.3);
}

.luxury-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  transition: transform 0.3s ease;
}

.luxury-item:hover img {
  transform: scale(1.05);
}

/* Caption Overlay */
.luxury-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: rgba(0, 61, 165, 0.8);
  backdrop-filter: blur(5px);
  color: #fff;
  text-align: left;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 0 0 20px 20px;
}

.luxury-item:hover .luxury-caption {
  opacity: 1;
}

.luxury-caption h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  color: #FFD700;
}

.luxury-caption p {
  font-size: 14px;
  margin: 5px 0;
}

.luxury-btn {
  margin-top: 10px;
  padding: 8px 16px;
  font-size: 14px;
  border: none;
  background-color: rgba(255, 215, 0, 0.3);
  color: #fff;
  border-radius: 6px;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: bold;
  transition: background 0.3s ease;
}

.luxury-btn:hover {
  background-color: rgba(255, 215, 0, 0.5);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .luxury-gallery {
    column-count: 2;
  }
}

@media (max-width: 600px) {
  .luxury-gallery {
    column-count: 1;
  }

  .logo-control {
    max-height: 80px;
    max-width: 250px;
    width: auto;
    height: auto;
    display: inline-block;
    margin: 20px;
    padding: 8px 16px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 122, 121, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .logo-control:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 122, 121, 0.3);
  }
}
