/* GENERAL */
.lato-thin {
  font-family: "Lato", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.lato-light {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.lato-regular {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.lato-bold {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.lato-black {
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.lato-thin-italic {
  font-family: "Lato", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.lato-light-italic {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.lato-regular-italic {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.lato-bold-italic {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.lato-black-italic {
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-style: italic;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #111827;
    background: #f9fafb;
}
h1, h2, h3 { color: #f6f6f7; }

/* HERO */
.hero {
    background: linear-gradient(to right, #0f172a, #1e293b);
    color: white;
    padding: 6rem 2rem;
    text-align: center;
}
.hero h1 { font-size: 2.5rem; margin-bottom: 1rem; }
.hero p { margin-bottom: 2rem; }

/* BUTTONS */
.btn {
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    margin-right: 1rem;
    transition: 0.3s ease;
}
.btn-primary { background: #38bdf8; color: white; }
.btn-primary:hover { background: #0284c7; }
.btn-secondary { background: #e5e7eb; color: #111827; }
.btn-secondary:hover { background: #d1d5db; }

/* ABOUT */
.about {
    padding: 4rem 2rem;
    background: #fff;
}
.about-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    align-items: center;
}
.about-image img {
    max-width: 280px;
    border-radius: 50%;
    border: 4px solid #38bdf8;
    display: block;
    margin: auto;
}
@media (max-width: 768px) {
    .about-container { grid-template-columns: 1fr; text-align: center; }
}

/* PORTFOLIO */
.portfolio {
    padding: 4rem 2rem;
    text-align: center;
}
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.portfolio-item {
    background: #fff;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.portfolio-item img {
    max-width: 100%;
    border-radius: 8px;
}

/* CONTACT */
.contact {
    padding: 4rem 2rem;
    background: #f3f4f6;
    text-align: center;
}
.contact ul { list-style: none; padding: 0; }
.contact li { margin-bottom: 0.5rem; }

/* FOOTER */
.footer {
    padding: 1rem;
    background: #1e293b;
    color: white;
    text-align: center;
}
