/* General Styles */
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background-color: #0A1525; /* deep navy */
  color: #C0C0C0; /* metallic silver */
  line-height: 1.6;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 100px 20px;
  background: linear-gradient(180deg, #0A1525, #0F1C33);
}

.logo {
  width: 40%;        /* scales with screen size */
  max-width: 500px;  /* caps it */
  margin-bottom: 20px;
}

.hero h1 {
  color: #C0C0C0;
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2rem;
  color: #D4AF37; /* gold accent */
}

.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  color: #0A1525;
  background: #D4AF37;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  transition: background 0.3s;
}

.btn:hover {
  background: #b9932f;
}

/* About & Services */
.about, .services, .contact {
  padding: 60px 20px;
  max-width: 1000px;
  margin: auto;
}

h2 {
  color: #D4AF37;
  text-align: center;
  margin-bottom: 20px;
}

.columns {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.columns div {
  flex: 1;
  margin: 10px;
  background: #111C2E;
  padding: 20px;
  border-radius: 8px;
}

h3 {
  color: #C0C0C0;
}

/* Contact Footer */
.contact {
  text-align: center;
  padding: 40px 20px;
  background: #0A1525;
  border-top: 1px solid #222;
}

.contact a {
  color: #D4AF37;
  text-decoration: none;
  font-weight: bold;
}

.contact a:hover {
  text-decoration: underline;
}
