/* Modern Responsive CSS for Cemetery Cleaners Contact Page */

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Raleway', sans-serif;
  background:  #cce6ff;
  line-height: 1.1;
  padding: 0;
}

h1, h2, h3 {
  font-family: 'Raleway', sans-serif;
  }
/* Navigation */
.navbar {
  background: #1b5e20; /* deep green */
  padding: 0.8rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 600;
  transition: opacity 0.2s;
}

.nav-links a:hover {
  opacity: 0.7;
}

/* Mobile Menu Hidden by Default */
@media (max-width: 800px) {
  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background: #1b5e20;
    flex-direction: column;
    width: 200px;
    padding: 1rem;
    display: none;
  }
  .nav-links.open {
    display: flex;
  }
}

/* Contact Layout middle box*/
.contact-container {
  max-width: 1000px;
  margin: auto;
  padding: 1.0rem;
  background: #cce6ff;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  margin-top: 1rem;
}

.contact-info {
  text-align: center;
  margin-bottom: 1rem;
}

.contact-info h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

/* Form Grid */
.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}	
		

label {
  display: block;
  margin-bottom: 0.1rem;
  font-weight: 600;
  color: #444;
}

input, textarea {
  width: 70%;
  padding: 0.6rem 0.8rem;
 order: 2px solid red;
  border-radius: 6px;
  font-size: 1rem;
  margin-bottom: 0.8rem;
  background: #fafafa;
  box-shadow: 6px 6px #52709e;
}

input:focus, textarea:focus {
  outline: 2px solid #1b5e20;
  background: #fff;
}

/* Buttons */
.btn {
  background: #1b5e20;
  color: #fff;
  border: none;
  padding: 0.8rem 1.4rem;
  font-size: 1.1rem;
  cursor: pointer;
  border-radius: 6px;
  margin-right: 0.5rem;
  transition: background 0.2s;
}

.btn:hover {
   background: #00A300;
}

.btn.secondary {
  background: #777;
}

.btn.secondary:hover {
   background: #00A300;
}


/* Privacy Note */
.privacy-note {
  font-size: 0.95rem;
  margin-top: 0.5rem;
  color: #555;
}

/* Responsive Typography */
@media (max-width: 600px) {
  h1 {
    font-size: 1.8rem;
  }
}
