body {
    /* font-family: Arial, sans-serif; */
    font-family: 'Michroma', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #FCFBF4;
}

header {
    background-color: #FCFBF4;
    height: 100px;
    /* padding: 8px 20px; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed; /* Make header sticky */
    width: 100%; /* Take full width */
    top: 0; /* Stick it to the top */
    z-index: 1000; /* Make sure it's above other content */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.212); /* Add a drop shadow */
}

nav {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    position: relative;
    
}

.menu-icon {
    font-size: 40px;
    color: #84754e;
    cursor: pointer;
    position: absolute;
    left: 20px;
}

.logo {
    /* margin: 0 auto; */
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    
    
}

.logo a {
    display: contents; /* This makes the anchor behave like it's not there for layout purposes */
    /* OR */
    position: static; /* Ensures the anchor doesn't affect positioning */
    /* OR */
    position: absolute; /* Makes the anchor behave like the image */
    bottom: -100px;
    animation: riseToCenter 0.7s ease-out forwards;
}

.logo img {
    /* max-height: 80px;
     height: auto;
    position: absolute;
    bottom: -100px; 
    animation: riseToCenter 1s ease-out forwards; */

    /* width: 150px;  */
    max-height: 80px;
    height: auto;
    position: absolute;
    bottom: -100px; /* Start position below the view */
    animation: riseToCenter 0.7s ease-out forwards;

    
    
}

@keyframes riseToCenter {
    from {
        bottom: -100px; /* Start position */
        opacity: 0;
    }
    to {
        bottom: 50%; /* Center vertically */
        opacity: 1;
        transform: translateY(50%);
    }
}

/* .nav-links {
    display: none;
    list-style-type: none;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 60px;
    left: 20px;
    background-color: #333;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.nav-links li {
    padding: 10px;
}

.nav-links li a {
    text-decoration: none;
    color: white;
    font-size: 18px;
}

.nav-links li:hover {
    background-color: #444;
} */

.nav-links {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.nav-links li {
    margin: 20px 0;
}

.nav-links li a {
    text-decoration: none;
    color: black;
    font-size: 24px;
}

@media screen and (min-width: 768px) {
    .nav-links li a {
        font-size: 32px;
    }
}

main {
    text-align: center;
    padding-bottom: 50px;
}

/* .video-container {
    position: relative;
    width: 100%;
    padding-top: 57.25%;
    overflow: hidden;
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
} */

#video {
    position: relative;
    width: 100%;
    height: 100vh; /* Set the height to full viewport height */
    overflow: hidden;
}

.video-container {
    position: relative;
    width: 100%;
    height: 100%; 
    opacity: 0;
    animation: fadeIn 1s ease-in 0.3s forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure the video covers the entire container */
}





.tile-section {
    
    display: flex;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            -ms-overflow-style: none;
            padding-top: 50px;
            padding: 20px;
            gap: 20px;
}

.tile-section:active {
    cursor: grabbing;
}

.tile-section::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome, Safari, and Opera */
}

.tile {
   

    position: relative;
    /* width: 400px; */
    height: 650px;
    flex-shrink: 0;
    /* padding: 10px; */
    /* height: auto; */
    padding: 20px;
    cursor: pointer;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Align items horizontally */
    align-items: center; /* Align items vertically */
    background-color: white;
    /* box-shadow: 0 4px 8px rgba(194, 192, 192, 0.843); */
    

    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease-out, transform 1s ease-out;
    /* border-radius: 10px; */
}

.rental {
    /* position: relative;
    
    flex-shrink: 0;
    
    cursor: pointer;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center; 
    background-color: inherit;
    opacity: 0;
    transition: opacity 1s ease-out, transform 1s ease-out;
    transform: translateY(50px); */

    position: relative;
    flex-shrink: 0;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: inherit;
    opacity: 0; 
    transform: translateY(50px); /* Initial transform */
    transition: opacity 1s ease-out, transform 1s ease-out;

}

.rental.visible {
    opacity: 1;
    transform: translateY(0); /* Transform to the final position */
}

.tile.visible {
    opacity: 1;
    transform: translateY(0);
}



