html, body {
    height: 100%;
    margin: 0;
}

header {
    position: relative;
    background-image: url("https://www.johnnycoburn.com/images/banner.jpeg");
    background-size: cover;
    background-position: center;
    height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    color: white;
    text-align: center;
    padding-bottom: 20px;
}

header h1 {
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-size: 2.2em;
    font-family: 'Medula One', cursive;
}

header h2 {
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-size: 1em;
}

/* ====================================================================
   NEW: Menu Container Styles (Includes Button and Text)
   ==================================================================== */
   .menu-container {
    position: fixed;
    top: 20px; /* Adjust top position as needed */
    right: 20px; /* Adjust right position as needed */
    z-index: 1001;
}

.floating-button {
    background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent black */
    color: white;
    border: none;
    padding: 12px 20px; /* Adjust padding as needed */
    font-size: 16px; /* Adjust font size as needed */
    cursor: pointer;
    border-radius: 5px; /* Adjust border radius as needed */
    transition: background 0.3s ease;
    display: flex; /* Use flexbox for alignment */
    align-items: center; /* Vertically center icon and text */
    gap: 8px; /* Space between icon and text */
}

.floating-button:hover {
    background-color: rgba(0, 0, 0, 0.9); /* Darker on hover */
}

.hamburger-icon-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Distribute lines evenly */
    height: 16px; /* Adjust height as needed */
}

.hamburger-icon {
    width: 20px; /* Adjust width as needed */
    height: 3px; /* Adjust thickness as needed */
    background-color: white;
    border-radius: 1px; /* Slightly rounded corners for icon */
}

.menu-text {
    font-size: 16px; /* Adjust font size to match button */
}

/* Side Menu */
.side-menu {
    position: fixed;
    top: 0;
    right: -100%; /* Or -300px if you want a fixed width */
    width: 20%; /* Or a fixed width like 300px */
    height: 100%;
    background-color: #222;
    color: white;
    transition: right 0.3s ease-in-out; /* Smooth transition */
    padding: 20px;
    box-shadow: -5px 0 10px rgba(0, 0, 0, 0.3);
    z-index: 1000; /* Or 1001 to match other fixed elements */
    overflow-y: auto; /* Add scroll if content overflows */
}

.side-menu.open {
    right: 0;
}

.side-menu h2 {
    margin-top: 0;
}

.side-menu ul {
    list-style: none;
    padding: 0;
}

.side-menu a {
    color: white;
    text-decoration: none;
    display: block;
    padding: 10px 0;
    transition: color 0.3s;
}

.side-menu a:hover {
    color: #ffcc00;
}

/* Close Button */
.close-button {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
}

.close-button:hover {
    color: #ffcc00;
}

/*Eof for side menu */



/* Content */
.content {
    flex: 1;
    padding: 20px;
}

:root {
  --footer-height: 40px;
}

footer {
  display: flex;
  justify-content: center;
  align-items: center;
  height: var(--footer-height);
  color: white;
  font-weight: 700;
  background-color: black;
}

/* Contact Section - Flex Container */
.contact-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin: 40px auto;
    max-width: 1000px;
}
a {
    color: white;        /* Set link color to white */
    text-decoration: none; /* Remove underline */
}

a:hover {
    color: #f1f1f1;      /* Set link color to a lighter white for hover effect */
    text-decoration: underline; /* Optional: Add underline on hover */
}

/* Contact Info Box */
.contact-info-box {
    width: 500px;
    background: rgba(34, 34, 34, 0.9);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    color: white;
    text-align: center;
}

.contact-info-box h2,
.contact-info-box h3 {
    font-family: 'Medula One', cursive;
    text-align: center;
}

.contact-info-box p {
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
}

.contact-info-box ul {
    list-style: none;
    padding: 0;
}

.contact-info-box li {
    font-size: 16px;
    padding: 5px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-info-box li:last-child {
    border-bottom: none;
}

/* Contact Form */
.contact-form-container {
    width: 500px;
    background: rgba(34, 34, 34, 0.9);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    color: white;
    text-align: center;
}

.contact-form-container h2 {
    font-size: 24px;
    margin-bottom: 15px;
    font-family: 'Medula One', cursive;
}

.form-group {
    margin-bottom: 15px;
    text-align: left;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    background: #444;
    color: white;
}

.form-group textarea {
    resize: none;
}

.submit-button {
    width: auto;
    background: #ffcc00;
    color: #222;
    padding: 12px;
    font-size: 18px;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin: 20px auto; /* Center it horizontally */
    transition: background 0.3s ease;
}

.submit-button:hover {
    background: #e6b800;
}

/* Sticky Contact Bar */
.sticky-contact-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(34, 34, 34, 0.95);
    color: white;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 20px;
    font-family: 'Medula One', cursive;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

.sticky-contact-bar a {
    color: #ffcc00;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    transition: color 0.3s ease;
}

.sticky-contact-bar a:hover {
    color: #e6b800;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        align-items: center;
    }
    .contact-info-box, .contact-form-container {
        width: 90%;
    }
    .sticky-contact-bar {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    .sticky-contact-bar a {
        margin-bottom: 5px;
    }
}
  
/* back to top button */
/* styles.css (or wherever your back to top button styles are) */

#backToTopBtn {
    position: fixed;
    bottom: 40px; /* Original bottom position */
    right: 20px;
    padding: 10px 20px;
    font-size: 16px;
    background-color: #000;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: none; /* Hidden by default */
    transition: opacity 0.3s;
    z-index: 1002; /* Ensure it's above the footer */
    opacity: 0.8; /* Slightly transparent */
}

