*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Inter',sans-serif;
    background:#f5f5f5;
    color:#4b4b4b;
}

.blog-page{
    width:100%;
    padding:40px 0 80px;
}

.blog-container{
    width:1200px;
    margin:auto;
    display:flex;
    gap:40px;
    align-items:flex-start;
}

/* LEFT SIDE */

.blog-left{
    width:760px;
}

.blog-left h1{
    font-size:58px;
    line-height:1.1;
    font-weight:500;
    color:#222;
    margin-bottom:20px;
    letter-spacing:-1px;
}

.blog-meta{
    display:flex;
    gap:25px;
    font-size:13px;
    color:#888;
    margin-bottom:30px;
}

.featured-image{
    width:100%;
    display:block;
    margin-bottom:35px;
}

.blog-content p{
    font-size:15px;
    line-height:1.9;
    color:#666;
    margin-bottom:24px;
}

.blog-content h3{
    font-size:28px;
    color:#222;
    margin-top:45px;
    margin-bottom:18px;
    font-weight:500;
}

.blog-content h4{
    font-size:22px;
    color:#222;
    margin-top:35px;
    margin-bottom:16px;
    font-weight:500;
}

.blog-content strong{
    color:#222;
    font-weight:600;
}

.blog-content ul{
    padding-left:22px;
    margin-bottom:25px;
}

.blog-content ul li{
    margin-bottom:12px;
    line-height:1.8;
    color:#666;
    font-size:15px;
}

.center-text{
    text-align:center;
    margin:40px 0;
}

.previous-post{
    margin-top:50px;
    font-size:15px;
    color:#444;
}

.previous-post a{
    color:#222;
    text-decoration:none;
    font-weight:500;
}

.previous-post a:hover{
    color:#1c8f43;
}

.appointment-btn{
    display:inline-block;
    margin-top:35px;
    background:#8d5cff;
    color:#fff;
    text-decoration:none;
    padding:14px 28px;
    border-radius:4px;
    font-size:14px;
    font-weight:500;
    transition:0.3s;
}

.appointment-btn:hover{
    background:#6f3fff;
}

/* SIDEBAR */

.blog-sidebar{
    width:340px;
}

.sidebar-box{
    background:#fff;
    padding:28px;
    margin-bottom:30px;
    border:1px solid #ececec;
}

.sidebar-box h3{
    font-size:22px;
    color:#222;
    margin-bottom:24px;
    font-weight:500;
}

/* SEARCH */

.search-box{
    display:flex;
    align-items:center;
    border:1px solid #ddd;
    overflow:hidden;
}

.search-box input{
    width:100%;
    height:48px;
    border:none;
    outline:none;
    padding:0 15px;
    font-size:14px;
    color:#555;
}

.search-box button{
    width:52px;
    height:48px;
    border:none;
    background:#8d5cff;
    color:#fff;
    cursor:pointer;
    font-size:16px;
}

/* LATEST POSTS */

.latest-post{
    display:flex;
    gap:14px;
    margin-bottom:22px;
    align-items:flex-start;
}

.latest-post:last-child{
    margin-bottom:0;
}

.latest-post img{
    width:75px;
    height:75px;
    object-fit:cover;
    flex-shrink:0;
}

.latest-post a{
    text-decoration:none;
    color:#222;
    font-size:14px;
    line-height:1.6;
    font-weight:500;
    display:block;
    margin-bottom:6px;
    transition:0.3s;
}

.latest-post a:hover{
    color:#1c8f43;
}

.latest-post span{
    font-size:12px;
    color:#888;
}

/* COMMENTS */

.no-comments{
    font-size:14px;
    color:#777;
    line-height:1.8;
}

/* SIDEBAR LIST */

.sidebar-list{
    list-style:none;
}

.sidebar-list li{
    border-bottom:1px solid #eee;
    padding:12px 0;
}

.sidebar-list li:last-child{
    border-bottom:none;
}

.sidebar-list a{
    text-decoration:none;
    color:#555;
    font-size:14px;
    transition:0.3s;
    line-height:1.7;
}

.sidebar-list a:hover{
    color:#1c8f43;
}

/* TAGS */

