/* Font import */
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Kurale&display=swap");

/* Variables */
:root {
  --max-radius: 9999px;
  --primary: #181e1c;
  --secondary: #faf7f2;
  --titles: #1a201e;
  --sub-title: #737672;
  --hover: #faf7f2;
  --active: #e9e2d8;
  --transition: all 0.16s ease-in;
}

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

body {
  font-family: Inter, "Sans Serif";
}

.no-scroll {
  overflow: hidden;
}

h1,
h2 {
  font-family: Kurale, serif;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

.title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 48px;
}

.title .title-icon {
  margin-bottom: 16px;
}

.title h2 {
  margin-bottom: 16px;
  line-height: 130%;
  font-size: 40px;
  font-weight: 400;
  color: var(--titles);
}

.title p {
  font-size: 18px;
  line-height: 180%;
  color: var(--sub-title);
}

@media screen and (min-width: 601px) and (max-width: 1279px) {
  .title {
    text-align: center;
  }

  .title h2 {
    font-size: 32px;
  }

  .title p {
    font-size: 18px;
  }
}

@media screen and (max-width: 600px) {
  .title {
    text-align: center;
  }

  .title h2 {
    font-size: 24px;
  }

  .title p {
    font-size: 16px;
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo div {
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
}

.logo div span {
  font-size: 24px;
  font-weight: 500;
  color: #ffffff;
}

@media screen and (max-width: 600px) {
  .logo img {
    width: 32px;
  }

  .logo div span {
    font-size: 16px;
  }
}

.container {
  padding: 80px 160px;
}

@media screen and (min-width: 601px) and (max-width: 1279px) {
  .container {
    padding: 80px;
  }
}

@media screen and (max-width: 600px) {
  .container {
    padding: 80px 24px;
  }
}

/* Navbar */
nav {
  position: absolute;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  top: 32px;
  left: 160px;
  width: calc(100% - 320px);
  color: white;
}

nav .links {
  display: flex;
  align-items: center;
  gap: 40px;
}

nav .links a {
  font-size: 18px;
  color: white;
}

nav .links li:not(:last-child) a:hover {
  text-decoration: underline;
}

nav .links li:last-child a {
  display: flex;
  gap: 16px;
  padding: 16px 24px;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  color: var(--primary);
  background-color: white;
  border-radius: var(--max-radius);
  -webkit-border-radius: var(--max-radius);
  -moz-border-radius: var(--max-radius);
  -ms-border-radius: var(--max-radius);
  -o-border-radius: var(--max-radius);
  transition: var(--transition);
  -webkit-transition: var(--transition);
  -moz-transition: var(--transition);
  -ms-transition: var(--transition);
  -o-transition: var(--transition);
}

nav .links li:last-child a:hover {
  background-color: var(--hover);
}

nav .links li:last-child a:active {
  background-color: var(--active);
}

nav .burger {
  display: none;
  z-index: 5;
}

nav .burger :last-child {
  display: none;
}

nav .burger.toggled :last-child {
  display: block;
}

nav .burger.toggled :first-child {
  display: none;
}

nav .mobile-links {
  position: fixed;
  right: 0px;
  top: 0px;
  display: none;
  height: 100vh;
  width: calc(100%);
  padding: calc(32px + 40px + 80px) 24px 24px;
  background-image: url("../assets/images/finishpattern.svg");
  background-size: 112px 56px;
  background-color: var(--primary);
}

nav .mobile-links li {
  display: flex;
}

nav .mobile-links li a {
  width: 100%;
  padding: 16px 32px;
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
  border: 2px solid #ffffff;
  border-radius: var(--max-radius);
  -webkit-border-radius: var(--max-radius);
  -moz-border-radius: var(--max-radius);
  -ms-border-radius: var(--max-radius);
  -o-border-radius: var(--max-radius);
}

nav .mobile-links li:last-child {
  margin-top: auto;
}

nav .mobile-links li:last-child a {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  background-color: white;
  font-weight: 700;
  color: var(--primary);
}

@media screen and (min-width: 601px) and (max-width: 1279px) {
  nav {
    left: 80px;
    right: 80px;
    width: auto;
  }

  nav.sticky {
    padding: 24px 80px;
  }

  nav .mobile-links {
    padding: calc(32px + 40px + 80px) 80px 32px;
  }
}

@media screen and (max-width: 1279px) {
  nav .logo {
    z-index: 2;
  }

  nav .links {
    display: none;
  }

  nav .burger {
    display: block;
    background-color: transparent;
    border: none;
    cursor: pointer;
  }

  nav.sticky {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    background-color: rgba(24, 30, 28, 0.7);
  }

  nav.sticky span {
    display: none;
  }

  nav.sticky .logo img {
    width: 32px;
  }

  nav.sticky .mobile-links {
    right: -0px;
    top: -0px;
    width: 100%;
  }

  nav .mobile-links.visible {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
}

@media screen and (max-width: 600px) {
  nav {
    left: 24px;
    right: 24px;
    width: auto;
  }

  nav.sticky {
    padding: 24px 24px;
  }
}

/* Hero */
.hero {
  display: flex;
  height: 100vh;
  padding: 250px 160px 80px;
  background-image: url("../assets/images/finishpattern.svg");
  background-size: 112px 56px;
  background-color: var(--primary);
  color: white;
}

.hero .content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-right: 32px;
}

.hero .content span {
  display: flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 40px;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid white;
  border-radius: var(--max-radius);
  -webkit-border-radius: var(--max-radius);
  -moz-border-radius: var(--max-radius);
  -ms-border-radius: var(--max-radius);
  -o-border-radius: var(--max-radius);
}

.hero .content span img {
  margin-right: 10px;
}

.hero .content h1 {
  max-width: 395px;
  margin-bottom: 24px;
  font-size: 48px;
  font-weight: 400;
}

.hero .content p {
  margin-bottom: 40px;
  max-width: 85%;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  font-weight: 400;
  line-height: 180%;
}

.hero .content .action-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.hero .content .action-links a:first-child {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 18px;
  font-weight: 600;
  border: 2px solid white;
  border-radius: var(--max-radius);
  -webkit-border-radius: var(--max-radius);
  -moz-border-radius: var(--max-radius);
  -ms-border-radius: var(--max-radius);
  -o-border-radius: var(--max-radius);
  color: white;
  transition: var(--transition);
  -webkit-transition: var(--transition);
  -moz-transition: var(--transition);
  -ms-transition: var(--transition);
  -o-transition: var(--transition);
}

.hero .content .action-links a:first-child:hover {
  background-color: var(--hover);
  border-color: var(--hover);
  color: var(--primary);
}

.hero .content .action-links a:first-child:active {
  background-color: var(--active);
  border-color: var(--active);
  color: var(--primary);
}

.hero .content .action-links a:first-child svg path {
  transition: var(--transition);
  -webkit-transition: var(--transition);
  -moz-transition: var(--transition);
  -ms-transition: var(--transition);
  -o-transition: var(--transition);
}

.hero .content .action-links a:first-child:hover svg path {
  fill: var(--primary);
}

.hero .content .action-links a:last-child {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 600;
  color: white;
  text-decoration: underline;
}

@media screen and (min-width: 601px) and (max-width: 1279px) {
  .hero {
    padding: calc(32px + 58px + 80px) 80px 0;
  }

  .hero .content h1 {
    max-width: 270px;
    font-size: 32px;
  }
}

@media screen and (max-width: 600px) {
  .hero {
    padding: calc(32px + 58px + 80px) 24px 0;
    height: 120vh;
    flex-direction: column;
  }

  .hero .content span {
    font-size: 12px;
    margin-bottom: 24px;
  }

  .hero .content span img {
    height: 18px;
    width: 18px;
    margin-right: 8px;
  }

  .hero .content {
    flex-grow: 0;
    align-items: center;
    justify-content: start;
    height: 100%;
    margin: 0 0 32px 0;
    text-align: center;
  }

  .hero .content h1 {
    max-width: 270px;
    font-size: 32px;
  }

  .hero .content p {
    max-width: 100%;
    font-size: 14px;
  }

  .hero .content .action-links {
    flex-direction: column;
    align-items: center;
  }
}

.hero .hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
}

/* Blurred circle */
.hero .hero-image::before {
  content: "";
  position: absolute;
  bottom: -50%;
  height: 100%;
  width: 100%;
  background-color: rgba(241, 236, 217, 0.2);
  filter: blur(200px);
  border-radius: var(--max-radius);
  -webkit-border-radius: var(--max-radius);
  -moz-border-radius: var(--max-radius);
  -ms-border-radius: var(--max-radius);
  -o-border-radius: var(--max-radius);
}

/* Border */
.hero .hero-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: calc(100% + 80px);
  width: calc(100% - 8px);
  border: 4px solid rgba(255, 255, 255, 0.25);
  border-bottom: 0px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--max-radius) var(--max-radius) 0 0;
  -webkit-border-radius: var(--max-radius) var(--max-radius) 0 0;
  -moz-border-radius: var(--max-radius) var(--max-radius) 0 0;
  -ms-border-radius: var(--max-radius) var(--max-radius) 0 0;
  -o-border-radius: var(--max-radius) var(--max-radius) 0 0;
}

