/* General Styling */
body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(to bottom, #643d8d, #feb226); /* Textured deep blue gradient */
    background-size: cover;
    background-blend-mode: overlay;
    margin: 0;
    padding: 20px;
    text-align: center;
    overflow-x: hidden;
    color: #ffffff; /* Light text for readability */
}

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: rgb(255 255 255 / 80%); /* Semi-transparent deep blue */
    color: #feb226; /* Gold text */
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.3);
}

.logo {
    max-height: 70px;
    margin-left: 20px;
}

.back-to-home {
    display: inline-block;
    padding: 10px 20px;
    background-color: #feb226; /* Gold button */
    color: #643d8d; /* Deep blue 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: #643d8d; /* Lighter blue hover */
    color: #ffffff;
}

/* Typography */
h1 {
    color: #feb226; /* Gold */
    font-size: 38px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

h2 {
    color: #feb226; /* Gold */
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: bold;
}

p {
    font-size: 18px;
    color: #f4f4f4; /* Soft white text */
    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;
    border-radius: 15px;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    border: 3px solid #feb226; /* Gold border */
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
}

/* Cookie Banner */
#cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 26, 51, 0.9); /* Dark blue semi-transparent */
    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.3);
}

.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: #feb226; /* Gold */
    text-decoration: none;
    font-weight: bold;
}

.cookie-link:hover {
    text-decoration: underline;
}

.cookie-accept, .cookie-reject {
    background-color: #feb226; /* Gold button */
    color: #643d8d; /* Deep blue text */
    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: #643d8d; /* Light blue hover */
    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: 30px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-accept, .cookie-reject {
        margin: 10px 0;
        width: 100%;
    }
}

.microwave-icon {
    width: 1em;
    height: 1em;
    fill: currentColor;
    vertical-align: -0.125em;
}