@import url('https://fonts.googleapis.com/css2?family=Dela+Gothic+One&family=Inter:wght@400;500;600&display=swap');

:root {
  --bg1: #151828;
  --bg2: #1b1f34;
  --body: #959dcc;
  --brand: #ffab76;
  --white: #fff;
}

body {
  font-family: 'Inter', 'Segoe UI', 'Segoe UI', Tahoma, Geneva, Verdana,
    sans-serif;
  color: var(--body);
  line-height: 1.8;
  background-color: var(--bg1);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Dela+Gothic+One', 'Segoe UI', 'Segoe UI', Tahoma, Geneva,
    Verdana, sans-serif;
  color: white;
}

a {
  color: var(--body);
  text-decoration: none;
  transition: all 0.4s ease;
}

a:hover {
  color: var(--brand);
}

.link-more {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  text-transform: uppercase;
  left: 1px;
}

.link-more:hover .icon {
  transform: translate(8px);
}

.link-more .icon {
  transition: all 0.4s ease;
}

img {
  width: 100%;
}

section {
  padding-top: 160px;
  padding-bottom: 160px;
  position: relative;
}

/* INTRO */
.intro {
  margin-bottom: 60px;
}

.intro h1 {
  margin-top: 16px;
  margin-bottom: 16px;
}

.intro h6 {
  color: var(--brand);
}

.intro p {
  max-width: 500px;
  margin: auto;
}

.cta-btns {
  margin-top: 60px;
}

/* NAVBAR */
.navbar {
  background: linear-gradient(to bottom, #181f34, rgba(27, 31, 52, 0.2));
}

.navbar .navbar-nav .nav-link.active {
  color: var(--brand);
}

.navbar-brand {
  font-family: 'Dela+Gothic+One', 'Segoe UI', 'Segoe UI', Tahoma, Geneva,
    Verdana, sans-serif;
  font-size: 32px;
}

.container.not-index {
  padding-top: 150px;
}
.container.not-index h2 {
  margin-top: 16px;
  margin-bottom: 16px;
  font-size: 28px;
  font-weight: bold;
}
.container.not-index p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 24px;
}
.container.not-index img {
  width: 100%;
  height: auto;
  display: block;
  margin: 2rem 0 4rem 0;
  padding: 0.5rem;
  border-top: 1px solid var(--brand);
  border-left: 1px solid var(--brand);
  border-radius: 25px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.container.not-index .service-list {
  list-style-type: disc;
  margin-left: 20px;
}
.container.not-index .service-list li {
  margin-bottom: 8px;
}

/* HERO */
#hero {
  background: linear-gradient(to right, #181f34, rgba(27, 31, 52, 0)),
    url(../img/cover_woman_1-mikhail-nilov.jpg);
  min-height: 100vh;
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
}

#hero p {
  margin-top: 24px;
  margin-bottom: 24px;
}

/* BTN */
.btn {
  padding: 16px 36px;
  font-family: 'Dela+Gothic+One', 'Segoe UI', 'Segoe UI', Tahoma, Geneva,
    Verdana, sans-serif;
  transition: all 0.4s ease;
  border-radius: 0;
}

.btn-brand {
  background-color: var(--brand);
}

.btn-brand:hover {
  background-color: transparent;
  color: var(--brand);
  border-color: var(--brand);
}

.btn-outline-brand {
  background-color: transparent;
  color: var(--brand);
  border-color: var(--brand);
}

.btn-outline-brand:hover {
  background-color: var(--brand);
}

/* About */
#about {
  position: relative;
}

#about::after {
  content: '';
  width: 25%;
  height: 100%;
  background-color: var(--brand);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

#about h6 {
  color: var(--brand);
}

#about h1 {
  margin-top: 16px;
  margin-bottom: 24px;
}

#about .signature {
  width: unset;
}

/* SERVICES */
#services {
  background: var(--bg2);
}

#services .service .content {
  padding: 32px;
}

#services .service p {
  margin-top: 18px;
  margin-bottom: 18px;
}

/* MILLSTONE */
#millstone {
  background: linear-gradient(
      to right,
      rgba(24, 31, 52, 0.8),
      rgba(24, 31, 52, 0.8)
    ),
    url(../img/cover_1-mikhail-nilov-7624815.jpg);
  background-size: cover;
  background-position: center;
}

#millstone h1 {
  color: var(--brand);
}

/* FEATURES */
#features {
  background-color: var(--bg1);
}

.feature {
  display: flex;
}

.feature .icon-feature {
  font-size: 36px;
  color: var(--brand);
  line-height: 1;
  margin-right: 16px;
}

.feature p {
  font-size: 14px;
  margin-top: 16px;
  margin-bottom: 16px;
}

/* SOCIAL ICONS */

.social-icons a {
  width: 48px;
  height: 48px;
  background-color: var(--bg1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icons a:hover {
  background-color: var(--brand);
  color: var(--bg1);
}

/* TEAM */
#team {
  background-color: var(--bg2);
}

.team-member {
  position: relative;
}

.team-member .social-icons {
  position: absolute;
  top: 0px;
  right: 30px;
  transition: all 0.4s ease;
  opacity: 0;
}

.team-member:hover .social-icons {
  opacity: 1;
  top: 30px;
}

/* REVIEWS */
.review {
  padding: 32px;
  height: 250px;
  background-color: var(--bg2);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-style: italic;
}
@media (max-width: 768px) {
  .review {
    height: 400px;
  }
}

.review h4 {
  font-size: medium;
  margin-bottom: 10px;
}

/* BOOKING */
#booking {
  background: linear-gradient(
      to right,
      rgba(24, 31, 52, 0.8),
      rgba(24, 31, 52, 0.8)
    ),
    url(../img/cover_1-mikhail-nilov-7624815.jpg);
  background-size: cover;
  background-position: center;
}

#booking form {
  background-color: var(--bg1);
  padding: 32px;
}

#booking form .form-control {
  background-color: var(--bg2);
  color: var(--body);
  border-radius: 0;
  margin-top: 16px;
  border-color: var(--bg2);
  border: 2px solid var(--bg2);
}

#booking form input {
  height: 58px;
}

#booking form .form-control:focus {
  box-shadow: none;
  border-left-color: var(--brand);
}

/* FOOTER */
footer {
  padding-top: 130px;
}

footer .social-icons {
  display: flex;
}

footer .social-icons a {
  margin-right: 5px;
}

.footer-top {
  padding-bottom: 30px;
}

.footer-bottom {
  padding-top: 30px;
  padding-bottom: 30px;
  border-top: 1px solid var(--bg2);
}
