:root {
  --main-color: black;
  --secondary-color: #b18e72;
  --accent-color: #d7a449;
  --light-gray: #eee;
  --overlay-dark: rgba(0, 0, 0, 0.47);
  --white-blur-bg: #ffffffbf;
  --transition-ease: 0.3s ease;
  --font-bold: 700;
  --radius: 5px;
  --font-main: "Arimo", sans-serif;
}

/* ========== Navbar ========== */
.navbar-brand {
  font-weight: bold;
  font-size: 1.5rem;
  margin-right: 8vh;
  letter-spacing: 5px;
}

a.nav-link,
.d-flex.align-items-center.gap-3.pl-5 a {
  padding: 12px 13px;
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  color: var(--main-color);
}

nav.navbar.navbar-expand-lg.navbar-light.bg-light {
  padding: 15px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999999;
  background: white !important;
}

/* ========== Slider ========== */
.slider_main {
  margin: 35px;
  overflow: hidden;
  height: 90vh;
}

.img_slider {
  height: 100vh;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  animation: kenburns-top 12s 1s forwards;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes kenburns-top {
  0% {
    transform: scale(1) translateY(0);
    transform-origin: 50% 16%;
  }
  100% {
    transform: scale(1.08) translateY(-15px);
    transform-origin: top;
  }
}

.text_slider {
  width: 100%;
  height: 100%;
  background: var(--overlay-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.text_titel {
  font-size: 12vh;
}

.text-outside {
  position: absolute;
  right: 50px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  white-space: nowrap;
  font-size: xx-large;
  font-weight: bold;
}

.mt-5.py-35 {
  margin: 35px;
}

.titel_logo::first-letter,
span.text_titel.titel_logo::first-letter {
  color: var(--secondary-color) !important;
  font-size: 24px;
  font-weight: bold;
}

/* ========== Feature Section ========== */
.feature-box {
  border-bottom: 1px solid #ddd;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.icon {
  font-size: 32px;
  margin-bottom: 10px;
}

/* ========== Property Section ========== */
.property-image img {
  width: 100%;
}

.property-title {
  font-weight: var(--font-bold);
}

.property-number {
  font-weight: bold;
  font-size: 20px;
}

.container.mt-5 {
  background: url(../img/BG-Pattern.svg) center center/cover no-repeat;
}

/* ========== Tabs ========== */
.tab-btn {
  border: none;
  background: none;
  font-weight: bold;
  margin-right: 15px;
  border-bottom: 2px solid transparent;
}

.tab-btn.active {
  border-color: #000;
}

/* ========== Room List ========== */
.room-list span {
  font-weight: bold;
}

.room-list li {
  list-style: none;
  margin-bottom: 5px;
}

/* ========== Animated Box ========== */
.box {
  width: 200px;
  height: 50%;
  position: relative;
}

.box::before,
.box::after,
.bottom,
.left {
  content: "";
  position: absolute;
  background: var(--secondary-color);
  transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
}

.box::before {
  height: 10px;
  width: 0;
  top: 0;
  left: 0;
  animation: drawTop 1s forwards 3s;
}

.box::after {
  width: 10px;
  height: 0;
  top: 0;
  right: 0;
  animation: drawRight 1s forwards 4s;
}

@keyframes drawTop {
  to {
    width: 100%;
  }
}

@keyframes drawRight {
  to {
    height: 100%;
  }
}

/* ========== About Section ========== */
.about-section {
  position: relative;
  padding: 120px 0;
  margin: 0 !important;
  background: url(../img/BG-Pattern.svg);
}

.about-section .content-column,
.about-section .image-column {
  position: relative;
  margin-bottom: 40px;
}

.about-section .content-column .inner-column {
  padding-top: 50px;
  padding-right: 100px;
}

.about-section .content-column .text {
  color: #777;
  font-size: 15px;
  line-height: 2em;
  margin-bottom: 40px;
}

.about-section .content-column .email {
  color: #252525;
  font-weight: 700;
  margin-bottom: 50px;
}

.about-section .image-column .inner-column {
  padding: 40px 40px 0 0;
  margin-left: 50px;
  position: relative;
}

.about-section .image-column .inner-column:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  left: 40px;
  bottom: 100px;
  z-index: -1;
  border: 2px solid var(--accent-color);
}

.about-section .btn-style-three {
  position: relative;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-main);
  color: #252525;
  padding: 11px 40px;
  border: 2px solid var(--accent-color);
  background-color: #fff;
  display: inline-block;
  text-transform: capitalize;
}

.about-section .btn-style-three:before {
  position: absolute;
  content: "";
  left: 10px;
  top: 10px;
  z-index: -1;
  right: -10px;
  bottom: -10px;
  background: url(https://i.ibb.co/DKn55Qz/pattern-1.jpg) repeat;
}

.about-section .btn-style-three:hover {
  color: #fff;
  background: var(--accent-color);
}

/* ========== Section Title ========== */
.sec-title {
  position: relative;
  padding-bottom: 40px;
}

.sec-title2 {
  color: #fff;
}

.sec-title .title {
  color: var(--accent-color);
  font-size: 18px;
  font-weight: 700;
  padding-right: 50px;
  margin-bottom: 15px;
  display: inline-block;
  text-transform: capitalize;
  position: relative;
}

.sec-title .title:before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 7px;
  width: 40px;
  height: 1px;
  background: #bbb;
}

/* ========== Video Section ========== */
.video_phot {
  height: 40vh;
  background: url(../img/skyhaus-video.jpg) center center/cover no-repeat red;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ========== Highlight Card ========== */
.highlight-card {
  border: none;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform var(--transition-ease);
  height: 50vh;
  background-image: url(../img/cover.jpg);
  display: flex;
  align-items: end;
  justify-content: center;
}

.highlight-card:hover {
  transform: translateY(-5px);
}

/* ========== Card Blur ========== */
.card_text_blur {
  background: var(--white-blur-bg);
  padding: 25px;
  backdrop-filter: blur(0.75em);
}

/* ========== Divider ========== */
.divider {
  height: 1px;
  background: var(--light-gray);
  margin: 40px 0;
}

/* ========== Responsive ========== */
@media screen and (max-width: 992px) {
  .inner-column {
    padding: 0 !important;
  }

  .d-flex.align-items-center.gap-3.pl-5 {
    display: none !important;
  }

  span.text_titel.titel_logo {
    font-size: large;
  }

  .img_slider {
    height: 50vh;
  }

  .slider_main {
    margin: auto;
    height: auto;
  }

  nav.navbar.navbar-expand-lg.navbar-light.bg-light {
    position: static;
  }

  body,
  html {
    overflow-x: hidden !important;
  }
}
/*  */
/*  */
button.btn.btn-primary.send_info {
  width: 100%;
  padding: 15px;
  border-radius: 30px;
  background-color: black;
  border: none;
}

.row.feature-box.aos-init.aos-animate {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

@media screen and (max-width: 992px) {
  .section-3d {
    height: 35vh;
  }

  .cover_img_product.mt-5.rounded-3 {
    height: 24vh !important;
  }

  .cover_img_product.mt-5.rounded-3 {
    background-image: url(../img/wiktor-karkocha-resize.png) !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: bottom !important;
  }

  img#img3d {
    display: none;
  }
}

.highlight-card.text-center {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
