/* General Styles */
body {
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    color: #111;
    background-color: #fff; /* Super 8 yellow */
    margin: 0;
    padding: 20px;
    color: #333;
    text-align: center;
}

/* Headings */
h1, h2 {
    font-size: 40px;
    color: #F44336; /* Super 8 red */
    text-transform: uppercase;
    position: relative;
    font-weight: 700;
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.5);
}

/* 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, #F44336, #FFEB3B); /* Red to yellow */
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    text-transform: uppercase;
    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, #FFEB3B, #F44336); /* Yellow to red */
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.back-to-home:hover::before {
    left: 0;
}

/* Luxury Gallery */
.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(244, 67, 54, 0.7); /* Red overlay */
    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 */
.luxury-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #FFEB3B; /* Yellow */
    color: #F44336; /* Red text */
    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: #FFC107; /* Brighter yellow 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 */
.logo {
    max-height: 150px;
    margin-left: 15px;
    padding: 10px 20px;
    border-radius: 12px;
    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);
}

/* Well Paragraph */
.well {
    font-size: 18px;
    color: #444444;
    max-width: 1300px;
    margin: 0 auto 30px;
    line-height: 1.7;
    text-align: center;
}
