   /* General Styles */
        body {
            font-family: 'Lora', serif;
           background-color: #153161;
 background: linear-gradient(to bottom, #003366, #a81111, #232f5d);
background-attachment: fixed;
background-size: cover;
            margin: 0;
            padding: 20px;
            color: #333;
            text-align: center;
        }

        h1, h2 {
            font-size: 3rem;
    color: #ffffff;
   text-transform: uppercase;
    position: relative;
    font-weight: 700;
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.5);
        }
		
		
		
		
		p{
			
			font-size: 18px;
    color: #ffffff;
		}

       /* Enhanced Back to Home Button Style */
.back-to-home {
    position: absolute;
    top: 20px;
    right: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    background: linear-gradient(to right, #4A90E2, #5BB5A2);
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    text-transform: uppercase;
    position: absolute;
    overflow: hidden;
    z-index: 1;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.back-to-home::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.3s ease;
    z-index: 0;
}

.back-to-home:hover {
    background: linear-gradient(to right, #5BB5A2, #4A90E2);
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.back-to-home:hover::before {
    left: 0;
}


     .luxury-gallery {
    column-count: 3;
    column-gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
}

.luxury-item {
    display: inline-block;
    width: 100%;
    margin: 0 0 20px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    break-inside: avoid;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.luxury-item:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.luxury-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
    border-radius: 20px;
}

.luxury-item:hover img {
    transform: scale(1.05);
}

/* Caption Overlay */
.luxury-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: rgba(123, 100, 90, 0.6);
    backdrop-filter: blur(8px);
    color: white;
    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;
}

.luxury-caption p {
    font-size: 14px;
    margin: 5px 0;
}

/* Updated Luxury Button Style (Animated Read More Style) */
.luxury-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #FF5722; /* Warm orange */
  color: #fff;
  font-size: 14px;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: bold;
  position: relative;
  overflow: hidden;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  margin-top: 10px;
  border-radius: 50px;
}

.luxury-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.3s ease;
  z-index: 1;
}

.luxury-btn:hover {
  background-color: #FF9800; /* Brighter on hover */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.luxury-btn:hover::before {
  left: 0;
}

.luxury-btn:focus {
  outline: none;
}


/* Responsive Adjustments */
@media (max-width: 1024px) {
    .luxury-gallery {
        column-count: 2;
    }
}

@media (max-width: 600px) {
    .luxury-gallery {
        column-count: 1;
    }

    .luxury-caption h3 {
        font-size: 18px;
    }

    .luxury-caption p {
        font-size: 13px;
    }

    .luxury-btn {
        font-size: 13px;
        padding: 6px 14px;
    }
}


.logo {
    max-height: 80px;
    margin-left: 15px;
    padding: 10px 20px;
    background: linear-gradient(45deg, #fff, #fff); /* Gradient matching layout */
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3); /* Soft shadow for a floating effect */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5); /* Enhanced shadow on hover */
}
