/*
Theme Name: Moust Camara - Plain
Author: Moust Camara
Description: Interim one-page theme for moustcamara.com
Version: 0.1
*/

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

body {
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
  background: #ffffff;
  color: #1a1a1a;
  overflow-x: hidden;
}

.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
  position: relative;
}

.hero-section-inner {
  max-width: 1200px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
}

.hero-content {
  flex: 1;
  max-width: 550px;
  min-width: 0;
}

.hero-location {
  font-size: 14px;
  font-weight: 500;
  margin-top: 40px;
  margin-bottom: 24px;
  color: #666;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-location .hero-icon {
  width: 16px;
  height: 16px;
  stroke-width: 2;
}

.hero-name {
  font-size: clamp(56px, 8vw, 96px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 32px;
}

.hero-about {
  font-size: clamp(15px, 1.8vw, 17px);
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 500px;
}

.hero-founder {
  font-size: 14px;
  font-weight: 400;
  color: #666;
  margin-bottom: 16px;
}

.hero-founder a {
  color: #1a1a1a;
  text-decoration: underline;
  font-weight: 500;
  transition: opacity 0.2s;
}

.hero-founder a:hover {
  opacity: 0.6;
}

.hero-links {
  display: flex;
  gap: 20px;
}

.hero-link {
  font-size: 15px;
  font-weight: 500;
  color: #1a1a1a;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid #1a1a1a;
  padding-bottom: 3px;
  transition: all 0.2s;
}

.hero-link .hero-icon {
  width: 16px;
  height: 16px;
  stroke-width: 2;
}

.hero-link:hover {
  opacity: 0.6;
  transform: translateY(-1px);
}

.hero-image {
  flex: 1;
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
}

.hero-image-circle {
  width: clamp(400px, 45vw, 550px);
  height: clamp(400px, 45vw, 550px);
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.hero-image-circle::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, rgba(255, 200, 150, 0.4), rgba(200, 150, 255, 0.4));
  border-radius: 50%;
  filter: blur(60px);
  z-index: -1;
}

.hero-image-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Mobile adjustments */
@media (max-width: 968px) {
  .hero-section-inner {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }
  
  .hero-content {
    max-width: 100%;
  }
  
  .hero-location {
    justify-content: center;
  }
  
  .hero-about {
    max-width: 100%;
  }
  
  .hero-links {
    justify-content: center;
  }
  
  .hero-image {
    justify-content: center;
  }
  
  .hero-image-circle {
    width: clamp(280px, 70vw, 400px);
    height: clamp(280px, 70vw, 400px);
  }
}

@media (max-width: 640px) {
  .hero-section {
    padding: 40px 24px;
  }
  
  .hero-name {
    font-size: clamp(36px, 10vw, 48px);
  }
  
  .hero-image-circle {
    width: clamp(240px, 80vw, 320px);
    height: clamp(240px, 80vw, 320px);
  }
}
