/* General Reset */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f7f7f7;
  color: #333;
  line-height: 1.6;
}

/* Header */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background: white;
  color: #333;
  border-bottom: 1px solid #ddd;
}

.logo {
  height: 60px;
  width: auto;
}

.site-nav a {
  color: #fbb040; /* updated */
  text-decoration: none;
  margin-left: 20px;
  font-weight: bold;
}

.site-nav a:hover {
  color: #c8872d; /* darker shade for hover */
}

/* Hero Section */
.hero {
  position: relative;
  text-align: center;
  color: white;
}

.hero-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  filter: brightness(65%);
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-text h1 {
  margin: 0;
  font-size: 3rem;
  color: #fff;
}

.hero-text p {
  font-size: 1.2rem;
  color: #fff;
}

/* Sections */
.section {
  padding: 60px 30px;
  max-width: 1000px;
  margin: auto;
}

.section h2 {
  text-align: center;
  color: #fbb040; /* updated */
  margin-bottom: 40px;
}

/* About */
.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}

.about-img {
  flex: 1;
  max-width: 400px;
  border-radius: 10px;
}

.about-text {
  flex: 2;
}

/* Contact */
.contact-intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 20px;
}

.contact-details {
  text-align: center;
  font-size: 1.1rem;
  color: #fbb040; /* updated */
}

/* Footer */
.site-footer {
  text-align: center;
  padding: 20px;
  background: #fbb040; /* updated */
  color: white;
  margin-top: 40px;
}

/* Responsive Tweaks */
@media (max-width: 700px) {
  .hero-text h1 {
    font-size: 2.2rem;
  }
  .about-content {
    flex-direction: column;
  }
  .logo {
    height: 45px;
  }
}





/* Main Title (site-hero or first section) */
.hero-text h1 {
  margin: 0 0 10px;          /* space below */
  font-size: 3.6rem;         /* slightly larger */
  line-height: 1.1;
  color: #fbb040;            /* use highlight color for main heading */
  text-transform: uppercase; /* gives a bold stance */
  letter-spacing: 1px;
}

/* Subheading / subtitle under the main title */
.hero-text p {
  font-size: 1.4rem;
  color: white;
  margin: 0;
  max-width: 700px;
}

/* Section titles (About Us, Contact) */
.section h2 {
  font-size: 2.4rem;
  margin-bottom: 20px;
  color: #28527a;            /* keep the darker accent for contrast */
  position: relative;
  padding-bottom: 10px;
}

/* Decorative underline for section titles */
.section h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: #fbb040;
  margin: 8px auto 0;
  border-radius: 2px;
}

/* Responsive tweaks for headers */
@media (max-width: 700px) {
  .hero-text h1 {
    font-size: 2.6rem;
  }
  .section h2 {
    font-size: 2rem;
  }
}