*{
        margin: 0;
        padding: 0;
        box-sizing: border-box;
}

body {
        font-family: Arial, Helvetica, sans-serif;
        line-height: 1.6;
        background-color: rgb(255, 255, 255);
        color: black;
}

h1, h2, h3 {
        color: black;
        text-align: center;
        text-transform: uppercase;
}

table, th, td {
        border: 2px solid rgb(0, 0, 0);
        text-align: center;
        padding: .5em;
        border-collapse: collapse;
        margin: 0 5% 0 5%;
}

fieldset {
        border: 2px solid rgb(0, 0, 0);
        padding: 50px;
        margin: 15px; 
}

form {
    display: flex;
    justify-content: center;
    width: 100%; 
}

footer{
        background-color: rgb(0, 0, 0);
        color:rgb(255, 255, 255);
        position: fixed;
        width: 100%;
        padding: 1em 3em 1em 3em;
        bottom: 0;
}

.navbar {
        background: url(images/bubbles_more_blue.jpg);
        background-size: cover;
        color:  rgb(252, 252, 252);
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1% 10%;
}

.nav-links {
        font-weight: bold;            
        font-size: 1em;           
        letter-spacing:0.02em;      
        text-transform:uppercase;  
        list-style: none;
        display: flex; 
}

.nav-links a{
        display: block;
        color: rgb(255, 255, 255);
        text-decoration: solid;
        text-align: center;
        padding: 10px 20px;
        transition: background 0.3s ease;
}

.nav-links a:hover,
.nav-links a:active{
        background-color: rgb(0, 0, 0);
        border-radius:  4px;
} 

.hamburger {
    display: none; /* Hide by default for desktop */
    flex-direction: column;
    justify-content: space-around;
    width: 2rem;
    height: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.bar {
    width: 100%;
    height: 0.25rem;
    background-color: white;
    transition: all 0.3s ease-in-out;
}

.logo {
        color:  rgb(252, 252, 252);
        font-size: 4em;
        font-weight: bold;
        text-transform: uppercase;
        float: left;
}

.location, .discount {
        width: 80%;
        margin: 0 10% 5%;
        padding: 1em;
        border: 5px solid rgb(0, 0, 0);
        background-color:rgb(83, 161, 203);
        position:relative;
}

.amenities {
        width: 40%;
        text-align:justify; 
}

.mailing {
        width:40%;
        padding: 1em;  
}

.about {
        width: 80%;
        margin: 0% 9% 6% 9%;
        padding: 2em;
        border: 5px solid rgb(0, 0, 0);
        background-color:rgb(83, 161, 203);
}

.info {
        width: 40%;
        text-align: justify;
        float: left;
        margin: 0 9% 10% 0;
}

.more-info {
        text-align: center;
        font-weight: bold;
        margin: 0 10% 0 10%;
}

.ourAddress {
       float:left; 
       line-height: 1;
}

.submit-button {
        padding: 10px 30px;
        font-size: 24px;
        background-color: #000901; /* Optional: adds color */
        color: white;              /* Optional: changes text color */
        cursor: pointer;           /* Optional: changes cursor on hover */
}

.center-it {
       text-align: center; 
}

.bigPrint {
        color: rgb(70, 179, 70);
        text-align:center;
        font-size: calc(2em + 2vw); 
        font-weight: bolder;
}

.slideshow-container {
        width: 48%; /* Or any specific width */
        margin-left: auto;
        margin-right: auto;
        padding: 1em 0 2em;
}

.photos {
        display: none;
}

.prev, .next {
        cursor: pointer;
        position: absolute;
        top: 50%;
        width: auto;
        margin-top: -22px;
        padding: 16px;
        color: white;
        font-weight: bold;
        font-size: 24px;
        transition: 0.6s ease;
        border-radius: 0 3px 3px 0;
        user-select: none;
}

.next {
        right: 30%;
}

.prev {
        left: 30%;
}

.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}
.numbertext {
  color: #0c0101;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
} 

#paymentLogo {
        display: block;
        margin-left: auto;
        margin-right: auto;
        width: 10%; /* Makes the image smaller and responsive */
        height: auto; /* Maintains the aspect ratio */
}

#map {
        position: absolute;
        top: 15%; 
        right: 8%; 
}

#card {
        display:block;
        width:10%;
        margin-left: auto;
        margin-right: auto;
}



@media screen and (max-width: 1060px) {
        table, th, td {
                font-size: .5em;
                padding: .1em;
        }
        fieldset {
                border: none;
        }
        .navbar {
                flex-direction: column; /* Stacks items vertically */
                align-items: stretch; /* Makes buttons take full width */
        }
        .nav-links {
                display: none; /* Ensures links behave like blocks for full width and padding */
                width: 100%; /* Optional: ensures full width */
                margin: 5px 0; /* Adds spacing between stacked buttons */
        }
        .nav-links.is-active {
                display: block;
        }
        .hamburger {
                display: flex; /* Show the icon on mobile */
        }
        .amenities, .mailing {
                width: 100%;
                margin: 0;
        }

        .more-info {
                font-size: .5em;
        }
        .info, #store-front {
                width: 100%;
                float: none;
        }
        .slideshow-container {
                width: 90%;
        }

        .next {
                right: 10%;
        }

        .prev {
                left: 10%;
        }
        #map {
                margin: 0 30%;
                position: relative;
                width: 60%;
                height: 60%;
        }
         #logo-pic, #logo-info {
                display:none;
        }
}