/* ==========================================================
   HORUS LANDING PAGE - CSS
   Theo thiết kế Figma node 11:15
   Color theme: #6868EB (primary), #26262B (dark), #7D7D84 (gray), #F3F3F7 (bg)
   ========================================================== */

:root {
  --horus-primary: #6868EB;
  --horus-dark: #26262B;
  --horus-gray: #7D7D84;
  --horus-bg: #F3F3F7;
  --horus-white: #FFFFFF;
}

/* ---- Placeholder (gray boxes thay ảnh) ---- */
.horus-placeholder {
  background: #C8C8D0;
  border-radius: 5px;
  display: block;
}
.horus-placeholder--icon {
  width: 59px;
  height: 59px;
  border-radius: 8px;
}

/* ---- Purchase button ---- */
.horus-btn-purchase {
  display: inline-block;
  background: var(--horus-primary);
  color: var(--horus-white) !important;
  font-size: 14px;
  font-family: var(--font-family-base);
  font-weight: 500;
  padding: 18px 30px;
  border-radius: 5px;
  text-decoration: none !important;
  transition: background 0.3s ease;
  line-height: 1;
  white-space: nowrap;
}
.horus-btn-purchase:hover {
  background: #5252d4;
  color: var(--horus-white) !important;
}

/* ---- Section headers ---- */
.horus-section-header {
  margin-bottom: 60px;
}
.horus-section-header h2 {
  font-size: clamp(28px, 3.5vw, 60px);
  font-weight: 400;
  color: var(--horus-dark);
  line-height: 1.17;
  margin-bottom: 20px;
}
.horus-section-header p {
  font-size: clamp(16px, 1.5vw, 22px);
  color: var(--horus-gray);
  line-height: 1.45;
}
.horus-label-title {
  font-size: clamp(36px, 4vw, 60px) !important;
  font-weight: 400;
  color: var(--horus-dark);
  line-height: 1;
  margin-bottom: 10px;
}
.horus-label-title--white {
  color: var(--horus-white) !important;
}
.horus-label-sub {
  font-size: 22px;
  color: var(--horus-gray);
}

/* ==========================================================
   HEADER / HERO
   ========================================================== */
.horus-header {
  background: #111 url('../img/bg-header.jpg') center center / cover no-repeat;
  padding: 0;
  min-height: 920px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
}
.horus-header-inner {
  width: 100%;
  padding: 54px 240px 0;
  position: relative;
  min-height: 920px;
  box-sizing: border-box;
}

/* Nav bar */
.horus-header-inner .container-large__center {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
}
.horus-logo img {
  height: 37px;
  width: auto;
  display: block;
}

/* Hero text */
.horus-hero-text {
  text-align: center;
  position: relative;
  z-index: 2;
  padding-top: 70px;
}
.horus-introducing {
  font-size: 25px;
  color: var(--horus-primary);
  letter-spacing: 0;
  margin-bottom: 20px;
}
.horus-hero-text h1 {
  font-size: clamp(32px, 4.5vw, 70px);
  color: var(--horus-white) !important;
  font-weight: 400;
  line-height: 1.17;
  margin-bottom: 24px;
}
.horus-sub {
  font-size: 22px;
  color: var(--horus-white) !important;
  line-height: 1.45;
  max-width: 795px;
  margin: 0 auto 40px;
}

/* Hero screens placeholder area */
.horus-hero-screens {
  position: relative;
  margin-top: 40px;
  height: 420px;
}
.horus-screen--main {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}
.horus-screen--tl {
  position: absolute;
  left: 147px;
  top: 263px;
}
.horus-screen--bl {
  position: absolute;
  left: -87px;
  top: 420px;
}
.horus-screen--tr {
  position: absolute;
  right: 0;
  top: 203px;
}
.horus-screen--br {
  position: absolute;
  right: 80px;
  top: 460px;
}

/* ==========================================================
   SECTION: DEMOS
   ========================================================== */
.horus-section-demos {
  background: var(--horus-bg);
  padding: 110px 0 65px;
}
.horus-section-demos .horus-section-header h2 {
  color: var(--horus-dark);
}

/* item demo cards reuse existing styles but update label */
.horus-section-demos main #demo .item h3,
.horus-section-demos .item h3,
#demo .item h3 {
  font-size: 24px !important;
  color: var(--horus-dark) !important;
  margin-top: 20px;
  text-align: center;
  font-weight: 400;
}
@media (max-width:991px){
  .horus-section-demos main #demo .item h3,
.horus-section-demos .item h3,
#demo .item h3 {
  font-size: 18px !important;
}
}

/* ==========================================================
   SECTION: HOT FEATURES
   ========================================================== */
.horus-section-features {
  background: var(--horus-white);
  padding: 100px 0;
}
.horus-section-features .horus-section-header h2.horus-label-title {
  color: var(--horus-dark);
}
.horus-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.horus-feature-item {
  background: var(--horus-white);
  padding: 37px 30px;
  border: 0;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 20px;
}
.horus-feature-icon {
  flex-shrink: 0;
}
.horus-feature-item h4 {
  font-size: 24px;
  color: var(--horus-white);
  font-weight: 400;
  margin: 0 0 8px;
  line-height: 1;
}
.horus-feature-item p {
  font-size: 16px;
  color: var(--horus-gray);
  margin: 0;
  line-height: 1.5;
}
/* Feature cards have dark bg */
.horus-feature-item {
  background: var(--horus-bg);
}
.horus-feature-item h4 {
  color: var(--horus-dark);
}

