/* Общие стили */
body {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat Alternates', sans-serif;
  background-color: #fff;
  color: #262626;
}

/* Шапка сайта */
.header {
  width: 100%;
  height: 121px;
  background-color: #fff;
  box-shadow: 0px 4px 37px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 150px;
  position: fixed;
  top: 0;
  z-index: 100;
}

.logo {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-weight: 600;
  font-size: 15px;
  color: #000;
}

.logo-subtitle {
  font-size: 10px;
  color: #000;
}

.nav {
  display: flex;
  gap: 40px;
}

.nav a {
  text-decoration: none;
  color: #BD7048;
  font-weight: 600;
  font-size: 15px;
}

.contacts {
  display: flex;
  align-items: center;
  gap: 10px;
}

.phone-icon {
  font-size: 20px;
}

.phone-info {
  display: flex;
  flex-direction: column;
}

.phone-number {
  font-weight: 600;
  font-size: 15px;
  color: #3B3B3B;
}

.phone-time {
  font-size: 12px;
  color: rgba(59, 59, 59, 0.5);
}

/* Баннер */
.banner {
  position: relative;
  width: 100%;
  height: 600px;
  margin-top: 121px;
  overflow: hidden;
}

.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.banner h1,
.banner button {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.banner h1 {
  color: #fff;
  font-size: 40px;
  font-weight: 600;
  text-align: center;
  max-width: 850px;
  top: 40%;
}

.banner button {
  background-color: #BD7048;
  color: #fff;
  border: none;
  padding: 25px 80px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  top: 60%;
}

.banner h1 {
  color: #fff;
  font-size: 40px;
  font-weight: 600;
  text-align: center;
  max-width: 850px;
  margin-bottom: 50px;
}

.banner button {
  background-color: #BD7048;
  color: #fff;
  border: none;
  padding: 25px 80px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

/* Как это работает */
.how-it-works {
  display: flex;
  padding: 80px 150px;
  gap: 100px;
}

.how-it-works-left {
  width: 50%;
}

.how-it-works-left h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 80px;
}

.step {
  display: flex;
  gap: 50px;
  margin-bottom: 80px;
}

.step-number {
  font-size: 70px;
  font-weight: 700;
  color: rgba(189, 112, 72, 0.2);
}

.step-text h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 15px;
}

.step-text p {
  font-size: 16px;
  color: #262626;
}

.how-it-works-right {
  width: 50%;
}

.how-it-works-right img {
  width: 100%;
  height: 414px;
  object-fit: cover;
  border-radius: 20px;
}

/* Описание */
.description {
  text-align: center;
  font-size: 18px;
  color: rgba(38, 38, 38, 0.7);
  max-width: 1000px;
  margin: 0 auto 60px;
  padding: 0 20px;
}

/* Заголовок секции */
.section-title {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 60px;
}

/* Заголовок комнаты */
.room-title {
  font-size: 30px;
  font-weight: 500;
  padding: 0 150px;
  margin-bottom: 20px;
}

/* Разделитель */
.room-divider {
  width: calc(100% - 300px);
  height: 1px;
  background-color: #CBCBCB;
  margin: 0 150px 40px;
}

/* Сетка комнат */
.room-grid {
  display: flex;
  gap: 30px;
  padding: 0 150px;
  margin-bottom: 80px;
}

.room-item {
  width: 33%;
}

.room-item img {
  width: 100%;
  height: 266px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 20px;
}

.room-item-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.room-item-info span {
  font-size: 18px;
  font-weight: 600;
  color: #353535;
}

.room-item-info button {
  background-color: #FAFAFA;
  border: none;
  padding: 18px 60px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 500;
  color: #BD7048;
  cursor: pointer;
}

/* Кнопка каталога */
.catalog-btn-container {
  text-align: center;
  margin: 60px 0 80px;
}

.catalog-btn {
  background-color: #BD7048;
  color: #fff;
  border: none;
  padding: 25px 90px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

/* Футер */
.footer {
  width: 100%;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 50px 150px;
  background-color: #fff;
  box-shadow: 0px 4px 37px rgba(0, 0, 0, 0.05);
}

.footer-logo {
  display: flex;
  flex-direction: column;
}

.footer-logo-name {
  font-weight: 600;
  font-size: 15px;
  color: #000;
}

.footer-logo-subtitle {
  font-size: 10px;
  color: #000;
}

.footer-nav {
  display: flex;
  gap: 40px;
}

.footer-nav a {
  text-decoration: none;
  color: rgba(59, 59, 59, 0.5);
  font-size: 15px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-links a {
  text-decoration: none;
  color: rgba(33, 33, 33, 0.5);
  font-size: 15px;
}

.footer-contacts {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-bottom {
  background-color: #262626;
  text-align: center;
  padding: 35px 0;
}

.footer-bottom span {
  color: #fff;
  font-size: 15px;
}