/* ==========================
   1. CORE RESET
   ========================== */
html {
    -webkit-text-size-adjust: none !important;
    text-size-adjust: none !important;
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    overflow-x: hidden;
    width: 100%;
   overflow-x:hidden;
}

/* ==========================
   2. NAVIGATION BAR
   ========================== */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: blue;
    position: relative;
    z-index: 1000;
    height: 70px;
}

.logo img {
    height: 50px !important;
    width: auto !important;
}

.hamburger {
    display: none;
    font-size: 30px;
    background: none;
    border: none;
    cursor: pointer;
    color: blue;
}

.menu {
    list-style: none !important;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.menu li a {
    text-decoration: none;
    color: blue;
    font-weight: bold;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 180px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.1);
    list-style: none !important;
    padding: 10px 0;
    z-index: 2000;
    border-radius: 8px;
}

.dropdown-content li a { 
    padding: 12px 20px; 
    color: #333; 
    display: block;
    font-weight: normal;
}

/* Only enable hover on desktop screens */
@media screen and (min-width: 951px) {
    .dropdown:hover .dropdown-content { 
        display: block; 
    }
}/* Container for the search elements */
#navSearchContainer {
    display: flex;
    align-items: center;
    gap: 5px;
    position: relative;
}

/* The Search Button (Icon) */
#searchButton {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 20px;
    color: blue; /* Matches your menu color */
    padding: 5px;
}

/* The Search Input Box */
#searchBox {
    padding: 5px 10px;
    border: 1px solid blue;
    border-radius: 20px;
    outline: none;
    width: 15vw; 
    min-width:80px;
    max-width:180px;
    font-size: 14px;
    background-color: white;
    color: #333;
}

/* ==========================
   3. INTRO SECTION
   ========================== */
.intro {
    background-color: blue;
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    padding: 40px 20px;
    box-sizing: border-box;
}

.intro h1 {
    margin: 0 0 20px 0;
}

.intro p {
    max-width: 800px;
    margin-top: 20px;
}

.logo1 {
    width: 150px !important;
    height: auto !important;
    margin: 20px 0;
}

/* ==========================
   4. LOCATION SECTION (Text + Map)
   ========================== */
.location-container {
    padding: 60px 10%;
    background-color: #f9f9f9;
}

.location-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.location-text {
    flex: 1;
    text-align: left;
    color: blue;
    font-size: 32px;
    margin-bottom: 20px;
}

.location-text p {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
}

.location-map {
    flex: 1;
    min-width: 300px;
}

/* ==========================
   5. FOOTER
   ========================== */
#footer, footer {
    width: 100% !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    background-color: #333;
    clear: both;
}

.footer-content {
    max-width: 100%;
    margin: 0;
    padding: 20px 5%;
    color: white;
}

/* ==========================
   6. FORMS
   ========================== */
form {
    max-width: 500px;
    margin: 20px auto;
}

label {
    display: block;
    margin-top: 12px;
    font-weight: bold;
}

input, select {
    width: 100%;
    padding: 8px;
    margin-top: 4px;
}

button {
    margin-top: 16px;
    padding: 10px 20px;
    background: blue;
    color: white;
    border: none;
    cursor: pointer;
}

/* ==========================
   7. CALENDAR / MONTH TOGGLE
   ========================== */
/* ===== CALENDAR ===== */
.month {
  margin-bottom: 20px;
}

/* Month buttons */
.month-toggle {
  width: 100%;
  padding: 12px;
  background-color: blue;
  color: white;
  border: none;
  cursor: pointer;
  font-size: 16px;
  text-align: left;
  margin-bottom: 5px;
  border-radius: 5px;
}

.month-toggle:hover {
  background-color: darkblue;
}

/* Tables hidden by default */
.month-table {
  display: none; /* This hides it initially */
  width: 100%;
border-collapse: collapse;
}

/* This is the magic class the JS adds/removes */
.month-table.show {
  display: table !important; 
}

/* Table styling */
.month-table th,
.month-table td {
  border: 1px solid #333;
  padding: 10px;
  text-align: left;
}

.month-table th {
  background-color: #ddd;
}

.month-table td a {
  color: blue;
  text-decoration: none;
}

.month-table td a:hover {
  text-decoration: underline;
}
/* ==========================
   Events
   ========================== */

.container {
  display: flex;
  justify-content: space-between;
}

.left {
  width: 45%;
  text-align: center;
  height: 100%;
}

.right {
  width: 45%;
  text-align: center;
}
p{
    text-align:center;
}
h4{
    text-align:center;
}
h1{
    text-align: center;
}
/* ==========================
rentals
========================== */
.p2{
   text-align:left !important;
}
/* ==========================
   8. MOBILE & RESPONSIVE
   ========================== */
@media screen and (max-width: 950px) {
    .hamburger { display: block !important; }

    .menu {
        display: none !important;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: white;
        border-top: 1px solid #ddd;
        padding-bottom: 20px;
        list-style: none !important;
        z-index: 1500;
    }

    .menu.active { display: flex !important; }*/

    .dropdown-content {
        position: relative !important;
        display: none !important;
        width: 90% !important;
        margin: 10px auto !important;
        background-color: #f9f9f9 !important;
        border-radius: 12px !important;
        box-shadow: inset 0 2px 5px rgba(0,0,0,0.05) !important;
        padding: 5px 0 !important;
    }

    .dropdown.open .dropdown-content { display: block !important; }

    .menu li {
        width: 100%;
        text-align: center;
        padding: 10px 0;
        list-style: none !important;
    }

    /* Location stack */
    .location-content {
        flex-direction: column !important;
        text-align: center;
    }

    .location-text { text-align: center; margin-bottom: 30px; }
}

/* Sideways phone */
@media screen and (orientation: landscape) and (max-height: 500px) {
    .intro { padding: 20px; min-height: auto; }
    .logo1 { width: 80px !important; }
}
/*thanks button*/
.button {
  /*display: flex;*/
  justify-content: center;
  display: inline-block;
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}