/* ==========================================================
   SECTION: SINGLE PROPERTY PAGES
   ========================================================== */
.horus-section-single {
  background: var(--horus-bg);
  padding: 100px 0;
}
.horus-count-label {
  font-size: 60px;
  color: var(--horus-primary);
  font-weight: 400;
  margin-bottom: 0;
  line-height: 1;
}
.horus-section-single h2 {
  font-size: clamp(28px, 3.5vw, 60px);
  color: var(--horus-dark);
  font-weight: 400;
  line-height: 1;
  margin: 10px 0 20px;
}
.horus-single-desc {
  font-size: 18px;
  color: var(--horus-gray);
  line-height: 1.5;
  margin-bottom: 30px;
}
.horus-single-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 0;
}
.horus-single-features li {
  width: 50%;
  font-size: 18px;
  color: var(--horus-gray);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px 0;
}
.horus-dot {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: var(--horus-primary);
  flex-shrink: 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.horus-single-screens {
  position: relative;
}
.horus-single-screens .container-item{
  background: rgb(104 104 235 / 20%);
  padding: 50px 50px 0;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slick-dots{
}
/* ==========================================================
   SECTION: PLUGINS
   ========================================================== */
.horus-section-plugins {
  padding: 100px 0;
  background: #111 url('../img/bg-header.jpg') center / cover no-repeat;
}
.horus-section-plugins .horus-section-header h2 {
  color: var(--horus-white);
}
.horus-section-plugins .horus-section-header p {
  color: rgba(255,255,255,0.8);
}
.horus-plugins-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 40px 60px;
}
.horus-plugins-grid .plugin-img img {
  width: 84px;
  height: 84px;
  object-fit: cover;
  border-radius: 5px;
}
.horus-plugins-grid h3 {
  font-size: 22px !important;
  color: var(--horus-white) !important;
  margin-top: 20px !important;
  font-weight: 400 !important;
  font-family: var(--font-family-base) !important;
}

/* ==========================================================
   SECTION: PROPERTY LIST PAGE
   ========================================================== */
.horus-section-proplist {
  background: var(--horus-bg);
  padding: 100px 0;
}
.horus-section-proplist .horus-label-title {
  color: var(--horus-dark);
}
.horus-section-proplist .item-slider h3 {
  text-align:center;
  font-size: 22px !important;
  margin-top: 20px !important;
  color: var(--horus-dark) !important;
}
.horus-section-proplist .item-slider img{
  border-radius:5px;
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, .1);
}

/* ==========================================================
   SECTION: INNER PAGES
   ========================================================== */
.horus-section-innerpages {
  background: var(--horus-white);
  padding: 100px 0;
}
.horus-innerpages-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.horus-innerpage-card {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}
.horus-innerpage-images {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}
.horus-innerpage-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(20px);
  border-radius: 5px;
}
.horus-innerpage-small {
  position: absolute;
  border-radius: 5px;
  overflow: hidden;
}
.horus-innerpage-small--left {
  left: 45px;
  top: 135px;
  width: 305px;
}
.horus-innerpage-small--center {
  left: 355px;
  top: 135px;
  width: 305px;
}
.horus-innerpage-small--right1 {
  left: 45px;
  top: 65px;
  width: 405px;
}
.horus-innerpage-small--right2 {
  left: 460px;
  top: 135px;
  width: 305px;
}
.horus-innerpage-label {text-align: center;margin-top: 30px;}
.horus-innerpage-label h4 {
  font-size: 30px;
  color: var(--horus-dark);
  font-weight: 400;
  margin: 0 0 8px;
}
.horus-innerpage-label p {
  font-size: 18px;
  color: var(--horus-gray);
  margin: 0;
}

/* ==========================================================
   FOOTER CTA
   ========================================================== */
.horus-footer {
  background: #111 url('../img/footer.jpg') top center / cover no-repeat;
  padding: 80px 0 80px;
}
.horus-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.horus-footer-left h2 {
  font-size: clamp(28px, 3.5vw, 60px);
  color: var(--horus-white) !important;
  font-weight: 400;
  margin-bottom: 20px;
}
.horus-footer-left p {
  font-size: 22px;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
  margin-bottom: 40px;
  max-width: 640px;
}
.horus-footer-logo img {
  height: 40px;
  width: auto;
  opacity: 0.9;
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 1200px) {
  .horus-header-inner {
    padding: 40px 60px 0;
  }
  .horus-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .horus-plugins-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {
  .horus-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .horus-innerpages-grid {
    grid-template-columns: 1fr 1fr;
  }
  .horus-single-features li {
    width: 100%;
  }
  .horus-single-features{
    margin-bottom:60px;
  }
}

@media (max-width: 767px) {
  .horus-header-inner {
    padding: 30px 20px 0;
    min-height: auto;
  }
  .horus-hero-text {
    padding-top: 60px;
  }
  .horus-hero-screens {
    display: none;
  }
  .horus-features-grid {
    grid-template-columns: 1fr;
  }
  .horus-plugins-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .horus-footer-inner {
    flex-direction: column;
    text-align: center;
  }
  .horus-single-screens {
    display: none;
  }
  .horus-innerpages-grid {
    grid-template-columns: 1fr;
  }
  .horus-section-features,.horus-section-single,.horus-section-proplist,.horus-section-innerpages{
    display:none;
  }
  .horus-sub{
    font-size:16px;
  }
}

@media (max-width: 480px) {
  .horus-plugins-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
