*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:#121212;
}

/*=====================
 HERO
 ======================*/

.hero{
    position:relative;
    width:100%;
    height:70vh;
    overflow:hidden;
}

/* Background Image */

.hero-bg{
    position:absolute;
    width:100%;
    height:70vh;
    object-fit:cover;
}

/* Dark Overlay */

.overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.65);
}

/*====================
 NAVBAR
 =====================*/

header{

    position:absolute;
    top:0;
    left:0;

    width:100%;
    z-index:1000;

    padding:25px 0;

}

.container{

    width:90%;
    max-width:1300px;

    margin:auto;

    display:flex;
    justify-content:space-between;
    align-items:center;

}

/* Logo */

.logo{

    font-family:'Cormorant Garamond',serif;
    font-size:34px;
    font-weight:700;

}

.gold{

    color:#D4AF37;

}

.white{

    color:#fff;

}

/* Navigation */

nav ul{

    display:flex;
    list-style:none;
    gap:40px;

}

nav ul li a{

    color:#d0d0d0;

    text-decoration:none;

    font-size:14px;

    letter-spacing:2px;

    font-weight:500;

    transition:.3s;

}

nav ul li a:hover{

    color:#D4AF37;

}

.active{

    color:#D4AF37;

}

/* Button */

.book-btn{

    background:#D4AF37;

    color:#111;

    text-decoration:none;

    padding:15px 35px;

    display:flex;
    align-items:center;
    gap:10px;

    font-weight:600;

    transition:.3s;

}

.book-btn:hover{

    background:#e7c04d;

}

/*=========================
 HERO CONTENT
 ==========================*/

.hero-content{

    position:absolute;

    top:55%;
    left:50%;

    transform:translate(-50%,-50%);

    text-align:center;

    width:900px;

    z-index:100;

}

/* Subtitle */

.subtitle{

    color:#D4AF37;

    font-size:13px;

    letter-spacing:6px;

    text-transform:uppercase;

}

/* Heading */

.hero-content h1{

    margin-top:25px;

    color:#fff;

    font-family:'Cormorant Garamond',serif;

    font-size:50px;

    line-height:1.05;

    font-weight:700;

}

.hero-content span{

    color:#D4AF37;

}

/* Paragraph */

.hero-content p{

    width:760px;

    margin:30px auto 0;

    color:#c8c8c8;

    font-size:15px;

    line-height:1.8;

}

/*====================
 Responsive
 =====================*/

@media(max-width:992px){

.hero-content{

    width:90%;

}

.hero-content h1{

    font-size:58px;

}

.hero-content p{

    width:100%;
    font-size:18px;

}

nav{

    display:none;

}

.logo{

    font-size:26px;

}

.book-btn{

    padding:14px 22px;

}

}

@media(max-width:600px){

.hero-content h1{

    font-size:44px;

}

.hero-content p{

    font-size:16px;

}

.subtitle{

    font-size:11px;

    letter-spacing:4px;

}

}

/*=========================
 BLOG SECTION
 =========================*/

.blog-section {
    width: 100%;
    background: #111;
    padding: 0 0 100px;
}

.blog-wrapper {
    width: 88%;
    max-width: 1250px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

/*=========================
 FEATURED BLOG CARD
 =========================*/

.blog-card {
    display: flex;
    align-items: stretch;
    gap: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: 0.3s;
}

.blog-card:last-child {
    border-bottom: none;
}

/* Left Image */
.blog-card-image {
    flex: 0 0 45%;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

/* Right Content */
.blog-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px 60px;
}

/* Tags */
.blog-card-tags {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.blog-card-tags span {
    color: #D4AF37;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.tag-dot {
    color: #555 !important;
    font-size: 14px !important;
    letter-spacing: 0 !important;
}

/* Title */
.blog-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 34px;
    font-weight: 600;
    color: #f5efe8;
    line-height: 1.25;
    margin-bottom: 20px;
    transition: 0.3s;
}

.blog-card-title a,
.blog-grid-title a {
    color: inherit;
    text-decoration: none;
    transition: 0.3s;
}

.blog-card-image,
.blog-grid-image {
    display: block;
    text-decoration: none;
}

.blog-card:hover .blog-card-title a,
.blog-grid-card:hover .blog-grid-title a {
    color: #D4AF37;
}

/* Meta */
.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 28px;
}

.blog-author {
    color: #888;
    font-size: 13px;
    font-weight: 500;
}

