@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@700&family=Roboto:wght@400;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #fff;
}

/* ── HEADER ── */
header {
  background: #000;
  width: 100%;
}

nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  justify-content: center;
}

nav a {
  font: bold 15px 'Roboto', Arial, sans-serif;
  text-transform: uppercase;
  text-decoration: none;
  color: #ff6f5a;
  letter-spacing: 0.5px;
}

/* ── TITLE BAR ── */
.title-bar {
  background: #000;
  padding: 20px 24px 24px;
  text-align: center;
}

.title-bar h1 {
  font: bold 80px 'Raleway', Arial, sans-serif;
  color: #fff;
  line-height: 1.1;
}

/* ── MAIN ── */
main {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  padding: 24px 0;
  gap: 0;
}

.col-image {
  width: 50%;
  display: block;
  object-fit: cover;
  flex-shrink: 0;
}

.col-content {
  width: 50%;
  padding: 24px 32px 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.col-content h2 {
  font: bold 28px 'Times New Roman', Times, serif;
  color: rgba(61, 61, 61, 1);
  text-align: center;
  line-height: 30px;
  margin-bottom: 16px;
}

.col-content p {
  font: normal 14px 'Roboto', Arial, sans-serif;
  color: #000;
  text-align: center;
  line-height: 20px;
  margin-bottom: 24px;
}

/* ── SOCIAL ICONS ── */
.social-icons {
  display: flex;
  gap: 10px;
  align-items: center;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  color: #000;
  text-decoration: none;
  font-size: 22px;
}

.social-icons a:hover { color: #444; }

/* ── FOOTER ── */
footer {
  background: #000;
  padding: 24px 24px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: auto;
}

.footer-cols {
  max-width: 1200px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin-bottom: 12px;
}

.footer-col {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 11px;
}

.footer-col svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-col p, .footer-col a {
  font: normal 12px 'Roboto', Arial, sans-serif;
  color: #fff;
  text-align: center;
  line-height: 20px;
  text-decoration: none;
}

.footer-col a:hover { color: #c9c5c9; }

.footer-copy {
  font: normal 12px 'Roboto', Arial, sans-serif;
  color: #fff;
  text-align: center;
  padding-bottom: 12px;
}

.footer-copy a { color: #c9c5c9; text-decoration: underline; }
.footer-copy a:hover { text-decoration: none; }

/* ── RESPONSIVE ── */
@media (max-width: 767px) {
  .title-bar h1 { font-size: 48px; }

  main {
    flex-direction: column;
    padding: 0;
  }

  .col-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
  }

  .col-content { width: 100%; }

  .footer-cols { flex-direction: column; align-items: center; }
}
