@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');




/* Global styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
}

p {
    font-weight: 300;
    font-size: 0.95em;
    letter-spacing: 0.2px;
}



/* Navigation bar styles */
header {
    background-color: #ffffff;
    color: white;
    padding: 4rem 0 1rem 0;
}

h1 {
    font-weight: 300;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 60px;
    font-weight: 400;
}

.logo a {
    font-family: 'Bebas Neue', sans-serif;
    color: rgb(59, 59, 59);
    text-decoration: none;
    font-size: 2.6rem;
    transition: color 0.5s ease, text-shadow 0.5s ease;
    letter-spacing: -0.08rem;
}

.logo a:hover {
    color: #000000;
    text-shadow: 0 0 2px #0000009a;

}

.nav-links {
    list-style: none;
    display: flex;
    gap: 17px;
    text-transform: uppercase;
    letter-spacing: 0.25rem;
} 

.nav-links li {
    padding: 0 5px;
    font-size: 0.75rem;
}

.nav-links a {
    text-decoration: none;
    color: rgb(59, 59, 59);
    transition: color 0.5s ease, text-shadow 0.5s ease;
}

.nav-links a:hover {
    color: #000000;
    text-shadow: 0 0 2px #0000009a;
}






/* Slideshow styles */

.photo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70vh; /* Adjust height as needed */
    overflow: hidden;
    position: relative;
}

.slideshow-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mySlides {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 2s ease-in-out; /* Smoother transition */
    display: flex;
    justify-content: center;
    align-items: center;
}

.mySlides.show {
    opacity: 1;
}

.main-photo {
    max-width: 90%; /* Ensure the image does not fill the full width */
    max-height: 90%; /* Ensure the image does not fill the full height */
    width: auto;
    height: auto;
    object-fit: contain; /* Maintain aspect ratio and contain within the box */
    margin: auto; /* Center the image */
}





/*Collections list styles*/
.main-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
}

.tiles {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 400px; /* Make tiles wide */
    height: 500px; /* Make tiles short */
    overflow: hidden;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.tiles-container {
    display: flex;
    flex-wrap: wrap; /* Arrange tiles in a column */
    gap: 12px;
    justify-content: center; /* Center tiles horizontally */
}

.tiles img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.5s ease;
}

.tiles .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(34, 34, 34, 0.5);
    color: white;
    transition: background-color 0.5s ease, text-shadow 0.5s ease;
}

.tiles:hover .overlay {
    background-color: rgba(34, 34, 34, 0.7);
    text-shadow: 0 0 3px #ffffff;

}

.tiles:hover img {
    filter: brightness(0.7);
}

.tiles span {
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 0.4rem;
    text-transform: uppercase;
}




/* Gallery and image styles */
.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 10px;
    max-width: 92%;
    margin: 0 auto;
    justify-content: center; /* Center the gallery items */
}

.gallery img {
    height: 520px; /* Fixed height for all images */
    width: auto; /* Allow the width to adjust based on aspect ratio */
    object-fit: cover; /* Maintain aspect ratio and cover the container */
    border-radius: 0px; /* Optional: Add rounded corners */
    cursor: pointer; /* Change cursor to a hand when hovering over an image */
    opacity: 0;  /* Start with images hidden */
    transition: opacity 1s ease-in-out;  /* Smooth fade-in effect */
}

.gallery img.loaded {
    opacity: 1;  /* Fully visible */
}

/* Enlarge the image slightly on hover */
.gallery img:hover {
    transform: scale(1.01); /* Enlarge the image by 10% */
    transition: transform 0.9s cubic-bezier(0.25, 0.8, 0.25, 1); /* Slow, soft transition */

}

/* Lightbox styles */
.lightbox {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Semi-transparent black background */
    justify-content: center;
    align-items: center;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
}

.lightbox .close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    color: white;
    cursor: pointer;
}



/*Video player page style*/

/* General styles for the main section */
.video-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
    min-height: calc(100vh - 60px); /* Adjust height based on header height */
    box-sizing: border-box;
}

/* Styles for the video container */
.video-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1080px; /* Set a maximum width for the video */
    padding: 20px;
    box-sizing: border-box;
}

/* Styles for the video element */
.video-container video {
    width: 100%;
    height: auto;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin: 20px;
}






/*About page styles*/
.about {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px;
    max-width: 1200px;
    margin: 0 auto;
    gap: 80px;
}

.about-text {
    flex: 1;
    max-width: 700px;
    font-weight: 300;
    font-size: 1.1em;
    text-align: center;
}

.about-photo {
    flex: 1;
    max-width: 450px;
}

.about-photo img {
    width: 100%;
    height: auto;
    border-radius: 0px;
}





/*Contact page styles*/

.contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.contact h1 {
    margin-bottom: 20px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    max-width: 500px;
    width: 100%;
}

.form-group {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 5px;
    font-size: 0.8rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 0px;
    box-sizing: border-box;
}

button {
    font-family: 'Roboto', sans-serif;
    padding: 10px 20px;
    background-color: #000000;
    color: white;
    border: none;
    border-radius: 0px;
    cursor: pointer;
    transition: background-color 0.5s ease, text-shadow 0.5s ease;
    letter-spacing: 0.2rem;
    text-transform: uppercase;
}

button:hover {
    background-color: #555;
    text-shadow: 0 0 2px #ffffff;
}

.form-group textarea {
    height: 200px;
    resize: none;
}