@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');
body{
  margin: 0px;
  margin-top: 77px;
  font-size: 20px;
  font-family: 'Segoe UI', sans-serif;
  background-color: rgb(250, 250, 255);
}

.navbar{
  position: fixed;
  z-index: 2;
  top: 0px;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  background-color: rgb(128, 0, 0);
}
.navbar > :nth-child(2){
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.navbar a{
  color: rgb(255, 255, 255);
  text-decoration: none;
  background-color: rgb(128, 0, 0) ;
  font-size: 20px;
  width: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.navbar a:hover {
  background-color: rgb(100, 0, 0);
}
.active{
  text-decoration: underline !important;
}
.navbar img{
  width: 60px;
  padding: 10px;
}
#links{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 2px 0;
}

.contactus {
  padding: 20px;
  background-color: #f9f9f9;
}

h2 {
  text-align: center;
  color: #800000; /* Maroon color */
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

th, td {
  padding: 10px;
  border: 1px solid #ddd;
  text-align: left;
}

th {
  background-color: #800000; /* Maroon color */
  color: white;
}

input[type="text"], input[type="email"] {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.submit button {
  background-color: #800000; /* Maroon color */
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.submit button:hover {
  background-color: #660000; /* Darker maroon for hover */
}

.icons a img {
  width: 30px;
  margin: 0 10px;
}

.map iframe {
  width: 100%;
  height: 300px;
  border: none;
  margin: 20px 0;
}

.last {
  text-align: center;
  margin: 20px 0;
}

.last a {
  color: #800000; /* Maroon color */
  text-decoration: none;
  margin: 0 10px;
}

.bottom {
  display: block;
  text-align: center;
  margin: 20px 0;
  font-size: 1.5em;
  color: #800000; /* Maroon color */
  text-decoration: none;
}

@media (max-width: 768px) {
    /* Navbar Dropdown */
    #links{
        display: none;
        position: absolute;
        top: 60px;
        right: 0;
        z-index: 5;
        height: 0;
        overflow: auto;
        animation: dropAnimation 0.5s ease-out;
    }
    #links a{
        background-color: rgb(128, 0, 0);
    }

    #links.show {
        display: flex;
        flex-direction: column;
        height: 300px;
    }        

    .hamburger {
        display: flex;
        padding: 10px;
        margin-right: 20px;
        border: 1px solid rgb(255, 255, 255);
        border-radius: 5px;
    }
    .hamburger:hover{
        background-color: rgb(100, 0, 0);
    }
    

    @keyframes dropAnimation {
        from{
            height: 0;
        }
        to{
            height: 300px;
        }
    }
}

@media (max-width: 1200px) {
    .navbar a {
        padding: 10px;
        text-align: center;
        font-size: 20px;
    }
}
@media (max-width: 320px) {
    .gallery-grid {
        display: block
    }
    .gallery-item {
        margin-bottom: 10px;
    }
}
/* General styles for the mode toggle button */
.mode-toggle {
  background-color: maroon;
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 5px;
  font-size: 16px;
}
.mode-toggle img{
  width: 20px;
}

.mode-toggle:hover {
  background-color: #a00000;
}

/* Default light mode styles */
body {
  background-color: #ffffff;
  color: #000000;
}

.navbar {
  background-color: maroon;
  color: white;
}

.navbar a {
  color: white;
}

.mode-toggle img {
  width: 20px;
  height: 20px;
}

/* Dark mode styles */
body.dark-mode {
  background-color: #121212;
  color: #ffffff;
}

body.dark-mode .contactus{
  background-color: #121212;
  color: #ffffff;
}

body.dark-mode .navbar {
  background-color: #1e1e1e;
}

body.dark-mode .navbar a {
  color: #ffffff;
}

body.dark-mode .mode-toggle img {
  filter: invert(1); /* Invert the icon color for better visibility */
}

