/* GLOBAL */
body {
   font-family: 'Poppins', sans-serif;
}

/* HEADINGS (LUXURY LOOK) */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.5px;

   margin: 0;
  padding: 0;
}


/* HERO */
.blog-hero{
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.blog-hero::before{
    content: "";
    position: absolute;
    inset: 0;
    background:
    linear-gradient(
        135deg,
        rgba(0,0,0,.75),
        rgba(0,0,0,.45)
    );
}

.blog-hero .content{
    position: relative;
    z-index: 2;
    max-width: 950px;
    text-align: center;
    padding: 40px;
}

.hero-subtitle{
    display: inline-block;
    padding: 10px 24px;
    border: 1px solid rgba(255,255,255,.15);
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(20px);
    color: #f4c542;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 25px;
}

.blog-hero h1{
    font-family: 'Playfair Display', serif;
    font-size: 60px;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 25px;
    text-shadow: 0 10px 30px rgba(0,0,0,.4);
}

.blog-hero p{
    font-size: 18px;
    line-height: 1.9;
    color: rgba(255,255,255,.92);
    max-width: 750px;
    margin: auto;
}

.hero-buttons{
    margin-top: 35px;
}

.btn-gold{
    background: linear-gradient(
        135deg,
        #d4af37,
        #f4c542
    );
    color: #000;
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration:none;
    transition: .4s ease;
    box-shadow: 0 15px 35px rgba(212,175,55,.35);
}

.btn-gold:hover{
    transform: translateY(-5px);
    color: #000;
}

/* Responsive */

@media(max-width:1200px){

    .blog-hero h1{
        font-size: 48px;
    }
}

@media(max-width:992px){

    .blog-hero h1{
        font-size: 40px;
    }

    .blog-hero p{
        font-size: 17px;
    }
}

@media(max-width:768px){

    .blog-hero{
        min-height: 100vh;
    }

    .blog-hero .content{
        padding: 20px;
    }

    .blog-hero h1{
        font-size: 32px;
    }

    .blog-hero p{
        font-size: 16px;
        line-height: 1.7;
    }

    .hero-subtitle{
        font-size: 11px;
        letter-spacing: 2px;
    }

    .btn-gold{
        width: 100%;
        max-width: 260px;
    }
}


/* BLOG CARD */
.blog-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  transition: 0.4s;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.blog-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.blog-card:hover {
  transform: translateY(-10px);
}

.blog-content {
  padding: 20px;
}

.blog-content h4 {
  font-family: 'Playfair Display';
  margin: 10px 0;
}

.blog-content a {
  color: #d4af37;
  font-weight: 500;
  text-decoration: none;
}

/* TAG */
.tag {
  background: #d4af37;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
}

/* FEATURED */
.featured-blog {
  padding: 80px 0;
  background: #f9f9f9;
}

.featured-blog h2 {
  font-family: 'Playfair Display';
}

/* CTA */
.blog-cta {
  background: #000;
  color: #fff;
  padding: 80px 0;
}



/* BUTTON */
.btn-gold {
  background: linear-gradient(45deg, #d4af37, #f1c40f);
  border: none;
  padding: 12px 25px;
  border-radius: 30px;
}