.hero .hero-image .image {
  position: absolute;
  top: 12%;
  height: calc(100% + 80px);
  width: 80%;
  background-image: url("../assets/images/hero.png");
  background-size: cover;
  background-position: center center;
  border-radius: var(--max-radius) var(--max-radius) 0 0;
  -webkit-border-radius: var(--max-radius) var(--max-radius) 0 0;
  -moz-border-radius: var(--max-radius) var(--max-radius) 0 0;
  -ms-border-radius: var(--max-radius) var(--max-radius) 0 0;
  -o-border-radius: var(--max-radius) var(--max-radius) 0 0;
}

@media screen and (min-width: 601px) and (max-width: 1279px) {
  .hero .hero-image .image {
    top: 7%;
    height: calc(100%);
  }

  .hero .hero-image::after {
    height: calc(100% - 4px);
  }
}

@media screen and (max-width: 600px) {
  .hero .hero-image .image {
    top: 28px;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
  }

  .hero .hero-image::after {
    left: -24px;
    right: -24px;
    height: calc(100% - 4px);
    width: auto;
  }
}

/* Destinations */
.destinations {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100vh; /* To be discussed */
  justify-content: center; /* To be discussed */
  background-color: var(--secondary);
}

.destinations .cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 24px;
  row-gap: 48px;
}

