body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Black overlay with 50% opacity */
    z-index: -1; /* Behind the content */
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: url(images/bg2.png) no-repeat center center fixed;
    background-size: cover;
    background-position: center; /* Centers the background image */
    background-repeat: no-repeat; /* Prevents the background image from repeating */
    background-attachment: fixed; /* Keeps the background image fixed during scrolling */  
    color: #fff; /* White text */ /*color: #333;*/
    height: 100vh;
    width: 100%;
}

header {
    background-color: rgba(51, 51, 51, 0.8);
    color: white;
    padding: 1em 0;
}

h1, h2 {
    background-color: rgba(0, 0, 0, 0.7); /* black color with 70% opacity */
    color: white; /* text color */
    padding: 20px; /* space inside the element */
    border-radius: 10px; /* optional: rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* optional: shadow for better visibility */
    text-align: center;
    align-items: center;
    margin-top: 16px;
    margin-bottom: 2px;
    margin-left: auto;
    margin-right: auto;
    width: auto;
}

p {
    background-color: rgba(0, 0, 0, 0.7); /* black color with 70% opacity */
    color: white; /* text color */
    padding: 20px; /* space inside the element */
    border-radius: 10px; /* optional: rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* optional: shadow for better visibility */
    max-width: 800px; /* Container width */
    margin: auto; /* Center the container */
    text-align: center;
    align-items: center;
}
div.contactUs {
    background-color: rgba(0, 0, 0, 0.7); /* black color with 70% opacity */
    color: white; /* text color */
    padding: 20px; /* space inside the element */
    border-radius: 10px; /* optional: rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* optional: shadow for better visibility */
    max-width: 800px; /* Container width */
    margin: auto; /* Center the container */
    text-align: left;
    align-items: center;
}
div.index {
    text-align: center;
    align-items: center;
}

a.index {
    background-color: rgba(0, 0, 0, 0.7); /* black color with 70% opacity */
    color: white; /* text color */
    padding: 20px; /* space inside the element */
    border-radius: 10px; /* optional: rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* optional: shadow for better visibility */
    text-align: center;
    align-items: center;
}
a.index:hover {
    background-color: #777;
}


nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1em;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin-right: 1em;
}

nav ul li a {
    color: white;
    text-decoration: none;
}

a {
    color: white;
    text-decoration: none;
}

button#languageToggle {
    background-color: #555;
    color: white;
    border: none;
    padding: 0.5em;
    cursor: pointer;
}

button#languageToggle:hover {
    background-color: #777;
}

main {
    padding: 1em;
}

.image-container,
.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
}

.image-container img,
.gallery img {
    max-width: 100%;
    height: auto;
}

form {
    display: flex;
    flex-direction: column;
    gap: 0.5em;
}

form input,
form textarea {
    padding: 0.5em;
    border: 1px solid #ccc;
    border-radius: 4px;
}

form button {
    background-color: #555;
    color: white;
    border: none;
    padding: 0.5em;
    cursor: pointer;
}

form button:hover {
    background-color: #777;
}

.facebook-logo {
    background: url(images/fb.png) no-repeat center center fixed;
    width: 50px;
    height: 50px;
    margin-top: 1em;
}


.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}


.frame {
    position: relative;
    width: 200px;
    height: 360px;    
    padding: 20px;
    /*background: url('images/frame.png') no-repeat center center / cover;*/
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 10px solid #deb887; 
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.modal-content img {
    width: 60%;
    height: 60%;
    object-fit: contain;
}

.close-button {
    position: fixed;
    
    max-width: 768px;
    font-size: 2em;
    color: black;
    background-color: #deb887;
    cursor: pointer;
}


.contactUs {
    width: auto;
    max-width: 500px;
    text-align: left;
    align-items: center;
    margin: auto;
}