/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", "Helvetica Neue", sans-serif;
  background: #f9f9f9;
  color: #111;
  line-height: 1.6;
  font-size: 16px;
  padding: 1rem;
}

.container {
  max-width: 800px;
  margin: auto;
}

.header {
  text-align: center;
  margin-bottom: 2rem;
}

.header h1 {
  font-size: 2.5rem;
  letter-spacing: 0.05em;
}

.fx {
  color: #00adcc;
}

.subline {
  color: #666;
  margin-top: 0.5rem;
  font-style: italic;
}

.intro {
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.actions {
  margin-bottom: 2rem;
  text-align: center;
}

.projects {
  margin: 3rem 0;
}

.projects h2,
.quote blockquote {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #0077cc;
}

.project-list {
  list-style: disc;
  margin-left: 1.5rem;
  color: #333;
}


a.gallery, a.gallery:visited {
	color: black;
	text-decoration: underline;
	text-decoration-color: #00adcc;
	text-decoration-thickness: 2px;
}


.quote {
  margin: 3rem 0;
  background: #eef6fb;
  padding: 1.5rem;
  border-left: 4px solid #0077cc;
  font-style: italic;
}

.quote span {
  display: block;
  margin-top: 1rem;
  text-align: right;
  font-weight: bold;
  font-style: normal;
}

.hero-image {
  text-align: center;
  margin: 2rem 0;
}

.hero-image img {
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn {
  background: #0077cc;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s ease;
}

.btn:hover {
  background: #005fa3;
}

.contact h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid #0077cc;
  display: inline-block;
}

.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.contact-list a {
  color: #0077cc;
  text-decoration: none;
  font-weight: 500;
}

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

.icon {
  width: 24px;
  height: 24px;
  fill: #0077cc;
  flex-shrink: 0;
}

.footer {
  text-align: center;
  margin-top: 3rem;
  font-size: 0.9rem;
  color: #999;
}
