body {
    font-family: 'Montserrat', 'Arial';
}

input, button, a {
    font-family: 'Montserrat', 'Arial';
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.hero-page {
    min-height: 100vh;
    background: url(images/Rectangle\ 15.png) center/cover no-repeat;
    color: white;
    font-family: 'Montserrat', 'Arial';
    position: relative;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 30px 50px;
    z-index: 1000;
}

.main-nav {
    display: flex;
    justify-content: flex-end;
    gap: 40px;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    letter-spacing: 1px;
    transition: opacity 0.3s;
}

.nav-link:hover {
    opacity: 0.8;
}

/* Центрированный контент */
.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 90%;
    max-width: 800px;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.hero-slogan {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 15px;
    opacity: 0.95;
}

.hero-description {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: transparent;
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    border: 2px solid white;
    border-radius: 30px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-button:hover {
    background-color: white;
    color: black;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.2);
}

.catalog {
    padding: 40px 0 60px;
}

.center {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.catalog__title {
    font-size: 2.2rem;
    text-align: left;
    margin-bottom: 40px;
    color: #191b1d;
}

.catalog__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.product-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.product-card__image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-bottom: 1px solid #eee;
}

.product-card__title {
    font-size: 1.3rem;
    /* margin: 15px 20px 5px; */
    color: #17181a;
}

.product-card__description {
    margin: 10px 0px 15px;
    color: #a8a5a5;
    font-size: 0.8rem;
    line-height: 1.4;
}

.product-card__price {
    margin: 0 0px 20px;
    font-weight: bold;
    font-size: 1.2rem;
    color: #333;
}






.footer {
    height: 200px;
    background-image: url(images/Rectangle\ 28.png);
    background-position: left;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 30px 0;
    margin-top: 50px;
}

.footer__text {
    margin: auto;
    font-size: 25px;
    font-weight: 450;
    color: black;
}

.footer__overlay {
    display: flex;
    height: 100%;
    /* background: linear-gradient(180deg, #0F0804 0%, rgba(0, 0, 0, 0.6) 100%); */
}