/* .tile img {
    width: 300px;
    height: auto;
    margin: 0 10px;
    border-radius: 10px;
} */

.button_style {
    border: 1px solid balck; 
    width: 230px;
    padding: 10px;
    background-color: inherit;
    font-size: 0.8em;
    font-weight: bold;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.button_style:hover{
    background-color: black;
    color: white;

}

.button_style.visible {
    opacity: 1;
    transform: translateY(0);
}

.tile img {
    /* width: 500px;
    height: auto;
    transition: transform 0.3s ease; */

    width: 320px;
    height: 450px;
    /* height: auto; */
    /* border-radius: 10px; */
    transition: transform 0.3s ease;
}

.rental img {
    /* width: 500px;
    height: auto;
    transition: transform 0.3s ease; */

    /* width: 400px; */
    height: 450px;
    width: auto;
    /* height: auto; */
    /* border-radius: 10px; */
    transition: transform 0.3s ease;
}


.tile-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tile-overlay h3 {
    color: white;
    font-size: 18px;
}

.tile:hover {
    transform: scale(1.1);
}

.tile:hover .tile-overlay {
    opacity: 1;
}

@media (max-width: 768px) {
    .tile-section {
        flex-direction: column;
        align-items: center;
        overflow-x: hidden;
    }

    .tile {
        width: 98vw;
        max-width: 98%;
    }

    .tile img {
        max-width: 89vw;
        max-height: 89vh;
    }
}

button {
    cursor: pointer;
}


.overlay {
    position: fixed;
    height: 100%;
    width: 100%;
    background-color: #FCFBF4;
    top: 0;
    left: 0;
    z-index: 999;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.close-icon {
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 50px;
    color: #84754e;
    cursor: pointer;
}

.quote {
    background-color: #333;
    padding: 40px 0;
    position: relative;
    overflow: hidden;
    color: white;
    text-align: center;
}

.quote-content {
    position: relative;
    z-index: 1;
}

.quote-text {
    font-size: 24px;
    font-style: none;
    margin-bottom: 20px;
}

.contact-button {
    padding: 10px 20px;
    font-size: 18px;
    background-color: #fff;
    color: #333;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.contact-button:hover {
    background-color: #ddd;
}



/* footer {
    background-color: white;
    color: white;
    padding: 20px 0;
    text-align: center;
    
    bottom: 0;
    width: 100%;
}

footer .social-media a {
    margin: 0 10px;
    display: inline-block;
}

footer .social-media img {
    width: 24px;
    height: 24px;
} */
/* .quote {
position: relative;
overflow: hidden;
text-align: center;
}

.quote-background {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image: url('https://i.postimg.cc/fTZ9JwJt/justtrys1.jpg');
background-size: cover;
background-position: center;
opacity: 0.7;
transition: opacity 0.3s ease;
}

.quote:hover .quote-background {
opacity: 1;
} */

blockquote {
    /* color: rgba(250, 200, 130, 0.6); */
    color: rgba(255, 255, 255, 0.9);
    /* font-family: Tahoma, sans-serif; */
    font-size: 40px;
    width: 60%;
    margin: 0 auto;
  }
  blockquote h1 {
    font-size: 4rem;
  }
  blockquote p {
    /* font-style: italic; */
    margin-bottom: 0;
  }


  
  blockquote p::before,
  blockquote p::after {
    content: "“";
    font-family: Georgia;
    font-size: 7rem;
    margin: -2rem 0 0 -4rem;
    position: absolute;
    opacity: 0.6;
  }
  
  blockquote p::after {
    content: "”";
    margin: -1rem -4rem 0 0;
  }

.quote-content {
position: relative;
z-index: 1;
padding: 40px 20px;
}

.quote-text {
font-size: 24px;
font-style: italic;
margin-bottom: 20px;
color: white; /* adjust text color for visibility */
}

.contact-button {
padding: 10px 20px;
font-size: 18px;
background-color: #fff;
color: #333;
border: none;
cursor: pointer;
border-radius: 5px;
transition: background-color 0.3s ease;
}

.contact-button:hover {
background-color: #ddd;
}