* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #a1aba0;
  color: #45586d;
}

/* NAV BAR */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  height: 60px;
  background: #45586d;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 30px;
  z-index: 1000;
}

/* LOGO AREA */
.logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-placeholder {
  width: 32px;
  height: 32px;
  border: 2px dashed white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: white;
  opacity: 0.85;
}

.site-title {
  color: white;
  font-weight: bold;
  font-size: 18px;
}

/* NAV LINKS */
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 14px;
}

.nav-links a:hover {
  text-decoration: underline;
}

/* SECTIONS */
.page {
  min-height: 100vh;
  padding: 100px 10%;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  background: #a1aba0;
}

/* HERO LEFT STACK */
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* IMAGE ABOVE TEXT */
.hero-top-image {
  width: 120px;          /* adjust size */
  margin-bottom: 20px;   /* space between image and text */
}

/* SUBTITLE SPACING */
.hero-subtitle {
  margin-top: 10px;
  line-height: 1.5;
}
/* SOCIAL LINKS */
.social-links a {
  color: white;
  text-decoration: underline;
}

.social-links a:hover {
  opacity: 0.8;
}


.hero h1 {
  font-size: 36px;
  margin-bottom: 15px;
}

h1 {
  margin-bottom: 20px;
}

h3 {
  font-weight: normal;
  line-height: 1.4;
}

p {
  line-height: 1.6;
  margin-bottom: 15px;
}

.quote {
  font-style: italic;
}

/* IMAGE PLACEHOLDERS */
.image-placeholder {
  width: 100%;
  height: 280px;
  border: 3px dashed #45586d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  opacity: 0.8;
}
/* CONTACT SPLIT LAYOUT */
.contact-split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}
.contact-image img {
  width: 100%;
  max-height: 350px;
  object-fit: contain;
}
/* LEFT COLUMN CENTERING */
.contact-left {
  display: flex;
  justify-content: center;   /* vertical centering */
  align-items: center;       /* horizontal centering */
}
.contact-content {
  max-width: 420px;
  text-align: left;
}


.contact-box {
  background: #45586d;
  color: white;
  padding: 20px;
  margin: 20px auto;
  max-width: 420px;
}

.cta {
  font-weight: bold;
  margin-top: 20px;
}

.logo-img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}