/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

/* ═══════════════════════════════════════════════
   Style Sandbox Export
   Generated for: My Portfolio
   ═══════════════════════════════════════════════ */

/* Base Styles */
body {
  font-family: 'Noto Sans', sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: #222222;
  background-color: #a4d3e4;
  margin: 0;
  padding: 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Noto Sans', sans-serif;
  color: #111111;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  line-height: 1.2;
}

h1 { font-size: 2.5em; }
h2 { font-size: 2em; }
h3 { font-size: 1.5em; }

/* Links */
a {
  color: #9573d3;
  text-decoration: none;
  transition: all 0.2s ease;
}
a:hover {
  text-decoration: underline;
}

/* Layout Container */
.container, main {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2.5em;
}

/* Cards / Boxes */
.card, .box, section {
  background: #a4d3e4;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  padding: 1.5em;
  margin-bottom: 1.5em;
}

/* Buttons */
.button, button, .btn {
  display: inline-block;
  background: #9573d3;
  color: #ffffff;
  padding: 0.7em 1.5em;
  border: none;
  border-radius: 50px;
  font-family: 'Noto Sans', sans-serif;
  font-size: 1em;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
}
.button:hover, button:hover, .btn:hover {
  background: #7fc3b2;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Images */
img {
  max-width: 100%;
  height: auto;
  border-radius: 50px;
}

/* Header */
header {
  background: #111111;
  color: #a4d3e4;
  padding: 2em;
  text-align: center;
}
header h1 {
  color: #a4d3e4;
  margin: 0;
}
header p {
  color: #a4d3e4cc;
  margin: 0.5em 0 0 0;
}

/* Navigation */
nav a {
  color: #9573d3;
  margin: 0 1em;
  text-decoration: none;
}
nav a:hover {
  color: #7fc3b2;
}

/* Footer */
footer {
  text-align: center;
  padding: 2em;
  color: #22222299;
  font-size: 0.9em;
}