.destinations .cards .card {
  display: flex;
  gap: 32px;
  padding: 32px;
  background-color: #ffffff;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.04),
    0px 4px 8px 0px rgba(0, 0, 0, 0.06);
}

.destinations .cards .card .image {
  flex-grow: 0;
  padding: 16px;
  height: fit-content;
  width: fit-content;
}

.destinations .cards .card .image img {
  width: 64px;
}

.destinations .cards .card .text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.destinations .cards .card .text h3 {
  margin-bottom: 16px;
  font-weight: 600;
  font-size: 24px;
}

.destinations .cards .card .text p {
  color: rgba(0, 0, 0, 0.7);
  font-weight: 500;
  font-size: 16px;
}

@media screen and (min-width: 601px) and (max-width: 1279px) {
  .destinations .cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 1279px) {
  .destinations {
    padding: 112px 80px 80px;
    height: fit-content;
  }

  .destinations .cards {
    row-gap: 24px;
  }

  .destinations .cards .card {
    flex-direction: column;
    gap: 8px;
    padding: 24px;
  }

  .destinations .cards .card .text h3 {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .destinations .cards .card .text p {
    font-size: 14px;
  }

  .destinations .cards .card .image {
    padding: 16px;
  }

  .destinations .cards .card .image img {
    width: 48px;
  }
}

@media screen and (max-width: 600px) {
  .destinations {
    padding: 112px 24px 80px;
    height: fit-content;
  }

  .destinations .cards {
    grid-template-columns: 1fr;
  }
}

/* Rooms */
.rooms {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background-image: url("../assets/images/background.png");
  background-color: var(--secondary);
}

.rooms > * {
  z-index: 2;
}

.rooms::before {
  z-index: 1;
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background: linear-gradient(
    180deg,
    rgba(250, 247, 242, 1) 0%,
    rgba(250, 247, 242, 0) 100%
  );
}

.rooms-container {
  width: 100%;
}

.rooms .slider-wrapper {
  position: relative;
}

.rooms .slider-wrapper .slide-button {
  position: absolute;
  top: 50%;
  outline: none;
  border: none;
  height: 64px;
  width: 64px;
  z-index: 3;
  display: flex;
  cursor: pointer;
  background-color: #ffffff;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  opacity: 0.8;
  transition: opacity 0.16s ease-in;
  -webkit-transition: opacity 0.16s ease-in;
  -moz-transition: opacity 0.16s ease-in;
  -ms-transition: opacity 0.16s ease-in;
  -o-transition: opacity 0.16s ease-in;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.rooms .slider-wrapper .slide-button img {
  height: 36px;
  width: 36px;
}

.rooms .slider-wrapper .slide-button:hover {
  opacity: 1;
}

.rooms .slider-wrapper .slide-button#prev-slide {
  left: -32px;
  display: none;
}

.rooms .slider-wrapper .slide-button#next-slide {
  right: -32px;
}

