/* GLOBAL */

body {
  margin: 0;
  font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  background: #ffffff;
  color: #333333;
  line-height: 1.7;
}

a {
  color: #2b50ff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* HEADER */

.site-header {
  background: linear-gradient(135deg, #DE3412 0%, #F05F42 100%);
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
}

.header-content {
  width: 100%;
  max-width: 1200px;
}

.header-logo {
  width: 700px;
  max-width: 95%;
  display: block;
  margin: 0 auto 70px auto;
}

.github-button {
  display: inline-block;
  border: 2px solid #ffffff;
  color: #ffffff;
  padding: 14px 34px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}

.github-button:hover {
  background: #ffffff;
  color: #DE3412;
  text-decoration: none;
}

/* MAIN */

.page-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 24px;
}

/* INTRO */

.intro-section {
  text-align: center;
  margin-bottom: 80px;
}

.intro-section h1 {
  font-size: 58px;
  font-weight: 300;
  color: #333333;
  margin-bottom: 30px;
}

.intro-section p {
  max-width: 1100px;
  margin: 0 auto;
  font-size: 18px;
  color: #666666;
}

/* SECTION */

.project-logo-section h2 {
  text-align: center;
  font-size: 42px;
  font-weight: 300;
  color: #444444;
  margin-bottom: 20px;
}

.project-logo-section p {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  font-size: 18px;
  color: #666666;
}

/* GRID */

.logo-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

/* CARDS */

.logo-card {
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  background: #ffffff;
  padding: 40px 24px;
  text-align: center;
  transition: all 0.2s ease;
}

.logo-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.logo-card img {
  max-width: 180px;
  max-height: 80px;
  width: auto;
  height: auto;
  margin-bottom: 24px;
}

.logo-card h3 {
  margin: 0 0 18px 0;
  font-size: 28px;
  font-weight: 400;
  color: #333333;
}

.logo-card a {
  display: inline-block;
  border: 1px solid #DE3412;
  color: #DE3412;
  padding: 12px 22px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}

.logo-card a:hover {
  background: #DE3412;
  color: #ffffff;
  text-decoration: none;
}

/* PLACEHOLDER */

.logo-placeholder {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 500;
  color: #444444;
  margin-bottom: 24px;
}

/* FOOTER */

.site-footer {
  margin-top: 90px;
  border-top: 1px solid #e6e6e6;
  padding: 40px 24px;
  text-align: center;
  color: #666666;
  font-size: 14px;
}

.site-footer p {
  margin: 0 0 10px 0;
}