.meta-dot {
    color: #444;
    font-size: 14px;
}

.blog-date {
    color: #666;
    font-size: 13px;
}

/* Read Link */
.blog-read-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #D4AF37;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    padding-bottom: 4px;
    width: fit-content;
    transition: 0.3s;
}

.blog-read-link:hover {
    border-bottom-color: #D4AF37;
}

.read-arrow {
    transition: transform 0.3s;
    font-size: 18px;
}

.blog-read-link:hover .read-arrow {
    transform: translateX(5px);
}

/*=========================
 3-COLUMN BLOG GRID
 =========================*/

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding-top: 50px;
}

/* Grid Card */
.blog-grid-card {
    background: #0e0e0e;
    overflow: hidden;
    transition: 0.4s;
}

.blog-grid-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

/* Grid Image */
.blog-grid-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.blog-grid-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.blog-grid-card:hover .blog-grid-image img {
    transform: scale(1.08);
}

/* Grid Content */
.blog-grid-content {
    padding: 28px 28px 32px;
}

/* Grid Tag */
.blog-grid-tag {
    display: inline-block;
    color: #D4AF37;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

/* Grid Title */
.blog-grid-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 600;
    color: #f5efe8;
    line-height: 1.3;
    margin-bottom: 16px;
    transition: 0.3s;
}

.blog-grid-card:hover .blog-grid-title a {
    color: #D4AF37;
}

/* Grid Meta */
.blog-grid-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
}

.blog-grid-meta span {
    color: #666;
    font-size: 12px;
}

/* Grid Read Link */
.blog-grid-content .blog-read-link {
    font-size: 13px;
}

/*=========================
 BLOG RESPONSIVE
 =========================*/

@media(max-width:992px){

    .blog-card {
        flex-direction: column;
    }

    .blog-card-image {
        flex: none;
        height: 350px;
    }

    .blog-card-content {
        padding: 35px 30px;
    }

    .blog-card-title {
        font-size: 28px;
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        padding-top: 40px;
    }

    .blog-grid-image {
        height: 240px;
    }

    .blog-grid-title {
        font-size: 22px;
    }

}

@media(max-width:600px){

    .blog-section {
        padding: 0 0 70px;
    }

    .blog-wrapper {
        width: 92%;
    }

    .blog-card-image {
        height: 260px;
    }

    .blog-card-content {
        padding: 28px 20px;
    }

    .blog-card-title {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .blog-card-meta {
        margin-bottom: 22px;
    }

    .blog-author,
    .blog-date {
        font-size: 12px;
    }

    .blog-read-link {
        font-size: 14px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding-top: 30px;
    }

    .blog-grid-image {
        height: 220px;
    }

    .blog-grid-content {
        padding: 24px 22px 28px;
    }

    .blog-grid-title {
        font-size: 20px;
    }

}



/*=========================
 FOOTER
 =========================*/

.site-footer {
    width: 100%;
    background: #0a0a0a;
}

/* Main Footer Area */
.footer-main {
    padding: 80px 0 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-container {
    width: 88%;
    max-width: 1250px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
    gap: 50px;
}

/* Column */
.footer-col {
    padding-top: 5px;
}

/* Brand Column */
.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.footer-desc {
    color: #777;
    font-size: 13px;
    line-height: 1.9;
    margin-bottom: 28px;
}

/* Social Icons */
.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.social-link:hover {
    border-color: #D4AF37;
    color: #D4AF37;
    background: rgba(212, 175, 55, 0.08);
}

/* Headings */
.footer-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 600;
    color: #f5efe8;
    margin-bottom: 28px;
    letter-spacing: 0.5px;
}

/* Links List */
.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: #777;
    text-decoration: none;
    font-size: 13px;
    transition: 0.3s;
    position: relative;
}

.footer-links li a:hover {
    color: #D4AF37;
    padding-left: 6px;
}

/* Contact List */
.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
    color: #777;
    font-size: 13px;
    line-height: 1.7;
}

.footer-contact li .icon {
    color: #D4AF37;
    font-size: 14px;
    margin-top: 4px;
    flex-shrink: 0;
    width: 16px;
    text-align: center;
}

/*=========================
 FOOTER BOTTOM BAR
 =========================*/

.footer-bottom {
    padding: 22px 0;
}

.footer-bottom .footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: #555;
    font-size: 12px;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: #555;
    text-decoration: none;
    font-size: 12px;
    transition: 0.3s;
}

