@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-display: swap;
  font-weight: 300;
  src: url('/fonts/montserrat-all-300-normal.woff') format('woff');
}

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url('/fonts/montserrat-all-400-normal.woff') format('woff');
}

*,
p,
img {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  margin-bottom: 0;
}

a {
  text-decoration: none;
  color: #ff6853;
}

h1 {
  font-family: 'Noto Serif Display', serif;
}

p {
  margin-bottom: 20px;
  line-height: 1.618;
  font-weight: 300;
}

ol,
ul {
  margin-bottom: 16px;
  padding-left: 24px;
}

li {
  font-weight: 300;
  line-height: 1.618;
}

/* Home page specific styles */
.home-container {
  min-height: 100vh;
  display: flex;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.profile-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 2rem;
}

.profile-image {
  width: 300px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-name {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  font-family: 'Noto Serif Display', serif;
  font-weight: 700;
}

.profile-subheading {
  color: #666;
  margin-bottom: 1rem;
  text-align: center;
  max-width: 400px;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-icon {
  font-size: 1.5rem;
  color: #333;
  transition: color 0.3s ease;
}

.social-icon:hover {
  color: #007bff;
}

.content-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem 0;
}

.action-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.action-link {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.2s ease;
}

.action-link:hover {
  transform: translateY(-2px);
}

.action-link-content {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.thumbnail {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
}

.action-link-text {
  flex: 1;
}

.action-link-title {
  margin: 0 0 0.5rem 0;
  font-size: 1.5rem;
  color: #333;
}

.action-link-description {
  margin: 0 0 1rem 0;
  font-size: 0.95rem;
  color: #666;
  line-height: 1.4;
}

.action-link-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.action-link-cta:hover {
  background-color: #0056b3;
}

.action-link-cta i {
  font-size: 0.8rem;
}

.kit-signup {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
}

.kit-signup .form-container {
  margin: 0 !important;
}

.kit-signup form {
  display: flex;
  gap: 0.5rem;
  max-width: none !important;
}

.kit-signup form > div {
  padding-top: 0 !important;
}

.kit-signup input {
  flex: 1;
  padding: 0.5rem;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.kit-signup button {
  padding: 0.5rem 1rem;
  background: #007bff !important;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.kit-signup h2 {
  margin-bottom: 1rem;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.portfolio-item:hover img {
  transform: scale(1.05);
}

/* Mobile responsive styles */
@media (max-width: 960px) {
  .home-container {
    flex-direction: column;
    padding: 1rem;
  }

  .profile-section {
    position: relative;
    height: auto;
    padding: 2rem 1rem;
    min-height: auto;
  }

  .content-section {
    padding: 0;
  }

  .profile-image {
    margin: 0 auto 1.5rem;
  }

  .social-links {
    justify-content: center;
  }

  .kit-signup form {
    flex-direction: column;
  }

  .kit-signup {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .kit-signup h2 {
    margin-bottom: 0.5rem;
  }

  .kit-signup p {
    margin-bottom: 0;
  }
}