.tags{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

.tags a{
    text-decoration:none;
    background:#f3f3f3;
    color:#555;
    padding:10px 14px;
    font-size:13px;
    border-radius:3px;
    transition:0.3s;
    line-height:1.5;
}

.tags a:hover{
    background:#1c8f43;
    color:#fff;
}

/* RESPONSIVE */

@media(max-width:1250px){

    .blog-container{
        width:95%;
    }

}

@media(max-width:992px){

    .blog-container{
        flex-direction:column;
    }

    .blog-left{
        width:100%;
    }

    .blog-sidebar{
        width:100%;
    }

    .blog-left h1{
        font-size:46px;
    }

}

@media(max-width:768px){

    .blog-page{
        padding:30px 0 60px;
    }

    .blog-left h1{
        font-size:38px;
        line-height:1.2;
    }

    .blog-content h3{
        font-size:25px;
    }

    .blog-content h4{
        font-size:20px;
    }

    .sidebar-box{
        padding:22px;
    }

}

@media(max-width:600px){

    .blog-left h1{
        font-size:30px;
    }

    .blog-meta{
        flex-direction:column;
        gap:8px;
    }

    .blog-content p,
    .blog-content ul li{
        font-size:14px;
    }

    .blog-content h3{
        font-size:22px;
    }

    .blog-content h4{
        font-size:18px;
    }

    .latest-post{
        flex-direction:column;
    }

    .latest-post img{
        width:100%;
        height:auto;
    }

    .tags a{
        font-size:12px;
        padding:8px 12px;
    }

    .appointment-btn{
        width:100%;
        text-align:center;
    }

}

/* RESPONSIVE */

@media(max-width:1250px){

    .blog-container{
        width:95%;
    }

}

@media(max-width:992px){

    .blog-container{
        flex-direction:column;
    }

    .blog-left{
        width:100%;
    }

    .blog-sidebar{
        width:100%;
    }

    .blog-left h1{
        font-size:46px;
    }

}

@media(max-width:768px){

    .blog-page{
        padding:30px 0 60px;
    }

    .blog-left h1{
        font-size:38px;
        line-height:1.2;
    }

    .blog-content h3{
        font-size:25px;
    }

    .blog-content h4{
        font-size:20px;
    }

    .sidebar-box{
        padding:22px;
    }

}

@media(max-width:600px){

    .blog-left h1{
        font-size:30px;
    }

    .blog-meta{
        flex-direction:column;
        gap:8px;
    }

    .blog-content p,
    .blog-content ul li{
        font-size:14px;
    }

    .blog-content h3{
        font-size:22px;
    }

    .blog-content h4{
        font-size:18px;
    }

    .latest-post{
        flex-direction:column;
    }

    .latest-post img{
        width:100%;
        height:auto;
    }

    .tags a{
        font-size:12px;
        padding:8px 12px;
    }

    .appointment-btn{
        width:100%;
        text-align:center;
    }

}

/* NAVBAR */

.navbar{
  width:100%;
  padding:22px 80px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  border-bottom:1px solid #ebe3d9;
  background:#f6f3ef;
}

.logo{
    display:flex;
    align-items:center;
    gap:12px;
}

.logo-main{
    font-family:'Cormorant Garamond',serif;
    font-size:31px;
    color:#d4aa61;
    font-weight:500;
}

.logo-sub{
    font-size:10px;
    letter-spacing:4px;
    color:#c49c5a;
}




.nav-links{
  display:flex;
  gap:34px;
}

.nav-links a{
  color:#4d4037;
  font-size:14px;
  letter-spacing:2px;
  transition:0.3s;
}

.nav-links a:hover,
.nav-links .active{
  color:#c79b5f;
}

.nav-right{
  display:flex;
  align-items:center;
  gap:25px;
}

.nav-right p{
  font-size:13px;
  color:#6d5b4f;
}

.book-btn{
  background:#c79b5f;
  color:#fff;
  padding:14px 22px;
  font-size:12px;
  letter-spacing:1px;
  transition:0.3s;
}

.book-btn:hover{
  background:#2a211b;
}

.nav-btn{
  padding:14px 28px;
  background:#c59b5f;
  color:#fff;
  font-size:12px;
  letter-spacing:1px;
  text-transform:uppercase;
  transition:0.3s;
}

.nav-btn:hover{
  background:#fff;
  color:#1f1712;
}

.footer{
  background:#241b16;
  padding-top:100px;
}

.footer-container{
  max-width:1300px;
  margin:auto;
  padding:0 80px 70px;
  display:grid;
  grid-template-columns:1.2fr 1fr 1fr 1fr;
  gap:60px;
}

.footer-logo h3{
  font-family:'Cormorant Garamond',serif;
  font-size:38px;
  color:#c79b5f;
  font-weight:400;
}

.footer-logo span{
  color:#b8945d;
  font-size:11px;
  letter-spacing:4px;
}

.footer-col p{
  color:#bbaea2;
  line-height:2;
  margin:22px 0;
  font-size:14px;
}

.social-icons{
  display:flex;
  gap:14px;
}

.social-icons a{
  width:34px;
  height:34px;
  border:1px solid rgba(255,255,255,0.1);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
}

.footer-col h4{
  color:#c79b5f;
  font-size:12px;
  letter-spacing:3px;
  margin-bottom:24px;
}

.footer-col ul li{
  margin-bottom:14px;
}

.footer-col ul li a,
.contact-list li{
  color:#bbaea2;
  font-size:14px;
  line-height:1.8;
  transition:0.3s;
}

.footer-col ul li a:hover{
  color:#fff;
}

/* FOOTER BOTTOM */

.footer-bottom{
  border-top:1px solid rgba(255,255,255,0.08);
  padding:28px 80px;
}

.footer-bottom-content{
  max-width:1300px;
  margin:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
  flex-wrap:wrap;
}

.footer-bottom p{
  color:#9e9083;
  font-size:13px;
}

.footer-links{
  display:flex;
  align-items:center;
  gap:24px;
  flex-wrap:wrap;
}

.footer-links a{
  color:#9e9083;
  font-size:13px;
  transition:0.3s;
}

.footer-links a:hover{
  color:#c79b5f;
}

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 50px;
    position:relative;
}

.logo img{
    height:55px;
    width:auto;
}

.hamburger{
    display:flex;
    flex-direction:column;
    gap:6px;
    cursor:pointer;
    z-index:9999;
}

.hamburger span{
    width:32px;
    height:3px;
    background:#fff;
    border-radius:10px;
}

/* Menu hidden by default */

.nav-links{
    position:absolute;
    top:100%;
    right:0;
    width:350px;
    background:#4b310aab;
    padding:30px;
    display:none;
    flex-direction:column;
    list-style:none;
    box-shadow:0 20px 50px rgba(0,0,0,.3);
}

.nav-links.active{
    display:flex;
}

.nav-btn{
    display:none;
}

.footer-social{
    display:flex;
    gap:12px;
    margin-top:20px;
}

.footer-social a{
    width:40px;
    height:40px;
    border:1px solid rgba(255,255,255,.2);
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    font-size:16px;
    transition:.35s ease;
}

.footer-social a:hover{
    background:#8db69a;
    color:#1d3127;
    border-color:#8db69a;
    transform:translateY(-4px);
}