/* Reset & Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f4f4f4;
}
.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

/* Navigation */
header {
  background: #016b02;
  color: #fff;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  position: relative;
}
.logo img {
  width: 100%;
  height: 75px;
  object-fit: cover;
  border-radius: 5px;
  transition: transform 0.3s;
  filter: grayscale(20%);
}

/* Desktop Styles */
.nav-links {
  display: flex;
  list-style: none;
}
.nav-links li {
  margin-left: 20px;
}
.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}
.nav-links a:hover {
  color: #d4af37;
}

.hamburger {
  display: none; /* Keep hidden on desktop */
}

/* Mobile Styles (under 768px) */
@media screen and (max-width: 768px) {
  /* Show hamburger */
  .hamburger {
    display: block;
  } 
  .nav-links {
    display: none; /* Hide standard links initially */
    flex-direction: column;
    position: fixed;
    top: 0;
    height: 100vh;
    width: 50%;
    right: 0;
    background-color: #333;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }
  /* Class to show links when toggled */
  .nav-links.active {
    display: flex;
    transform: translateX(0%);
  } 
}

/* Hero Section */
#hero {
  background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)), url('https://unsplash.com');
  background-size: cover;
  background-position: center;
  height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
#hero h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 3.5rem;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.btn {
  background: #d4af37;
  color: #1a1a1a;
  padding: 12px 30px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  display: inline-block;
  margin-top: 20px;
}
.btn:hover {
  background: #f1c40f;
  transform: translateY(-2px);
  transition: all 0.3s;
}

/* Information Grid */
#info {
  padding: 60px 0;
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.card {
  background: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  text-align: center;
  border-bottom: 4px solid #d4af37;
}
.card h3 {
  color: #1a1a1a;
  margin-bottom: 15px;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
}

/* Footer */
footer {
  background: #016b02;
  color: #fff;
  text-align: center;
  padding: 30px 0;
  font-size: 0.9rem;
}

/* Mobile View Adjustments */
@media (max-width: 768px) {
  #hero h1 {
    font-size: 2.2rem;
  }
  .nav-links { /* On mobile, a hamburger menu would be added with JS */
    display: none;
  }
}

/* Gallery Styles */
.section-title { text-align: center; font-family: 'Oswald', sans-serif; margin-bottom: 40px; font-size: 2.5rem; text-transform: uppercase; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 15px; margin-bottom: 80px; }
.gallery-item img { width: 100%; height: 200px; object-fit: cover; border-radius: 5px; transition: transform 0.3s; filter: grayscale(20%); }
.gallery-item img:hover { transform: scale(1.03); filter: grayscale(0%); cursor: pointer; }

/* Contact Form Styles */
.contact-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; background: #fff; padding: 50px; border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); margin-bottom: 80px; }
.contact-info h2 { font-family: 'Oswald', sans-serif; font-size: 2rem; margin-bottom: 20px; color: #1a1a1a; }
.contact-list { list-style: none; margin-top: 20px; }
.contact-list li { margin-bottom: 10px; }

.contact-form { display: flex; flex-direction: column; gap: 15px; }
.contact-form input, .contact-form select, .contact-form textarea { padding: 12px; border: 1px solid #ddd; border-radius: 4px; font-family: inherit; }
.contact-form input:focus { outline: 2px solid #d4af37; }

/* Responsive Adjustments */
@media (max-width: 768px) {
    .contact-wrapper { grid-template-columns: 1fr; padding: 30px; }
}

/* Highlight the current page in the menu */
.nav-links a.active { color: #d4af37; border-bottom: 2px solid #d4af37; }

/* Sub-page Hero Section */
.page-header {
    background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75));
    color: #fff;
    padding: 60px 0;
    text-align: center;
    border-bottom: 1px solid #333;
}
.page-header h1 { font-family: 'Oswald', sans-serif; font-size: 3rem; text-transform: uppercase; color: #d4af37; }

/* Service-specific spacing */
.services-list { padding: 80px 0; }

.slider-container {
  position: relative;
  width: 600px;  /*Adjust to your image width*/
  margin: auto;
  overflow: hidden; /* Hides the images outside the frame */
  object-fit: contain;
}

.slider-wrapper {
  display: flex; /* Lines images up horizontally */
  transition: transform 0.7s ease-in-out; /* Creates the sliding effect */
}

.slider-wrapper img {
  width: 600px;
  flex-shrink: 0; /* Prevents images from squishing */
}

/* Navigation Buttons */
button_gal {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.next { right: 0; }
.prev { left: 0; }

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px 0;
  background-color: #fff;
}
