* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --color-tertiary: #087f8c;
    --color-blue-light: #1E8FD5;
    --color-blue: color-mix(in srgb, var(--color-blue-light) 80%, black);

    --color-blue-primary: color-mix(in srgb, var(--color-tertiary), white 70%);

    --h1-fluid: clamp(1.625rem, 1.2rem + 2.13vw, 2.5rem);
    --p-fluid: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
}

html {
  background-color: #000;
}

body {
  font-family: system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  color: #333;
  background-image: url('bg.png');
  background-size: 60% auto;
  /* The blend setup */
  background-color: rgba(0, 0, 0, 0.2);
  background-blend-mode: darken;
}

input,
button,
textarea,
select {
    font: inherit;
}

/* header {
  
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
}

#site-logo svg {
    width: 80px;
    height: auto;
    fill: none;
    stroke: #b71c1c;
    stroke-width: 1;
    stroke-linecap: round;
    stroke-linejoin: round;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.logo {
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: none;
}

.nav-links a {
  color: #ccc;
  text-decoration: none;
  margin-left: 1.5rem;
}

.nav-links a:hover {
  color: #fff;
} */



header, footer {
    padding: 20px;
    max-width: 940px;
    margin: 0 auto;
}



header nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#site-logo {
    display: flex;
    align-items: center;
    gap: 10px;

    color: #fff;
    text-decoration: none;
}

#site-logo svg {
    width: 60px;
    height: 60px;

    fill: none;
    stroke-width: 1;
    stroke-linecap: round;
    stroke-linejoin: round;
}

#site-logo span {
    font-size: 1.5rem;
    letter-spacing: 0.1em;
}

header nav ul {
    display: flex;
    gap: 20px;

    margin: 0;
    padding: 0;
    list-style: none;
}

header nav ul a {
    color: #fff;
    text-decoration: none;
}

header nav ul a:hover {
    color: var(--color-blue-primary);
    text-decoration: underline;
}

#site-logo svg {
    stroke: currentColor;
}

#site-logo:hover {
    color: var(--color-blue-primary);
    text-decoration: underline;
}

#about, #contact, #hero {
    padding: 0 20px;
}

main {
  max-width: 900px;
  margin: 0 auto;
  
  background-color: white;
  border-radius: 3px;
  overflow: hidden;


    border: 1px solid rgba(78, 129, 116, 0.9);
    
    /* box-shadow: 0 0 3px 3px rgba(0, 0, 0, 0.40); */
}

section {
  margin-bottom: 3rem;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

h2, h3 {
  color: var(--color-blue);
}



.form-group {
  margin-bottom: 1rem;
}

label {
  display: block;
  margin-bottom: 0.25rem;
  font-weight: 500;
}

input, textarea {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
  font-family: inherit;
}

input:focus, textarea:focus {
  outline: none;
  border-color: #1a1a2e;
}

button {
  background: var(--color-blue);
  color: #fff;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
}

button:hover {
  background: #2a2a4e;
}

button:disabled {
  opacity: 0.6;
}

#form-status {
  margin-top: 1rem;
  font-size: 0.95rem;
}

.success {
  color: #2a7a2a;
}

.error {
  color: #c33;
}

/* Hero rules */

#hero {
    color: var(--color-blue-primary);

    display: flex;
    align-items: center;
    gap: 20px;
    background-color: black;
}

#hero p {
  font-size: 1.2rem;
  font-style: italic;
  margin: 0;
}

/* Contact rules */

#contact {
    font-size: 1rem;
}

/* Footer rules */

footer {
    display: flex;
    align-items: center;
    justify-content: space-between;

    color: #fff;
    font-size: 0.9rem;
}

footer p {
    margin: 0;
}

footer ul {
    display: flex;
    gap: 20px;

    margin: 0;
    padding: 0;
    list-style: none;
}

footer a {
    color: inherit;
    text-decoration: none;
}

footer a:hover,
footer a:focus-visible {
    color: var(--color-blue-primary);
    text-decoration: underline;
}