.rooms .slider-scrollbar {
  display: none;
}

@media screen and (max-width: 600px) {
  .rooms .slider-wrapper .slide-button {
    height: 48px;
    width: 48px;
  }

  .rooms .slider-wrapper .slide-button#prev-slide {
    left: -24px;
    display: none;
  }

  .rooms .slider-wrapper .slide-button#next-slide {
    right: -24px;
  }
}

.rooms .slider-wrapper ul {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 24px;
  margin-bottom: 30px;
  overflow-x: auto;
  scrollbar-width: none;
}

.rooms .slider-wrapper ul::-webkit-scrollbar {
  display: none;
}

.rooms .slider-wrapper .room {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 24px;
  flex-shrink: 0;
  height: 500px;
  width: 390px;
  padding: 32px;
  color: white;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
  background-size: cover;
  background-position: center center;
}

.rooms .slider-wrapper .room > * {
  z-index: 2;
}

.rooms .slider-wrapper .room::before {
  z-index: 1;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 1) 100%
  );
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
}

.rooms .slider-wrapper .room .text h3 {
  margin-bottom: 16px;
  font-size: 24px;
  font-weight: 700;
}

.rooms .slider-wrapper .room .text span {
  margin-bottom: 16px;
  font-size: 18px;
}

.rooms .slider-wrapper .room .info {
  display: flex;
  gap: 16px;
}

.rooms .slider-wrapper .room .info span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border: 1px solid #ffffff;
  border-radius: var(--max-radius);
  -webkit-border-radius: var(--max-radius);
  -moz-border-radius: var(--max-radius);
  -ms-border-radius: var(--max-radius);
  -o-border-radius: var(--max-radius);
}

@media screen and (max-width: 1279px) {
  .rooms .slider-wrapper .room {
    width: 328px;
  }
}

.room.room1 {
  background-image: url("../assets/images/rooms/single.png");
}

.room.room2 {
  background-image: url("../assets/images/rooms/double.png");
}

.room.room3 {
  background-image: url("../assets/images/rooms/twin.png");
}

.room.room4 {
  background-image: url("../assets/images/rooms/triple.png");
}

.room.room5 {
  background-image: url("../assets/images/rooms/quadruple.png");
}

.room.room6 {
  background-image: url("../assets/images/rooms/quintuple.png");
}

.room.room7 {
  background-image: url("../assets/images/rooms/familiale.png");
}

.room.room8 {
  background-image: url("../assets/images/rooms/familialePlus.png");
}

/* Breakfast */
.breakfast {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 240px 160px;
  background-image: url("../assets/images/breakfast.png");
  background-size: cover;
  background-position: center center;
}

.breakfast > * {
  z-index: 2;
}

.breakfast::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: rgba(29, 35, 32, 0.8);
}

