@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600&family=Montserrat:wght@300;400;500;600&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:#000;
    color:#fff;
    font-family:'Montserrat',sans-serif;
}

.topbar{
    width:90%;
    margin:auto;
    padding:30px 0;
    display:flex;
    justify-content:space-between;
    align-items:center;
    border-bottom:1px solid rgba(255,255,255,0.08);
}


.heros{
    text-align:center;
    padding:120px 20px;
    height:auto;
    min-height:auto;
}

.sub-heading{
    color:#f5c518;
    letter-spacing:4px;
    font-size:13px;
    margin-bottom:20px;
}

.heros h1{
    font-size:68px;
    font-family:'Cinzel',serif;
    font-weight:500;
     margin:0;
}

.blog-section{
    width:90%;
    margin:auto;
    padding:0 0 100px;
}

/* =========================================
   BLOG SECTION
========================================= */

.blog-section{
    width:90%;
    margin:auto;
    padding:0px 0 100px;
}

.blog-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(340px,1fr));
    gap:40px;
}

/* =========================================
   BLOG CARD
========================================= */

.blog-card{
    background:#111;
    border-radius:20px;
    overflow:hidden;
    position:relative;
    transition:0.4s ease;
    border:1px solid rgba(255,255,255,0.05);
}

.blog-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,0.45);
}

/* =========================================
   BLOG IMAGE
========================================= */

.blog-card img{
    width:100%;
    height:320px;
    object-fit:cover;
    display:block;
}

/* =========================================
   TOP BAR
========================================= */

.card-top{
    position:absolute;
    top:16px;
    left:16px;
    right:16px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    z-index:20;
}

/* =========================================
   DATE
========================================= */

.blog-date{
    background:rgba(0,0,0,0.65);
    color:#fff;
    padding:8px 14px;
    border-radius:30px;
    font-size:12px;
    letter-spacing:1px;
    backdrop-filter:blur(10px);
    -webkit-backdrop-filter:blur(10px);
}

/* =========================================
   3 DOT MENU
========================================= */

.menu-wrapper{
    position:relative;
}

.menu-dots{
    width:42px;
    height:42px;
    border:none;
    border-radius:50%;
    background:rgba(0,0,0,0.65);
    color:#fff;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    transition:0.3s ease;
    backdrop-filter:blur(10px);
    -webkit-backdrop-filter:blur(10px);
}

.menu-dots:hover{
    background:#d4af37;
    color:#000;
    transform:scale(1.05);
}

/* =========================================
   DROPDOWN MENU
========================================= */

.dropdown-menu{
    position:absolute;
    top:54px;
    right:0;
    width:200px;
    background:#121212;
    border-radius:14px;
    border:1px solid rgba(255,255,255,0.08);
    overflow:hidden;
    display:none;
    flex-direction:column;
    z-index:999;
    box-shadow:0 15px 35px rgba(0,0,0,0.45);
    animation:fadeUp 0.25s ease;
}

.menu-wrapper.active .dropdown-menu{
    display:flex;
}

/* =========================================
   DROPDOWN LINKS
========================================= */

.dropdown-menu a{
    display:flex;
    align-items:center;
    gap:12px;
    padding:14px 18px;
    text-decoration:none;
    color:#fff;
    font-size:14px;
    transition:0.3s ease;
    border-bottom:1px solid rgba(255,255,255,0.04);
}

.dropdown-menu a:last-child{
    border-bottom:none;
}

.dropdown-menu a i{
    color:#d4af37;
    width:18px;
    text-align:center;
    font-size:15px;
}

.dropdown-menu a:hover{
    background:#1d1d1d;
    color:#d4af37;
    padding-left:22px;
}

/* =========================================
   BLOG CONTENT
========================================= */

.blog-content{
    padding:30px;
}

.category{
    color:#d4af37;
    font-size:13px;
    letter-spacing:2px;
    text-transform:uppercase;
}

.blog-content h2{
    margin:18px 0;
    font-size:30px;
    line-height:1.3;
    font-family:'Cinzel',serif;
    color:#fff;
}

.blog-content p{
    color:#bbb;
    line-height:1.8;
    margin-bottom:25px;
    font-size:15px;
}

/* =========================================
   READ MORE BUTTON
========================================= */

.read-btn{
    display:inline-block;
    background:#d4af37;
    color:#000 !important;
    padding:12px 24px;
    border-radius:10px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s ease;
}

.read-btn:hover{
    background:#fff;
    transform:translateY(-2px);
}

/* =========================================
   ANIMATION
========================================= */

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(10px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* =========================================
   MOBILE RESPONSIVE
========================================= */

@media(max-width:768px){

    .blog-grid{
        gap:28px;
    }

    .blog-card img{
        height:250px;
    }

    .blog-content{
        padding:24px;
    }

    .blog-content h2{
        font-size:24px;
    }

    .dropdown-menu{
        width:180px;
    }

    .menu-dots{
        width:38px;
        height:38px;
        font-size:16px;
    }

}



