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

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #fff;
  color: #000;
}

.center {
  max-width: 1200px; 
  margin: 0 auto;
  padding: 0 20px;
}

header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding-top: 32px;
}

header .center {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4); 
  padding-bottom: 16px;
}

.logo {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  line-height: 1; 
}

nav {
  display: flex;
  gap: 32px;
  padding-bottom: 8px; 
}

nav a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
}


.hero {
  position: relative;
  
  
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center center; 
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-start; 
  padding-top: 180px; 
  padding-bottom: 180px; 
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero h1 {
  font-size: 64px;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  max-width: 800px;
  margin-bottom: 12px;
  letter-spacing: -1px; 
}

.hero-subtitle {
  font-size: 20px; 
  color: #fff;
  margin-bottom: 12px;
  opacity: 0.9;
}

.hero-link {
  font-size: 14px;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
  opacity: 0.8;
}

.catalog {
  padding: 80px 0;
}

.catalog h2 {
  font-size: 40px;
  margin-bottom: 40px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 32px;
}


.product-card img {
  width: 100%;
  height: auto; 
  object-fit: cover;
  margin-bottom: 16px;
}


.product-card h3 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 8px;
}

.product-card p {
  font-size: 14px;
  color: #888; 
  line-height: 1.5;
  margin-bottom: 12px;
}


.product-card .price {
  font-size: 24px;
  font-weight: 500;
}

footer {
  background-color: #f8f8f8;
  padding: 60px 0;
  text-align: center;
}

footer p {
  font-weight: 700;
  font-size: 16px;
}
