:root {
  --primary: #16253b;
  --bg: #ffffff;
  --text: #16253b;
  --accent: #e8871e;
  --graybg: #f3f3f3;
  --hover: #274168;
}

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

html {
  font-size: clamp(14px, 2vw, 18px);
}

body {
  font-family: Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: clamp(1rem, 2.2vw, 1.125rem);

  /* Center all content */
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
  text-align: center;
}

h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
}

p.intro {
  max-width: 800px;
  margin-bottom: 2rem;
}

section {
  width: 100%;
  display: flex;
  justify-content: center;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  justify-items: center;
  align-items: center;
  width: 100%;
  max-width: 1200px;
}

.portfolio-grid img {
  max-width: 225px;
  max-height: 300px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.disclaimer {
  max-width: 800px;
  margin: 1rem auto 2rem auto;
  font-size: 0.95rem;
  color: #7a3e00;
  font-weight: 500;
  background: #fff6e6;
  border: 1px solid #f0cda5;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  text-align: center;
  line-height: 1.4;
}

/* Contact buttons */
.email-button {
  display: inline-block;
  margin-top: 2rem;
  padding: 12px 20px;
  background-color: var(--accent);
  color: var(--text);
  font-weight: bold;
  font-size: 16px;
  text-decoration: none;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.email-button:hover {
  background-color: var(--primary);
  color: var(--accent);
  transform: scale(1.05);
}

/* Footer */
footer {
  text-align: center;
  padding: 1rem;
  background: var(--primary);
  margin-top: 4rem;
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  border-radius: 10px;
  color: var(--accent);
  width: 100%;
  max-width: 1200px;
}

.footerLinksContainer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.footerLinks {
  color: var(--bg);
  text-decoration: none;
  font-weight: bold;
}

.footerLinks:hover {
  text-decoration: underline;
}

.footerP {
  font-size: clamp(0.8rem, 2vw, 1rem);
  color: var(--accent);
}
