
body {
    font-family: 'Oswald', sans-serif;
    margin: 0;
    background-color: #8B0000; /* deep crimson */
    color: white;
}
header, nav, footer {
    text-align: center;
    background-color: #1e1e1e;
    padding: 20px;
}
nav a {
    color: gold;
    margin: 0 10px;
    text-decoration: none;
    font-weight: bold;
}
.hero {
    text-align: center;
    padding: 50px 20px;
}
.testimonials {
    padding: 40px;
    background-color: #8B0000;
    text-align: center;
}
.testimonial {
    border: 2px solid #2c2c2c;
    padding: 20px;
    margin: 20px auto;
    max-width: 700px;
    background-color: #1e1e1e;
    border-radius: 10px;
}
.testimonial p {
    font-style: italic;
}
.testimonial h4 {
    color: gold;
}

.photo-border {
    border: 4px solid #2c2c2c;
}
.social-links {
  text-align: center;
  margin-top: 40px;
  padding: 20px;
  background-color: #1e1e1e;
  color: gold;
  border-radius: 10px;
}

.social-icons {
  margin-top: 15px;
}

.social-icons a {
  display: inline-block;
  margin: 0 15px;
  transition: transform 0.3s;
}

.social-icons img {
  width: 60px;
  height: 60px;
  filter: brightness(0) invert(1); /* makes icons white/gold if needed */
}

.social-icons a:hover {
  transform: scale(1.1);
}
.gallery-section {
  text-align: center;
  padding: 40px 20px;
}

.gallery-section h2 {
  font-size: 2rem;
  color: gold; 
  margin-bottom: 20px;
}

.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.gallery-grid img {
    
  width: 220px;
  height: 160px;
  object-position: center;
  object-fit: cover;
  border: 3px solid #2a2f32;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  transition: transform 0.3s;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

/* --- Services Page Image Consistency --- */
.service-img {
  width: 100%;
  max-width: 400px;   /* was 400px */
  height: 250px;      /* was 250px */
  object-fit: cover;
   border: 3px solid #2a2f32;
  border-radius: 6px ;
  display: block;
  margin: 0 auto;
 
}
.service-img:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}
.service-detail {
  padding: 40px 20px;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.6;
}

.service-detail h1, 
.service-detail h2 {
  text-align: center;
  margin-bottom: 20px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.gallery-grid img {
  width: 100%;
  border-radius: 6px;
  border: 3px solid #2a2f32;
  object-fit: cover;
}

.cta-btn {
  display: inline-block;
  background: #1e1e1e;
  color: #fff;
  padding: 12px 24px;
  margin-top: 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
}
.cta-btn:hover {
  background: #a82020;
}
.inline-link {
  color: #1e1e1e;
  font-weight: 600;
  text-decoration: none;
}
.inline-link:hover {
  text-decoration: underline;
  color: #a82020;
}
.sub-service {
  background:#1e1e1e;
  padding:20px;
  margin:40px 0;
  border-radius:8px;
}
/* Make sure your nav bar aligns horizontally */


.navbar a:hover {
  background-color: #444;
}

/* Dropdown container */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown button (looks like other links) */
.dropbtn {
  color: gold;
  text-decoration: none;
  padding: 12px 16px;
  display: block;
}

/* Dropdown menu content */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #333;
  min-width: 220px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  border-radius: 6px;
  z-index: 10;
}

/* Links inside dropdown */
.dropdown-content a {
  color: white;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #444;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/* Optional arrow styling */
.dropbtn::after {
  content: " ▾";
}
.header{
    color: gold;
    text-align: center;
}