.breakfast .title {
  text-align: center;
  width: 616px;
  margin-bottom: 32px;
}

.breakfast .title .title-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  border: 1px solid #ffffff;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
}

.breakfast .title h2 {
  color: #ffffff;
}

.breakfast .title p {
  color: #bfc0bf;
}

.breakfast a {
  padding: 8px 32px;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  background-color: transparent;
  border: 2px solid #ffffff;
  border-radius: var(--max-radius);
  -webkit-border-radius: var(--max-radius);
  -moz-border-radius: var(--max-radius);
  -ms-border-radius: var(--max-radius);
  -o-border-radius: var(--max-radius);
  cursor: pointer;
  transition: var(--transition);
  -webkit-transition: var(--transition);
  -moz-transition: var(--transition);
  -ms-transition: var(--transition);
  -o-transition: var(--transition);
}

.breakfast a:hover {
  background-color: var(--hover);
  border-color: var(--hover);
  color: var(--primary);
}

.breakfast a:active {
  background-color: var(--active);
  border-color: var(--active);
  color: var(--primary);
}

@media screen and (max-width: 600px) {
  .breakfast {
    padding: 240px 24px;
  }

  .breakfast .title {
    width: 100%;
  }

  .breakfast .title h2 {
    width: 242px;
  }
}

/* Clients */
.clients {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--secondary);
  background-size: cover;
  background-position: center center;
}

.clients .title .title-icon {
  display: flex;
  gap: 10px;
  padding: 12px 24px;
  background: linear-gradient(
    180deg,
    rgba(255, 215, 66, 0) 0%,
    rgba(255, 215, 66, 0.1) 100%
  );
  border: 2px solid #f6eccc;
  border-radius: var(--max-radius);
  -webkit-border-radius: var(--max-radius);
  -moz-border-radius: var(--max-radius);
  -ms-border-radius: var(--max-radius);
  -o-border-radius: var(--max-radius);
}

.clients .images {
  overflow-x: hidden;
  height: calc(300px * 2 + 32px);
  width: 100%;
  max-width: calc(262px * 5 + 24px * 4);
  user-select: none;
}

.clients .images .row-1,
.clients .images .row-2 {
  display: flex;
  gap: 24px;
  width: fit-content;
}

.clients .images .row-container {
  display: flex;
  justify-content: end;
}

.clients .images .row-1 {
  margin-bottom: 32px;
  animation: moveRightLeft 60s linear infinite;
  -webkit-animation: moveRightLeft 60s linear infinite;
}

.clients .images .row-2 {
  justify-content: end;
  animation: moveLeftRight 60s linear infinite;
  -webkit-animation: moveLeftRight 60s linear infinite;
}

.clients .images .row-1:hover,
.clients .images .row-2:hover {
  animation-play-state: paused;
}

@keyframes moveRightLeft {
  to {
    transform: translateX(calc(-50% - 12px));
    -webkit-transform: translateX(calc(-50% - 12px));
    -moz-transform: translateX(calc(-50% - 12px));
    -ms-transform: translateX(calc(-50% - 12px));
    -o-transform: translateX(calc(-50% - 12px));
  }
}

@keyframes moveLeftRight {
  to {
    transform: translateX(calc(50% + 12px));
    -webkit-transform: translateX(calc(50% + 12px));
    -moz-transform: translateX(calc(50% + 12px));
    -ms-transform: translateX(calc(50% + 12px));
    -o-transform: translateX(calc(50% + 12px));
  }
}

.clients .images .image {
  background-position: center center;
  background-size: cover;
  flex-shrink: 0;
  height: 300px;
  width: 262px;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
}

@media screen and (max-width: 600px) {
  .clients {
    padding: 80px 0;
  }

  .clients .title {
    margin: 0 24px 48px;
  }
}

.image1 {
  background-image: url("../assets/images/clients/1.png");
}

.image2 {
  background-image: url("../assets/images/clients/2.png");
}

.image3 {
  background-image: url("../assets/images/clients/3.png");
}

.image4 {
  background-image: url("../assets/images/clients/4.png");
}

.image5 {
  background-image: url("../assets/images/clients/5.jpeg");
}

