
@import url('https://fonts.googleapis.com/css2?family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Metal&display=swap');

/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Basic body settings */
body {/*    font-family: Arial, sans-serif;*/font-family: "PT Serif", serif;font-family: "Roboto";font-weight: 400;font-style: normal;color: #000;line-height: 1.6;}

h1, h2, h3 {
    text-align: center;
    color: #551a8b;
}

p {
    text-align: center;
    margin-bottom: 0;
}

/* Parallax section */
.parallax {
    transition: 1s;
    background-image: url('mockup_image.png'); /* Replace with your image path */
    height: 400px;
    background-attachment: fixed;
    background-position: top;
    background-repeat: no-repeat;
    background-size: auto 75%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.text {
    color: white;
    text-align: center;
}

.text h1, .text p {
    font-size: 1.5em;
    font-weight: bold;
}

.text h2 {
    font-size: 2.5em;
}

/* Content section */
.content {
    padding: 20px;
    box-shadow: -1px -11px 25px 20px white;
}

.day {
    margin-bottom: 3em;
    width: 100%;
    display: block;
}

.parallax-image {
    height: 200px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin: 20px 0;
}

/* Different images for different parallax sections */
#image1 {
    background-image: url('image1.png'); /* Replace with your image path */
}

#image2 {
    background-image: url('image2.png'); /* Replace with your image path */
}

/* Footer */
footer {
    background-color: #001F54;
    color: white;
    text-align: center;
    padding: 20px 0;
}

footer a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .parallax {
        max-height: 66vh;
    }

    .text h1, .text p, .text h2 {
        font-size: 1em;
    }

    .parallax-image {
        height: 150px;
    }
}


h3 small {
    display: block;
    margin-top: -0.75em;
    font-size: 0.5em;
}

label {
    text-align: center;
    margin: auto;
    display: block;
    font-size: 2em;
    font-weight: bold;
    margin-top: -0.25em;
    /* text-shadow: 0px 0 2px #000000; */
    /* color: white; */
    font-family: "PT Serif", serif;
    opacity: 0.8;
}

h3 {
    font-size: 1.75em;
    font-family: "PT Serif", serif;
}

p.casual {
    font-style: italic;
    font-weight: bold;
    /* font-size: 1.2em; */
    opacity: 0.7;
    margin: 0.6em auto;
    color: #1c2353;
    font-family: 'PT Serif';
    letter-spacing: 0.02em;
}

header {
    margin-top: 0.5em;
}

a.place::before {content: "";width: 1.2em;height: 1.5em;background: url(location.svg);background-size: contain;background-repeat: no-repeat;background-position: top;}

a {font-family: revert;margin: auto;display: flex;text-align: center;text-decoration: none;/* outline: #1c2353 1.5px solid; */width: fit-content;font-st: -0 em;font-family: "Metal", serif;font-weight: bold;font-size: 1.2em;outline-offset: -6px;position: relative;color: #551a8b;}


/*GALERRY-----------------*/
div.container{
        display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f5f5f5;
}

.gallery {
    display: grid;
    grid-template-areas: 
        "item1 item1 item2"
        "item3 item1 item2"
        "item3 item4 item4";
    grid-gap: 20px;
    width: 80vw;
    max-width: 1000px;
}

.gallery-item {
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.item1 {
    grid-area: item1;
    background-image: url('resto1/1.png');
}

.item2 {
    grid-area: item2;
    background-image: url('resto1/2.png');
}

.item3 {
    grid-area: item3;
    background-image: url('resto1/3.png');
}

.item4 {
    grid-area: item4;
    background-image: url('resto1/4.png');
}

@media (max-width: 768px) {
    .gallery {
        grid-template-areas:
            "item1"
            "item2"
            "item3"
            "item4";
    }
}

img.gallery {
    max-width: 90%;
    display: none;
}

a.place::after {
    content: "";
    display: inline-block;
    background: #551a8b;
    height: 1.5px;
    width: 85%;
    position: absolute;
    left: 1em;
    bottom: 0.25em;
}