/* blog.css - Using Index Style System */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@300;400;500&family=Montserrat:wght@300&display=swap');

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

/* BLOG HERO */
.blog-hero{
  position:relative;
  height:70vh;
  width:100%;
  background:url('/assets/images/family-function-event-goa.webp') center/cover no-repeat;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:white;
}

/* DARK OVERLAY */
.blog-hero::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.45);
}

.blog-hero-content{
  position:relative;
  z-index:2;
}

.blog-small{
  font-family:'Montserrat',sans-serif;
  letter-spacing:6px;
  font-size:12px;
  margin-bottom:10px;
}

.blog-hero-content h1{
  font-family:'Playfair Display',serif;
  font-size:70px;
  font-weight:300;
  letter-spacing:8px;
}

.blog-hero-content p{
  font-family:'Montserrat',sans-serif;
  font-size:16px;
  margin-top:15px;
}

/* RESPONSIVE */
@media (max-width:900px){
  .blog-hero-content h1{
    font-size:48px;
    letter-spacing:5px;
  }
}

@media (max-width:600px){
  .blog-hero{
    height:50vh;
  }
  .blog-hero-content h1{
    font-size:40px;
    letter-spacing:4px;
  }
  .blog-hero-content p{
    font-size:14px;
  }
}

/* BLOG SECTION */

.blog-section{
  padding:120px 10%;
  background:#ffffff;
}

/* BLOG CONTAINER */

.blog-container{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
  margin-bottom:120px;
}

/* IMAGE */

.blog-image img{
  width:100%;
  height:600px;
  object-fit:cover;
  box-shadow:0 10px 30px rgba(0,0,0,0.15);
}

/* TEXT */

.blog-small{
  font-family:'Montserrat',sans-serif;
  letter-spacing:5px;
  font-size:12px;
  margin-bottom:15px;
  color:#777;
}

.blog-content h2{
  font-family:'Playfair Display',serif;
  font-size:42px;
  letter-spacing:4px;
  margin-bottom:20px;
}

.blog-content p{
  font-family:'Montserrat',sans-serif;
  color:#666;
  line-height:1.8;
  font-size:15px;
  max-width:520px;
  margin-bottom:25px;
}

/* BUTTON */

.blog-btn{
  display:inline-block;
  padding:12px 30px;
  border:1px solid black;
  text-decoration:none;
  color:black;
  font-family:'Montserrat',sans-serif;
  letter-spacing:2px;
  font-size:13px;
  transition:0.3s;
}

.blog-btn:hover{
  background:black;
  color:white;
}

/* TABLET */

@media (max-width:900px){

  .blog-container{
    grid-template-columns:1fr;
    gap:50px;
    text-align:center;
  }

  .blog-image img{
    height:450px;
  }

  .blog-content p{
    margin:auto;
  }

}

/* PHONE */

@media (max-width:600px){

  .blog-section{
    padding:80px 8%;
  }

  .blog-content h2{
    font-size:30px;
    letter-spacing:3px;
  }

  .blog-image img{
    height:350px;
  }

}