.footer-bottom-links a:hover {
    color: #D4AF37;
}

/*=========================
 FOOTER RESPONSIVE
 =========================*/

@media (max-width: 992px) {

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px 30px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-desc {
        max-width: 500px;
    }
}

@media (max-width: 600px) {

    .footer-main {
        padding: 60px 0 40px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-desc {
        max-width: 100%;
    }

    .footer-bottom .footer-container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}


/*=========================
 BLOG ARTICLE HERO
 =========================*/

.blog-article-hero {
    height: auto;
    min-height: 55vh;
    padding-bottom: 70px;
}

.blog-article-hero-content {
    position: relative;
    z-index: 100;
    width: 88%;
    max-width: 900px;
    margin: 0 auto;
    padding-top: 160px;
    text-align: left;
}

.blog-article-tags {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
}

.blog-article-tags span {
    color: #D4AF37;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.blog-article-tag-dot {
    color: #555 !important;
    font-size: 14px !important;
    letter-spacing: 0 !important;
}

.blog-article-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 44px;
    font-weight: 600;
    color: #f5efe8;
    line-height: 1.2;
    margin: 0 0 20px;
    max-width: 100%;
}

.blog-article-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #888;
    font-size: 14px;
    font-weight: 500;
}

.blog-article-meta-dot {
    color: #444;
    font-size: 14px;
}

@media (max-width: 992px) {
    .blog-article-hero-content {
        padding-top: 140px;
    }

    .blog-article-title {
        font-size: 36px;
    }
}

@media (max-width: 600px) {
    .blog-article-hero {
        min-height: auto;
        padding-bottom: 50px;
    }

    .blog-article-hero-content {
        width: 92%;
        padding-top: 120px;
    }

    .blog-article-title {
        font-size: 28px;
    }

    .blog-article-meta {
        font-size: 13px;
        flex-wrap: wrap;
    }
}


/*=========================
 BLOG DETAIL PAGE
 =========================*/

.blog-detail {
    width: 100%;
    background: #111;
    padding: 0 0 80px;
}

.blog-detail-container {
    width: 88%;
    max-width: 900px;
    margin: 0 auto;
}

.blog-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #D4AF37;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    margin: 40px 0 30px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    padding-bottom: 4px;
    transition: 0.3s;
}

.blog-back-link:hover {
    border-bottom-color: #D4AF37;
}

.blog-detail-hero {
    width: 100%;
    height: 480px;
    overflow: hidden;
    margin-bottom: 50px;
}

.blog-detail-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-detail-body {
    color: #aaa;
    font-size: 16px;
    line-height: 1.95;
}

.blog-detail-body p {
    margin-bottom: 24px;
}

.blog-detail-body p:first-child {
    color: #c8c8c8;
    font-size: 18px;
    line-height: 1.85;
}

.blog-detail-share {
    margin-top: 50px;
    padding-top: 35px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.blog-detail-share-label {
    color: #777;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.blog-detail-share-links {
    display: flex;
    gap: 20px;
}

.blog-detail-share-links a {
    color: #D4AF37;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: 0.3s;
}

.blog-detail-share-links a:hover {
    color: #e7c04d;
}

.blog-related {
    width: 100%;
    background: #0e0e0e;
    padding: 80px 0 100px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.blog-related-container {
    width: 88%;
    max-width: 1250px;
    margin: 0 auto;
}

.blog-related-heading {
    text-align: center;
    margin-bottom: 50px;
}

.blog-related-subtitle {
    color: #D4AF37;
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.blog-related-heading h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 40px;
    font-weight: 600;
    color: #f5efe8;
    margin-top: 16px;
}

@media (max-width: 992px) {
    .blog-detail-hero {
        height: 360px;
    }
}

@media (max-width: 600px) {
    .blog-detail {
        padding-bottom: 60px;
    }

    .blog-detail-container {
        width: 92%;
    }

    .blog-back-link {
        margin: 30px 0 24px;
    }

    .blog-detail-hero {
        height: 260px;
        margin-bottom: 35px;
    }

    .blog-detail-body {
        font-size: 15px;
    }

    .blog-detail-body p:first-child {
        font-size: 16px;
    }

    .blog-detail-share {
        flex-direction: column;
        align-items: flex-start;
    }

    .blog-related {
        padding: 60px 0 70px;
    }

    .blog-related-heading h2 {
        font-size: 32px;
    }
}