#backToTopBtn:hover {
    background-color: #5f6061;
    opacity: 1; /* Fully opaque on hover */
}

/* Media query for smaller screens - Adjust values as needed */
@media (max-height: 700px) {
    #backToTopBtn {
        bottom: 100px;
    }
}

@media (max-height: 600px) {
    #backToTopBtn {
        bottom: 140px;
    }
}

@media (max-height: 500px) {
    #backToTopBtn {
        bottom: 180px;
    }
}

/* Map Fit To Size */
.map-div img {
    width: 100%;
    display: block; /* Prevents a small space below the image */
    height: auto; /* Maintains aspect ratio */
  }

  /* contain the other containers */
  .page-wrapper {
    background: rgba(34, 34, 34, 0.9);
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    color: white;
    padding: 40px 20px;
    margin: 20px auto;
    max-width: 900px;
    box-sizing: border-box;
    margin-bottom: 100px; 
}

@media (max-width: 768px) { /* Adjust breakpoint as needed */
    .page-wrapper {
        flex-direction: column; /* Force vertical stacking */
    }
}


  /* Page Container */
  .page-container { /* A more general name */
    background: rgba(34, 34, 34, 0.9);
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    color: white;
    padding: 40px 20px;
    margin: 20px auto;
    max-width: 900px;
    box-sizing: border-box;
}

/* Content Info Box */
.content-block { /* A general name for your reusable container */
    background: rgba(34, 34, 34, 0.9);
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    color: white; /* Default text color */
    padding: 40px 20px;
    margin: 20px auto; /* Centers the container */
    max-width: 900px; /* Optional: Set a maximum width */
    box-sizing: border-box;
    font-size: 16px; /* Example font size */
    text-align: center;
}

.content-block h2,
.content-block h3 {
    font-family: 'Medula One', cursive;
    text-align: center;
}

.content-block p {
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) { /* Example breakpoint for smaller screens */
    .page-container {
        width: 95%; /* Adjust width for smaller screens */
        padding: 10px; /* Adjust padding if needed */
    }
}

@media (max-width: 480px) { /* Example breakpoint for even smaller screens */
    .page-container {
        width: 98%; /* Adjust width for even smaller screens */
        padding: 5px; /* Adjust padding if needed */
    }
}

/* Refresh button styles */
.refresh-button {
    background-color: yellow;
    color: black;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 5px;
    float: left; /* Position on the left */
    margin-bottom: 10px; /* Add some bottom margin */
}

.refresh-button:hover {
    background-color: gold;
}

/* Clearfix for content blocks */
.content-block::after {
    content: "";
    display: table;
    clear: both;
}

/* Optional: Style the photo-grid if needed */
.photo-grid {
    clear: both; /* Ensure it clears the floated button */
    /* Add other grid styles here if needed */
}

/* Progress Bar Styling */
#progressContainer {
    width: 100%;
    max-width: 400px;
    margin-top: 10px;
    text-align: center;
    align-items: center;
}

#uploadProgress {
    width: 100%;
    height: 10px;
    appearance: none;
    background-color: #333; /* Dark background */
    border-radius: 5px;
    overflow: hidden;
}

#uploadProgress::-webkit-progress-bar {
    background-color: #333; /* Background color */
    border-radius: 5px;
}

#uploadProgress::-webkit-progress-value {
    background-color: #ffcc00; /* yellow progress */
    border-radius: 5px;
}

#uploadProgress::-moz-progress-bar {
    background-color: #ffcc00; /* yellow progress */
    border-radius: 5px;
}

#progressText {
    color: #ccc;
    font-size: 14px;
    margin-top: 5px;
    text-align: center;
}

/* Success Message */
#successMessage {
    color: #ffcc00;
    font-weight: bold;
    font-size: 16px;
    margin-top: 10px;
    text-align: center;
}

/* booking container */
.grid-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 20px; /* Increased gap for spacing */
    align-items: center;
}

.grid-container label {
    text-align: right;
    padding-right: 10px;
}

.grid-container .radio-group {
    display: flex;
    flex-wrap: wrap;
}

.grid-container .radio-group label {
    text-align: left;
    padding-right: 15px;
    padding-left: 0;
}

/* Media queries for responsive form */
@media (max-width: 768px) {
    .grid-container {
        grid-template-columns: 1fr; /* Stack columns vertically */
        gap: 10px;
    }

    .grid-container label {
        text-align: left; /* Align labels to the left on small screens */
    }

    .grid-container input,
    .grid-container select,
    .grid-container textarea {
        width: 100%; /* Full width on small screens */
        box-sizing: border-box; /* Include padding and border in width */
    }

    .grid-container .radio-group {
        flex-direction: column; /* Stack radio buttons vertically */
    }

    .grid-container .radio-group label {
        padding-right: 0;
        padding-bottom: 5px;
    }
}

.page-wrapper{
    max-width: 1100px;
}

.contact-container .container h2 {
    text-align: center; /* Center the heading */
}