/* Reset & Global */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}
h1, h2, h3, h4, h5, h6 {
  font-size: 2rem; /* adjust for headings */
}
p {
  font-size: 1rem;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #1f5d85;
  padding: 15px 25px;
  position: relative;
}

.logo-img {
  width: 130px;
  height: 90px;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}
.nav-links li {
  margin: 0 10px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  font-family: "Merriweather", serif;
}
.nav-links a:hover {
  color: #00bcd4;
}
.nav-links a.active,
.nav-links a:hover {
  background: #fd9e2d;
  border-radius: 5px;
  color: #222;
}
/* Hide checkbox */
#menu-toggle {
  display: none;
}

/* Burger Menu icon */
.burgerMenu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  cursor: pointer;
  z-index: 1001;
}

.burgerMenu span {
  display: block;
  height: 3px;
  width: 100%;
  background: white; /* important to make bars visible */
  border-radius: 3px;
  transition: all 0.4s ease;
}

/* Footer */
footer {
  position: relative;
  background: #1f5d85;
  color: #fff;
  padding: 20px;
  text-align: center;
}

.social-buttons {
  margin-top: 10px;
}

.social-btn {
  color: #fff;
  font-size: 30px;
  margin: 0 10px;
  display: inline-block;
  transition: 0.3s;
}

.social-btn:hover {
  color: #fd9e2d;
  transform: scale(1.2);
}

/* Home Page */
.home-banner-img {
  width: 100%;
  height: auto;
}
.home-container1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  background-color: #fff;
}
.home-container2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #222;
  padding: 2rem;
}
.home-text {
  flex: 1;
  padding: 1rem;
  font-family: "Roboto", sans-serif;
}
.home-text2 {
  flex: 1;
  padding: 1rem;
  font-family: "Roboto", sans-serif;
  color: white;
}
.home-text-p {
  margin-top: 8px;
}
.home-image {
  flex: 1;
  text-align: center;
}
.home-image img {
  max-width: 100%;
  border-radius: 10px;
}

/* Gallery */
.card h4 {
  font-family: "Source Sans 3", sans-serif;
  font-size: 30px;
  font-weight: 600;
  color: #0852c1;
}
.card p {
  font-family: "Source Sans 3", sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: #222;
}
.gallery-container {
  padding: 2rem;
  text-align: center;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.card {
  background: #f4f4f4;
  padding: 1rem;
  border-radius: 10px;
  cursor: pointer;
}
.card img {
  max-width: 100%;
  width: 400px;
  height: 500px;
  object-fit: cover;
  border-radius: 10px;
}

/* Contact Form */
.contact-container {
  padding: 2rem;
  max-width: 600px;
  margin: auto;
}
form {
  display: flex;
  flex-direction: column;
}
form label {
  margin: 10px 0 5px;
}
form input,
form textarea {
  padding: 10px;
  /* margin-bottom: 15px; */
  border: 1px solid #ccc;
  border-radius: 5px;
}
form button {
  padding: 10px;
  background: #333;
  color: #fff;
  border: none;
  cursor: pointer;
}
form button:hover {
  background: #fd9e2d;
  color: #222;
}

.inline-inputs {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

label {
  margin-right: 5px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
textarea,
select {
  width: 100%;
  padding: 8px;
  margin: 5px 0 15px 0;
  box-sizing: border-box;
}

button {
  padding: 10px 20px;
  cursor: pointer;
}

.business-address {
  padding: 15px;
  background-color: #333;
  font-size: 14px;
  color: #ccc;
  text-align: center;
}

/* Responsive */
@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .card img {
    width: 100%;
    height: auto;
  }
}
@media (max-width: 768px) {
  .burgerMenu {
    display: flex;
  }
.navbar {
    padding: 4px 25px;
}
  .nav-links {
    position: absolute;
    top: 90px;
    right: 0;
    background-color: #222;
    flex-direction: column;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  #menu-toggle:checked + .burgerMenu + .nav-links {
    max-height: 300px;
  }

  .nav-links li {
    text-align: center;
    padding: 15px 0;
  }
  .home-container1,
  .home-container2 {
    flex-direction: column;
    text-align: center;
    padding: 1rem; 
  }
  .home-image,
  .home-text,
  .home-text2 {
    width: 100%;
  }
  .home-text h1,
  .home-text2 h1 {
    font-size: 27px;
  }

  .home-text-p {
    font-size: 18px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .card img {
    width: 100%;
    height: auto;
  }
  .card h4 {
    font-size: 28px;
  }
  .card p  {
    font-size: 18px;
  }
  .footer-content p {
    font-size: 16px;
  }
  .social-btn {
  font-size: 24px;
}
}

@media (max-width: 480px) {
   .nav-links {
    top: 72px;
  }
  .logo-img {
    width: 100px;
    height: 70px;
  }

  .nav-links li {
    font-size: 16px;
  }

  .home-text h1,
  .home-text2 h1 {
    font-size: 24px;
  }

  .home-text-p {
    font-size: 16px;
  }
  .navbar {
    padding: 0px 25px;
}
}
