body {
  margin: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  background: linear-gradient(120deg, #f8fafc 0%, #e0e7ef 100%);
  color: #222;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 40px 12px 40px;
  border-bottom: 1px solid #e0e0e0;
  background: #fff;
  box-shadow: 0 2px 12px 0 rgba(0,0,0,0.04);
  position: sticky;
  top: 0;
  z-index: 10;
}

.site-title {
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #444;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-placeholder {
  font-size: 2rem;
  background: #e0e7ef;
  border-radius: 8px;
  padding: 2px 8px;
  margin-right: 4px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 32px;
  margin: 0;
  padding: 0;
}

nav a {
  text-decoration: none;
  color: #444;
  font-size: 1.05rem;
  font-weight: 600;
  position: relative;
  padding: 2px 0;
  transition: color 0.2s;
}

nav a::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: #0077ff;
  transition: width 0.2s;
  position: absolute;
  left: 0;
  bottom: -2px;
}

nav a:hover {
  color: #0077ff;
}

nav a:hover::after {
  width: 100%;
}

main {
  max-width: 1100px;
  margin: 48px auto 0 auto;
  padding: 0 24px 40px 24px;
}

h1 {
  font-size: 2.2rem;
  margin-bottom: 36px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #222;
}

.website-list {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.website-entry {
  display: flex;
  align-items: stretch;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 rgba(0,0,0,0.07);
  padding: 32px 32px 24px 32px;
  gap: 48px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.website-entry:hover {
  box-shadow: 0 8px 32px 0 rgba(0,119,255,0.10);
  transform: translateY(-2px) scale(1.01);
}

.website-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.website-info h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
  border-bottom: 2px solid #0077ff;
  display: inline-block;
  padding-bottom: 2px;
  color: #0077ff;
}

.description {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 18px;
  font-style: italic;
}

.view-project {
  display: inline-block;
  background: #0077ff;
  color: #fff;
  font-weight: 600;
  padding: 8px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 1rem;
  box-shadow: 0 2px 8px 0 rgba(0,119,255,0.08);
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}

.view-project:hover {
  background: #005fcc;
  box-shadow: 0 4px 16px 0 rgba(0,119,255,0.13);
  transform: translateY(-1px) scale(1.03);
}

.website-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-placeholder {
  width: 260px;
  height: 180px;
  background: #f3f6fa;
  border: 2px dashed #b0b0b0;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #888;
  font-size: 1.1rem;
  text-align: center;
  gap: 10px;
}

footer {
  background: #f3f6fa;
  padding: 24px 0;
  text-align: center;
  color: #888;
  font-size: 1rem;
  border-top: 1px solid #e0e0e0;
  margin-top: 40px;
}

@media (max-width: 800px) {
  .website-entry {
    flex-direction: column;
    align-items: stretch;
    padding: 24px 16px 16px 16px;
    gap: 24px;
  }
  .website-image, .website-info {
    flex: unset;
  }
  main {
    padding: 0 8px 32px 8px;
  }
}

@media (max-width: 500px) {
  header {
    flex-direction: column;
    gap: 12px;
    padding: 16px 8px 8px 8px;
  }
  .site-title {
    font-size: 1.2rem;
  }
  nav ul {
    gap: 16px;
  }
  .image-placeholder {
    width: 100%;
    min-width: 0;
    height: 120px;
    font-size: 0.95rem;
  }
  h1 {
    font-size: 1.3rem;
  }
} 