 /* Import Google Font - Adjusted for a clean, modern look */
@import url('https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500;600;700&display=swap');

/* General Styles */
body {
    font-family:'Jost', sans-serif;
    background-color: #f5f7fa;
    margin: 0;
    padding: 20px;
    color: #2c2c2c;
    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.5);
}

/* Back to Home Button */
.back-to-home {
    position: absolute;
    top: 20px;
    right: 30px;
    padding: 12px 25px;
    background: linear-gradient(to right, #FFD700, #003DA5);
    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, 61, 165, 0.1);
    transition: transform 0.3s ease;
}

.luxury-item:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 25px rgba(0, 61, 165, 0.25);
}

.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.7);
    backdrop-filter: blur(6px);
    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; /* Prevents full-width stretch */
  width: auto;
  height: auto;
  display: inline-block;
  margin: 20px;
  padding: 8px 16px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0, 61, 165, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-control:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 61, 165, 0.25);
}
