/* Font Faces */
@font-face {
  font-family: 'Yu Gothic';
  src: url('./fonts/YuGothL.woff2') format('woff2'),
       url('./fonts/YuGothL.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Yu Gothic';
  src: url('./fonts/YuGothR.woff2') format('woff2'),
       url('./fonts/YuGothR.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ... (other font-face declarations) ... */

/* Root Variables */
:root {
  --font-primary: 'Yu Gothic', system-ui, -apple-system, sans-serif;
}

/* Reset and Base Styles */
body {
  margin: 0;
  padding: 0;
  font-family: var(--font-primary);
  font-weight: 400;
  background-color: #3B1E1E;
  color: #FFEBEB;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Layout */
.container {
  min-height: 100vh;
  max-width: 39rem;
  margin: 0 auto;
  padding: 1.5rem;
}

@media (min-width: 768px) {
  .container {
    padding: 5rem;
  }
}

main {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  margin: 0;
}

h2 {
  opacity: 0.5;
}

p {
  margin: 0;
  font-size: 1.5rem;
  line-height: normal;
}

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

a {
  color: #FFEBEB;
  text-decoration: underline;
}

a:hover {
  text-decoration: none;
}

/* Logo */
.logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  margin-bottom: 1rem;
  margin-top: 2rem;
  padding: 2rem;
  border-radius: 0rem;
  transition: background-color 0.1s ease;
  cursor: pointer;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.logo-container:hover {
  background-color: rgba(255, 235, 235, 0.1);
}

.logo-icon {
  height: 100px;
  width: auto;
}

.logo-logotype {
  height: 40px;
  width: auto;
}

/* Products Grid */
.products-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.product-item {
  position: relative;
}

.product-name {
  position: absolute;
  right: 100%;
  top: 0;
  margin-right: 2rem;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: right;
  white-space: nowrap;
}

.product-name a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.5rem;
}

.product-name a:hover {
  opacity: 0.8;
}

.product-description {
  font-size: 1.5rem;
  line-height: 1.5;
}

/* Mobile adjustment */
@media (max-width: 768px) {
  .product-item {
    position: static;
    margin-left: 0;
  }

  .product-name {
    position: static;
    margin-right: 0;
    margin-bottom: 0.5rem;
    text-align: left;
  }
}

.founders-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  margin-top: 1rem;
  border-radius: 4px;
}

/* Footer */
footer {
  margin-top: 5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 235, 235, 0.2);
  text-align: left;
  opacity: 0.25;
}

footer p {
  font-size: 1rem;
}