/* Reset and Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Diplomata+SC&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

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

body {
  font-family: 'Roboto', Arial, sans-serif;
  background-image: url('classic+townhouse+kitchen+.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  min-height: 100vh;
  color: #333;
}

body::before {
  content: "";
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.4);
  z-index: -1;
  pointer-events: none;
}

/* Navbar styling */
.navbar {
  background-color: #e6f0fa;
  color: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 30px;
  border-bottom: 4px solid red;
}
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: top 0.3s;
}
body {
  padding-top: 80px; /* Adjust if your navbar is taller/shorter */
}

.navbar-left {
  display: flex;
  align-items: center;
}
.navbar-right {
  display: flex;
  align-items: center;
  margin-left: auto;
}
.logo {
  height: 50px;
  width: 150px;
}
.separator {
  width: 2px;
  height: 40px;
  background-color: red;
  margin: 0 20px;
}
.nav-links a {
  color: #000;
  text-decoration: none;
  margin-right: 10px;
  font-weight: bold;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
  color: red;
}

/* Responsive Navbar */
@media (max-width: 768px) {
  .navbar { flex-direction: column; align-items: flex-start; }
  .navbar-left, .navbar-right { flex-direction: column; align-items: flex-start; }
  .separator { display: none; }
  .nav-links a { margin-right: 0; margin-bottom: 8px; }
}

/* Main page heading */
.section-title {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 40px;
  color: #fff; /* white */
  font-size: 2.8rem;
  font-family: 'Archivo Black', Arial, sans-serif;
  letter-spacing: 2px;
  text-shadow: 2px 3px 12px #000, 0 2px 8px #333;
}

/* Info Table / Taglines */
.info-table {
  flex: 1;
  max-width: 7000px;
  min-width: 300px;
  background: transparent;
  margin: auto;
  font-family: 'Archivo Black', Arial, sans-serif;
  font-size: 2.8rem;
  letter-spacing: 2px;
  text-shadow: 1px 2px 8px #070101, 0 2px 8px #000000;
  color: #fff;
  text-align: center;
}
/* Taglines under the heading */
.info-table h2 {
  margin-bottom: 10px;
  color: #fff;
  font-size: 2.2rem;
  font-family: 'Archivo Black', Arial, sans-serif;
  letter-spacing: 2px;
  text-shadow: 2px 3px 12px #000, 0 2px 8px #333;
  text-align: center;
}
/* About Page Styles */
.background-aboutus {
  max-width: 100%;
  margin: 90px 100px auto 100px;
  padding: 20px;
  background-color: #e6f0fa;
  border: 1px solid #e6f0fa;
  border-radius: 0px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.aboutus-text {
  font-size: 18px;
  line-height: 1.6;
  color: #333;
}
.aboutus-photo img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}
@media (max-width: 900px) {
  .background-aboutus {
    grid-template-columns: 1fr;
    margin: 40px 10px;
    gap: 20px;
  }
}

/* Main Content Layout */
.main-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin: 50px auto;
  max-width: 1200px;
  padding: 0 16px;
  justify-content: space-between;
}
@media (max-width: 900px) {
  .main-content { flex-direction: column; align-items: stretch; gap: 20px; margin: 20px 0; padding: 0 8px; }
  .info-table, .contact-section { max-width: 100%; }
}

/* Contact Section */
.contact-section {
  flex: 1;
  max-width: 450px;
  min-width: 300px;
  background: #f8faff;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 24px;
  margin: 40px 0 50px auto;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.contact-section h1 {
  color: #b30000;
  font-size: 2rem;
  font-family: 'Archivo Black', Arial, sans-serif;
  margin-bottom: 20px;
}
.contact-form {
  display: flex;
  flex-direction: column;
}
.contact-form label {
  margin-bottom: 5px;
  font-weight: bold;
}
.contact-form input,
.contact-form textarea {
  margin-bottom: 15px;
  padding: 10px;
  border: 1px solid #aaa;
  border-radius: 4px;
  font-size: 1rem;
}
.contact-form button {
  background: #b30000;
  color: #fff;
  padding: 10px;
  font-size: 1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s;
}
.contact-form button:hover {
  background: #ff3333;
}

/* Services Grid */
.background-table {
  max-width: 100%;
  margin: 100px auto;
  padding: 20px;
  background-color: #e6f0fa;
  border: 1px solid #e6f0fa;
  border-radius: 0px;
}
.grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 5px;
  padding-left: 100px;
}
@media (max-width: 900px) {
  .grid-container { grid-template-columns: 1fr; padding-left: 0; }
}
.grid-item {
  display: flex;
  align-items: center;
  gap: 15px;
}
.grid-photo img {
  width: 75%;
  max-width: 75%;
  height: auto;
  border-radius: 8px;
}
.grid-text {
  font-size: 20px;
  color: #333;
}
.grid-text ol,
.grid-text ul {
  margin-left: 20px;
  margin-bottom: 16px;
  padding-left: 20px;
}
.grid-text li {
  margin-bottom: 10px;
  font-size: 1.1em;
  line-height: 1.5;
}
.grid-text strong {
  font-size: 1.2em;
  color: #b30000;
}
.grid-text.grid-item.large-scale {
  transform: scale(1.3);
  transform-origin: top left;
}
@media (max-width: 600px) {
  .grid-text.grid-item.large-scale {
    transform: scale(1);
  }
}

/* Modern Footer */
.site-footer {
  background: rgba(0,0,0,0.85);
  color: #fff;
  padding: 32px 10px 16px 10px;
  text-align: center;
  margin-top: 60px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-bottom: 18px;
}
.footer-contact div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.15rem;
}
.footer-icon {
  font-size: 1.5rem;
}
.footer-contact a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 500;
}
.footer-contact a:hover {
  color: #ff3333;
  text-decoration: underline;
}
.footer-copy {
  font-size: 0.95rem;
  color: #ccc;
  margin-top: 10px;
}

/* Responsive Footer */
@media (max-width: 600px) {
  .footer-contact { flex-direction: column; gap: 18px; }
  .section-title, .info-table h2, .contact-section h1 { font-size: 1.3rem; }
}

/* Make images responsive everywhere */
img {
  max-width: 100%;
  height: auto;
}