body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(to bottom, #f7f5fb, #532fa1); /* Light lavender to spark purple */
    margin: 0;
    padding: 20px;
    text-align: center;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

/* Header Section */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 20px 10px;
    background-color: #532fa1; /* Spark purple header */
    color: #ffffff; /* White text */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.logo {
    max-height: 60px;
    margin-left: 20px;
}

.back-to-home {
    display: inline-block;
    padding: 10px 20px;
    background-color: #fddc00; /* Yellow accent button */
    color: #532fa1; /* Purple text */
    text-decoration: none;
    font-size: 16px;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-weight: bold;
    margin-right: 20px;
}

.back-to-home:hover {
    background-color: #532fa1;
    color: #ffffff;
}

/* Typography */
h1 {
    color: #532fa1;
    font-size: 36px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

h2 {
    color: #532fa1;
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: bold;
}

p {
    font-size: 18px;
    color: #333333;
    line-height: 1.6;
}

/* Gallery Section */
.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #ffffff;
}

.gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    border: 3px solid #532fa1; /* Purple border */
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Cookie Banner */
#cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #532fa1; /* Purple */
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    z-index: 9999;
    padding: 20px;
    text-align: center;
    box-shadow: 0px -4px 8px rgba(0, 0, 0, 0.2);
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.cookie-content p {
    margin: 0;
    font-size: 1rem;
}

.cookie-link {
    color: #fddc00; /* Yellow */
    text-decoration: none;
    font-weight: bold;
}

.cookie-link:hover {
    text-decoration: underline;
}

.cookie-accept, .cookie-reject {
    background-color: #fddc00;
    color: #532fa1;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    margin: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cookie-accept:hover, .cookie-reject:hover {
    background-color: #532fa1;
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .gallery-container {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }

    .back-to-home {
        font-size: 14px;
        padding: 8px 15px;
    }

    h1 {
        font-size: 28px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-accept, .cookie-reject {
        margin: 10px 0;
        width: 100%;
    }
}