.image6 {
  background-image: url("../assets/images/clients/6.jpeg");
}

.image7 {
  background-image: url("../assets/images/clients/7.jpeg");
}

.image8 {
  background-image: url("../assets/images/clients/8.jpeg");
}

.image9 {
  background-image: url("../assets/images/clients/9.jpeg");
}

.image10 {
  background-image: url("../assets/images/clients/10.jpeg");
}

/* Contact */
.contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: fit-content;
  padding-bottom: 0;
  background-color: var(--secondary);
}

.contact .title {
  margin-bottom: 64px;
}

.contact .title h2 {
  font-size: 48px;
}

.contact .title p {
  width: 450px;
  margin-bottom: 32px;
  font-size: 24px;
  text-align: center;
}

.contact .title .action-links {
  display: flex;
  gap: 24px;
}

.contact .title .action-links a {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 32px;
  font-size: 24px;
  color: #1a201e;
  border: 2px solid #1a201e;
  border-radius: var(--max-radius);
  -webkit-border-radius: var(--max-radius);
  -moz-border-radius: var(--max-radius);
  -ms-border-radius: var(--max-radius);
  -o-border-radius: var(--max-radius);
  transition: var(--transition);
  -webkit-transition: var(--transition);
  -moz-transition: var(--transition);
  -ms-transition: var(--transition);
  -o-transition: var(--transition);
}

.contact .title .action-links a:first-child:hover {
  background-color: #f3eee6;
}

.contact .title .action-links a:first-child:active {
  background-color: var(--active);
}

.contact .title .action-links a:last-child {
  color: #28582b;
  border-color: #28582b;
}

.contact .title .action-links a:last-child:hover {
  background-color: #5fd669;
  border-color: #5fd669;
  color: #ffffff;
}

.contact .title .action-links a:last-child:active {
  background-color: #28582b;
  border-color: #28582b;
  color: #ffffff;
}

.contact .map-container {
  width: 100%;
  border: 8px solid #181e1c;
  border-bottom: none;
  border-radius: 48px 48px 0px 0px;
  -webkit-border-radius: 48px 48px 0px 0px;
  -moz-border-radius: 48px 48px 0px 0px;
  -ms-border-radius: 48px 48px 0px 0px;
  -o-border-radius: 48px 48px 0px 0px;
}

.contact .map-container iframe {
  height: 524px;
  width: 100%;
  border-radius: 40px 40px 0px 0px;
  -webkit-border-radius: 40px 40px 0px 0px;
  -moz-border-radius: 40px 40px 0px 0px;
  -ms-border-radius: 40px 40px 0px 0px;
  -o-border-radius: 40px 40px 0px 0px;
}

@media screen and (min-width: 601px) and (max-width: 1279px) {
  .contact .title h2 {
    font-size: 38px;
  }

  .contact .title p {
    width: 450px;
    font-size: 24px;
  }
}

@media screen and (max-width: 600px) {
  .contact .title h2 {
    font-size: 32px;
  }

  .contact .title p {
    width: 100%;
    font-size: 16px;
  }

  .contact .title .action-links {
    flex-direction: column;
    width: 100%;
  }

  .contact .title .action-links a {
    justify-content: center;
    font-size: 16px;
  }
}

/* Footer */
footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-image: url("../assets/images/finishpattern.svg");
  background-size: 112px 56px;
  background-color: var(--primary);
  color: white;
}

footer span {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  font-size: 16px;
}

footer .links {
  display: flex;
  gap: 16px;
}

footer .links li a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  height: 48px;
  width: 48px;
  border: 2px solid #3b403f;
  border-radius: var(--max-radius);
  -webkit-border-radius: var(--max-radius);
  -moz-border-radius: var(--max-radius);
  -ms-border-radius: var(--max-radius);
  -o-border-radius: var(--max-radius);
}

@media screen and (max-width: 600px) {
  footer {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  footer > span {
    width: 60%;
    text-align: center;
  }
}

@media screen and (min-width: 601px) and (max-width: 1279px) {
  footer > span {
    text-align: center;
  }
}
