/* Base Styles */
body {
    font-family: 'Bison', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f9f9f9;
    color: maroon;
    line-height: 1.6;
    font-weight: 400;
}

header {
    background-image: url('images/background3.jpg');
    background-size: cover; /* Cover the entire container */
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Prevent image from repeating */
    background-color: rgba(255, 102, 102, 1);
    padding: 20px;
    text-align: center;
    color: white;
    font-family: 'Bison', Arial, sans-serif;
    font-weight: 600;
}

header h1 {
    font-size: 1.5rem;
    margin: 0;
    letter-spacing: 1.2px;
}

.logo {
    width: 200px;
    margin-bottom: 0;
}

.slogan {
    font-style: italic;
    font-size: 1.1rem;
    color: #f5f5f5;
    margin-top: 4px;
    letter-spacing: 0.8px;
}

.info, .about, .hours, .services {
    background-color: white; /* You may remove this if the image fully covers the background */
    

    padding: 20px;
    margin: 10px auto;
    max-width: 100%;
    width: 90%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    font-size: 1.05rem;
}



.contact-container h2, .about h2, .hours h2, .services h2 {
    color: green;
    margin-bottom: 12px;
    font-family: 'Bison', Arial, sans-serif;
    font-weight: 600;
    font-size: 1.3rem;
    letter-spacing: 1px;
}


.about ul {
  list-style-type: none;
  padding-left: 0;
}



main {
  background-image: url('images/background.jpg');
  background-size: cover;
  background-position: top-right;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  padding: 40px 0; /* Optional spacing */
}

.services ul {
    list-style-type: none;
    padding-left: 0;
}

.services li {
    background: #88c9bf;
    margin: 8px 0;
    padding: 12px;
    border-radius: 5px;
    color: #fff;
    font-weight: 700;
    transition: background 0.3s ease, transform 0.2s ease;
    font-size: 1.1rem;
}

.services li:hover {
    background: #76b6ab;
    transform: scale(1.02);
}

.gallery {
    padding: 20px;
    text-align: center;
}

.gallery h2 {
    margin-bottom: 20px;
    font-family: 'Bison', Arial, sans-serif;
    font-weight: 600;
    font-size: 1.8rem;
    letter-spacing: 1px;
}

.images {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.images img {
    width: 100%;
    max-width: 220px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}

/* Footer */
footer {
    background-color: #444;
    color: white;
    text-align: center;
    padding: 10px;
    font-family: 'Bison', Arial, sans-serif;
    font-size: 0.9rem;
}

/* Responsive Nav Styles */
.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  font-family: 'Poppins', sans-serif;
}


.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.navbar-links {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.navbar-links ul {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.navbar-links li {
    display: inline-block;
}

.navbar-links a {
    text-decoration: none;
    font-weight: 500;
    color: maroon;
    padding: 8px 12px;
    border-radius: 4px;
    transition: background 0.3s ease, color 0.3s ease;
}

.navbar-links a:hover {
    background-color: green;
    color: white;
}

.navbar-links a.active {
  background-color: green;
  color: #fff;
  font-weight: 600;
}

.centered-contact {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  padding: 20px;
}

.contact-container {

  max-width: 600px;
  background-color: #ffffff;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  font-size: 1.05rem;
  line-height: 1.8;
}

.nav-logo img {
  height: 70px;  /* Adjust this value to fit your navbar nicely */
  width: auto;   /* Maintain aspect ratio */
  margin-right: 10px;
  vertical-align: middle;
}




/* Toggle Button for Mobile */
.toggle-button {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: auto;
}

.toggle-button .bar {
    height: 3px;
    width: 100%;
    background-color: #333;
    border-radius: 5px;
}

/* Mobile View */
@media (max-width: 768px) {
    .toggle-button {
        display: flex;
    }

    .navbar-links {
        display: none;
        width: 100%;
    }

    .navbar-links.active {
        display: block;
    }

    .navbar-links ul {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 20px;
        gap: 10px;
    }

    .navbar-links a {
        display: block;
        width: 100%;
        padding: 12px;
        font-size: 1rem;
    }
}
