/* Import custom font */
@font-face {
    font-family: 'cloisterblack';
    src: url('CloisterBlack.ttf') format('truetype');
}

/* Make sure the viewport scales properly */
html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Prevent horizontal scrolling */
    background-color: #bd0000a1; /* tan-ish color */

}

p  {
    text-decoration: none;
    font-family: 'cloisterblack';
    color: rgb(0, 0, 0);
    font-size: clamp(1.5rem, 3vw, 2rem);
    -webkit-text-stroke-width: 0.15px;
    -webkit-text-stroke-color: rgb(81, 255, 0);*/
}

#mailto {
   
    text-decoration: none;
    font-family: 'cloisterblack';
    color: rgb(0, 0, 0);
    font-size: clamp(1.5rem, 3vw, 2rem);
    -webkit-text-stroke-width: 0.15px;
    -webkit-text-stroke-color: rgb(81, 255, 0);*/

}

/* Video background */
#myVideo {
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
}

/* Header */
.header {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: black;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    width: 100%;
    box-sizing: border-box;
}

/* Logo Bar */
.logo-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

/* Logo */
.logo {
    width: 80%;
    max-width: 500px;
}

.logo:hover {
    transform: scale(1.05);
}

/* GIFs */
.gifs {
    width: 15vw;
    max-width: 180px;
}

/* Center content */
.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    z-index: 1;
    width: 90%;
    max-width: 800px;
    padding: 20px;
    box-sizing: border-box;
}

/* Navigation Menu */
.nav {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.nav a {
    text-decoration: none;
    font-family: 'cloisterblack';
    color: rgb(0, 0, 0);
    font-size: clamp(2rem, 4vw, 4rem); /* Responsive font */
    padding: 8px 12px;
    border-radius: 4px;
    transition: background-color 0.1s ease;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: rgb(9, 255, 0);
}

.nav a:hover {
    background-color: brown;
}


/* Hide mobile booking link on PC */
.desktop-only {
    display: block;
}

.mobile-only-viewer {
    display: none;
}

/* Booking page styling */
.booking-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Full screen height */
    padding: 20px;
}

/* Responsive iframe */
.booking-frame {
    width: 80rem;
    height: 50rem;
    border: none;
}

/* About section styling */
.about-section {
    background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent dark background */
    padding: 20px;
    border-radius: 10px;
    max-width: 800px;
    margin: 30px auto;
    text-align: center;
    color: rgb(0, 0, 0);
}

/* Text box for content */
.about-text {
    background-color: rgba(255, 255, 255, 0.2); /* Light transparent background */
    padding: 15px;
    border-radius: 8px;
    margin-top: 10px;
}
/* Google Maps Styling */
.map-container {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.google-map {
    width: 100%;
    max-width: 800px;
    height: 400px;
    border: none;
    border-radius: 10px;
}

/* Responsive styles for smaller screens */
@media (max-width: 768px) {
  .mobile-only-viewer {
    display: inline-block;
    text-decoration: none;
  }

  .nav {
    display: flex;
    gap: 10px; 
   flex-wrap: wrap;
  }

  .desktop-only {
    display: none;
  }
}
}
