
body {
  font-family: Arial, sans-serif;
  background-color: #fffbea;
  color: #333;
  margin: 0;
  padding: 0;
}


.nav-bar {
  background-color: #f7b500; 
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  color: white;
}

.logo {
  font-weight: bold;
  font-size: 1.5rem;
}

.nav-links a {
  color: white;
  text-decoration: none;
  margin-left: 1.5rem;
  font-weight: 600;
}

.nav-links a.active,
.nav-links a:hover {
  text-decoration: underline;
}


.hero-section {
  display: flex;
  gap: 2rem;
  padding: 2rem;
  background: linear-gradient(135deg, #fffbea 50%, #f7b500 50%);
  flex-wrap: wrap;
}


.hero-text {
  flex: 1 1 400px;
  max-width: 480px;
  padding-right: 1rem;
}


.btn-primary {
  display: inline-block;
  background-color: #f7b500;
  color: #333;
  padding: 0.6rem 1.2rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 700;
  margin-top: 1rem;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #d99e00;
  color: #fff;
}


.hero-gallery {
  flex: 1 1 480px;
  max-width: 720px;
}

.gallery-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: #444;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill,minmax(120px,1fr));
  gap: 0.6rem;
}

.gallery-grid img {
  width: 100%;
  height: 90px;
  object-fit: cover;
  cursor: pointer;
  border-radius: 6px;
  box-shadow: 0 0 4px #ccc;
  transition: transform 0.2s ease;
}

.gallery-grid img:hover {
  transform: scale(1.07);
  box-shadow: 0 0 10px #f7b500;
}


.hero-text-lower {
  max-width: 1200px;
  margin: 1.5rem auto 3rem;
  padding: 0 1rem;
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  background: #fffbea;
  border-left: 6px solid #f7b500;
  border-radius: 4px;
}


.services-section {
  background-color: #f7b500;
  color: white;
  padding: 2rem 1rem 3rem;
  text-align: center;
}

.services-section h2 {
  margin-bottom: 1.5rem;
  font-size: 2rem;
  font-weight: 700;
}

.services-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.service-card {
  background: white;
  color: #333;
  padding: 1.2rem;
  border-radius: 10px;
  width: 260px;
  box-shadow: 0 2px 8px rgb(0 0 0 / 0.1);
  transition: box-shadow 0.3s ease;
}

.service-card:hover {
  box-shadow: 0 4px 15px rgb(0 0 0 / 0.15);
}

.service-card img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.service-card h3 {
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 0.95rem;
}


footer {
  background-color: #333;
  color: white;
  padding: 1rem;
  text-align: center;
  font-size: 0.9rem;
}


#lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.lightbox-visible {
  display: flex !important;
}

.lightbox-overlay {
  position: absolute;
  top: 0; 
  left: 0;
  width: 100%; 
  height: 100%;
  background: rgba(0,0,0,0.7);
  cursor: pointer;
}

.lightbox-content {
  position: relative;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 90%;
  max-height: 90%;
  padding: 1rem;
  box-sizing: border-box;
}

.lightbox-content img {
  max-width: 600px;
  max-height: 80vh;
  width: auto;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(255,255,255,0.7);
}

.lightbox-caption {
  margin-top: 0.4rem;
  color: #fffbea;
  text-align: center;
  font-size: 1rem;
}

#lightbox-close {
  position: absolute;
  top: -30px;
  right: 0;
  font-size: 3rem;
  color: #f7b500;
  cursor: pointer;
  user-select: none;
}

.hero-text h1 {
  font-size: 3rem;       /* Bigger and more impactful */
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #333;
}

.hero-text p {
  font-size: 1.25rem;    /* Larger for readability */
  line-height: 1.5;
  color: #444;
  max-width: 520px;      /* Keeps line length comfortable */
  margin-bottom: 1.5rem;
}
