@import url('https://fonts.googleapis.com/css2?family=Onest:wght@400;500;600;700&display=swap');
body {
    margin: 0;
    font-family: 'Onest', sans-serif;
    background-image: url('../pngs/background.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    color: #222;
    position: relative;
    font-weight: 300; /* Light */
    font-size: 0.95rem; /* Slightly smaller */
}

body::before {
    content: '';
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image: url('../pngs/noise.png');
    background-repeat: repeat;
    opacity: 0.05;
    z-index: -1;
}

.about-container {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.logo {
    width: 60px;
    height: auto;
}

.talk-btn {
    padding: 0.5rem 1.2rem;
    background-color: #E15959;
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 300;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 0.5fr;
    gap: 3rem;
    margin-top: 2rem;
}

.left-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.right-column img {
    width: 100%;
    border-radius: 20px;
}

h2 {
    margin: 0 0 0.5rem 0;
    font-size: 1.4rem;
    font-weight: 600; /* SemiBold for headings */
}

p {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 300; /* Light for body text */
}

.sub-head {
    margin-top: 1rem;
    display: block;
    font-weight: 500; /* Medium for subheadings under "What I do" */
}

@media (max-width: 768px) {
    .about-grid {
    grid-template-columns: 1fr;
    }

    .header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    }

    .talk-btn {
    align-self: flex-end;
    }
}




.image-link {
  position: relative;
  display: inline-block;
  text-decoration: none;
  border-radius: 20px;
  overflow: hidden;
}

.image-link img {
  width: 100%;
  display: block;
  transition: opacity 0.3s ease;
  border-radius: 20px;
}

.image-link:hover img {
  opacity: 0.7;
}

.image-text {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 6px 12px;
  font-size: 0.85rem;
  border-radius: 12px;
  font-weight: 400;
}


.footer {
  background-color: rgba(255, 92, 92);
  padding: 1.5rem 2rem;
  color: #f6f6f6;
  font-size: 0.9rem;
  font-weight: 300;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  text-align: center;
}

/* Footer logo */
.footer-logo {
  width: 40px;
  height: auto;
}

/* Footer social icons */
.footer-links {
  display: flex;
  gap: 1rem;
}

.footer-icon {
  width: 24px;
  height: 24px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-icon:hover {
  opacity: 1;
}

/* Responsive Layout: Horizontal for wider screens */
@media screen and (min-width: 768px) and (orientation: landscape) {
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .footer-text {
    margin: 0 1rem;
  }
}
