/* HERO SECTION */
.hero-section {
    position: relative;
    height: 500px;
    background: url("../images/photos/hero-img.webp") center/cover no-repeat;
    overflow: hidden;
    display: flex;
}

/* Dark overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.55),
            rgba(0, 0, 0, 0.25),
            rgba(0, 0, 0, 0.1));
    z-index: 1;
}

/* Content */
.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    margin-top: 200px;
}

/* Subtitle */
.hero-subtitle {
    font-family: "Ysabeau SC", sans-serif;
    letter-spacing: 0%;
    line-height: 100%;
    font-size: 30px;
    margin-bottom: 30px;
    font-weight: 500;
    text-transform: uppercase;
}

/* Main Title */
.hero-title {
    font-family: "Gallient";
    color: #ffffff;
    font-size: 80px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0;
    margin-bottom: 30px;
}

/* Breadcrumb */
.hero-breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    line-height: 22px;
    letter-spacing: 0%;
}

.hero-breadcrumb .arrow {
    color: #ffffff;
}

.hero-breadcrumb .active {
    color: #fdbd10;
}





/* ===============================
   SECTION TITLE
================================ */

.section-dark {
    background: #000;
}

.section-dark .section-title h2 {
    color: #fff;
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 12px;
}

/* Line under title */
.section-dark .title-line {
  position: relative;
  display: block;
  width: 60px;
  height: 2px;
  margin: 0 auto;
  background: #fff;
  transition: width 0.4s ease;
}

/* Hover effect */
.section-dark:hover .title-line {
  width: 270px;
}




/* ===============================
   BLOG LISTING CARD
================================ */

.blog-grid {
    background: #000;
    margin-top: -30px;
}

.blog-post-card {
    position: relative;
    width: 100%;
    height: auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Image */
.blog-post-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Content */
.blog-post-content {
    position: absolute;
    inset: auto 0 0 0;
    padding: 26px 28px;
    color: #fff;

    background: linear-gradient(to top,
        rgba(17, 17, 17, 0.6) 0%,
        rgba(17, 17, 17, 0.35) 50%,
        rgba(17, 17, 17, 0) 100%) !important;
}

.blog-post-content h5 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 22px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: 0%;
    margin-bottom: 10px;
    color: #ffffff;
}

.blog-post-content p {
    font-size: 16px;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 500;
    line-height: 22px;
    letter-spacing: 0%;
    color: #ffffff;
    margin-bottom: 18px;
}

/* Read More */
.read-more {
    font-size: 18px;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 500;
    line-height: 22px;
    letter-spacing: 0%;
    color: #eeb008;
    text-decoration: none;
}

.read-more:hover {
    text-decoration: underline;
}

/* Hover effect */
.blog-post-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.blog-post-card:hover .blog-post-content {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

