body {
  font-family: 'Source Sans Pro', Arial, sans-serif;
  margin: 0;
  background: #161616;
  color: #fff;
}
header {
  background: #fff;
  /* Remove box-shadow if you want it totally flat, or keep for subtle elevation */
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.nav a {
  color: #161616;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  background: none;
  border-radius: 5px;
  transition: background 0.15s, color 0.16s;
}
.nav a.active {
  background: #efefef;
  color: #0202ed;
}
.nav a.disabled {
  opacity: 0.4;
  pointer-events: none;
}
.nav a:not(.disabled):hover {
  background: #f0f0f8;
  color: #0202ed;
}.logo-bg {
  background: #fff;
  border-radius: 14px;
  padding: 7px 18px 7px 12px;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.09);
  margin-right: 24px;
}
.logo {
  height: px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.06));
}
.nav ul {
  list-style: none;
  display: flex;
  gap: 2.2rem;
  margin: 0;
  padding: 0;
}
.nav li {
  display: inline;
}
.nav a {
  color: #fff;
  text-decoration: none;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  padding: 0.5rem 0.6rem;
  border-radius: 5px;
  letter-spacing: 0.03em;
  font-size: 1.09rem;
  transition: background 0.17s, color 0.18s;
}
.nav a.active {
  background: #161616;
  color: #d7e1fd;
  pointer-events: none;
  cursor: default;
}
.nav a.disabled {
  opacity: 0.4;
  pointer-events: none;
}
.nav a:not(.disabled):hover {
  background: #1818ad;
  color: #fff;
}

.hero {
  min-height: 400px;
  background: url('images/hero.jpg') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-overlay {
  background: rgba(12, 19, 37, 0.63);
  padding: 3rem 2rem;
  border-radius: 18px;
  box-shadow: 0 8px 32px 0 rgba(0,0,0,0.15);
  text-align: center;
  max-width: 640px;
  width: 95%;
  margin: 3rem auto;
}
.hero h1 {
  font-family: 'Cinzel', serif;
  font-size: 2.8rem;
  margin: 0 0 1rem 0;
  letter-spacing: 0.06em;
}
.hero .tagline {
  font-size: 1.4rem;
  margin-bottom: 2rem;
  font-family: 'Source Sans Pro', Arial, sans-serif;
}
.cta {
  display: inline-block;
  padding: 0.95rem 2.2rem;
  background: #0202ed;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.15rem;
  font-weight: 700;
  transition: background 0.22s, color 0.18s;
  margin-top: 0.8rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.09);
  letter-spacing: 0.04em;
}
.cta:hover {
  background: #1616d6;
  color: #e2e2e2;
}
.intro {
  max-width: 720px;
  margin: 3rem auto 2rem auto;
  text-align: center;
}
.intro h2 {
  font-family: 'Cinzel', serif;
  font-size: 1.45rem;
  margin-bottom: 1.1rem;
}
footer {
  background: #232323;
  text-align: center;
  padding: 1.15rem 0 1.6rem 0;
  font-size: 1rem;
  color: #b7b7b7;
  margin-top: 2.5rem;
  border-top: 2px solid #222;
}
.footer-heart {
  color: #f65a8a;
  font-size: 1.22em;
  vertical-align: middle;
}
.socials a {
  margin: 0 0.33rem;
  font-size: 1.5em;
  vertical-align: middle;
  text-decoration: none;
  transition: opacity 0.18s;
}
.socials a:hover { opacity: 0.72; }

@media (max-width: 700px) {
  .hero h1 { font-size: 2rem; }
  .intro { font-size: 1rem; }
  .nav ul { gap: 0.9rem; }
  .logo-bg { padding: 5px 8px 5px 8px; }
  .logo { height: 28px; }
  .hero-overlay { padding: 1.5rem 0.5rem; }
}
/* Make hero smaller on subpages */
.small-hero {
  min-height: 200px;
  background-size: cover;
  background-position: center;
}

/* About page columns */
.about-cols {
  display: flex;
  gap: 2rem;
  margin: 2.5rem 0 1.5rem 0;
  flex-wrap: wrap;
  justify-content: center;
}
.about-cols > div {
  flex: 1 1 220px;
  background: #222;
  padding: 1.5rem 1.2rem;
  margin: 0.5rem;
  border-radius: 10px;
  min-width: 210px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

/* Service cards */
.services .service-cards {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  margin: 2.5rem 0;
}
.service-cards .card {
  background: #fff;
  color: #161616;
  padding: 2rem 1.2rem 1.5rem 1.2rem;
  border-radius: 11px;
  min-width: 210px;
  max-width: 270px;
  flex: 1 1 220px;
  box-shadow: 0 2px 12px rgba(2,2,237,0.09);
  text-align: center;
  margin: 0.5rem;
}
.service-cards .card h3 {
  font-family: 'Cinzel', serif;
  color: #0202ed;
  font-size: 1.17rem;
  margin-bottom: 0.6rem;
}

/* Contact form styling */
.contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin: 2.5rem 0 2rem 0;
}
.contact form {
  background: #fff;
  color: #161616;
  padding: 2rem 1.2rem;
  border-radius: 13px;
  min-width: 260px;
  max-width: 340px;
  box-shadow: 0 2px 18px rgba(2,2,237,0.09);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.contact form label {
  font-family: 'Cinzel', serif;
  font-size: 1.01rem;
}
.contact form input,
.contact form textarea {
  width: 100%;
  padding: 0.7rem;
  border-radius: 6px;
  border: 1px solid #bbb;
  font-size: 1rem;
  margin-top: 0.3rem;
  font-family: 'Source Sans Pro', Arial, sans-serif;
}
.contact form button {
  margin-top: 0.7rem;
  cursor: pointer;
}

.contact-info {
  max-width: 300px;
  color: #fff;
  font-size: 1.05rem;
  align-self: center;
  background: #232323;
  border-radius: 12px;
  padding: 1.2rem;
}
.contact-info a { color: #0202ed; text-decoration: underline; }

@media (max-width: 900px) {
  .about-cols,
  .services .service-cards,
  .contact { flex-direction: column; }
}
.nav {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.nav-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  height: 40px;
  width: auto;
}
.nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}
