/* General Styles */
body {
  font-family: 'Inter', sans-serif;
  background-color: #ffffff; /* UPDATED: Changed to pure white */
  margin: 0;
  color: #1d1d1d; /* Kept dark text for readability */
  text-align: center;
}

h1,
h2 {
  font-size: 3rem;
  color: #1b2b65; /* UPDATED: Main dark blue */
  text-transform: uppercase;
  font-weight: 700;
  text-shadow: 1px 1px 2px rgba(228, 116, 4, 0.4); /* UPDATED: Accent orange shadow */
}

/* Back to Home Button */
.back-to-home {
  position: absolute;
  top: 20px;
  right: 30px;
  padding: 12px 25px;
  background: linear-gradient(to right, #E47404, #1b2b65); /* UPDATED: New color gradient */
  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, #1b2b65, #E47404); /* UPDATED: Swapped gradient on hover */
  transform: scale(1.05);
}

/* Gallery Section */
.luxury-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 0 auto;
  padding: 40px;
}

.luxury-item {
  width: 100%;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(27, 43, 101, 0.12); /* UPDATED: Shadow with new dark blue */
  transition: transform 0.3s ease;
}

.luxury-item:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 25px rgba(27, 43, 101, 0.3); /* UPDATED: Shadow with new dark blue */
}

.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(27, 43, 101, 0.85); /* UPDATED: Overlay with new dark blue */
  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: #E47404; /* UPDATED: Accent orange for heading */
}

.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(228, 116, 4, 0.3); /* UPDATED: Accent orange for button */
  color: #fff;
  border-radius: 6px;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: bold;
  transition: background 0.3s ease;
}

.luxury-btn:hover {
  background-color: rgba(228, 116, 4, 0.5); /* UPDATED: Accent orange on hover */
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .luxury-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .luxury-gallery {
    grid-template-columns: 1fr;
  }

  .logo-control {
    max-height: 80px;
    max-width: 250px;
    width: auto;
    height: auto;
    display: inline-block;
    margin: 20px;
    padding: 8px 16px;
    background: #ffffff; /* Is white as requested */
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(27, 43, 101, 0.15); /* UPDATED: Shadow with new dark blue */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .logo-control:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(27, 43, 101, 0.3); /* UPDATED: Shadow with new dark blue */
  }
}

.custom-photogallery-description {
  font-size: 20px;
  line-height: 1.8;
  color: #333;
  margin-bottom: -10px;
}
