* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #000;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}


.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 11px 40px;
    background: linear-gradient(90deg, #a09f9f, #a09f9f, #c8a165);
    color: #fff;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-links {
    transition: all 0.3s ease;
}

.logo {
    font-size: 20px;
    font-weight: bold;
}

/* MENU */
.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #f5c542;
}
/* HAMBURGER */
.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
}

/* MOBILE */
@media (max-width: 768px) {

    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 60px;
        right: 0;
        width: 100%;
        background: #111;
        flex-direction: column;
        align-items: center;
        display: none;
    }

    .nav-links li {
        margin: 15px 0;
    }

    .nav-links.active {
        display: flex;
    }
}

.logo {
    font-size: 28px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #1e8f4c;
    letter-spacing: 2px;
}

.logo span {
    font-family: 'Playfair Display', serif;
    display: block;
    font-size: 14px;
    font-style: italic;
    color: #ccc;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #1e8f4c;
}


/* FOOTER */
.footer {
    background: linear-gradient(90deg, #a09f9f84, #a09f9f89, #c8a0658d);
    border-top: 1px solid gray;
    color: #fff;
    padding: 40px 20px 10px;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-left h3,
.footer-right h3 {
    margin-bottom: 10px;
    margin-right: 60px;
    color: #f5c542;
}

.footer-left p {
    line-height: 1.6;
    font-size: 14px;
}

.footer-right ul {
    list-style: none;
    padding: 0;
}

.footer-right ul li {
    margin-bottom: 8px;
}

.footer-right ul li a {
    color: #ddd;
    text-decoration: none;
    transition: 0.3s;
}

.footer-right ul li a:hover {
    color: #f5c542;
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    margin-top: 0px;
    padding-top: 10px;
    font-size: 14px;
}

a {
    text-decoration: none;
    color: white;
}




/* GOOGLE FONT */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* BLOG SECTION CONTAINER */
.blog-container {
    width: 90%;
    margin: 60px auto;
    margin-top: 150px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* BLOG CARD */
.ec {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
}

/* HOVER EFFECT */
.ec:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* LINK */
.ec a {
    text-decoration: none;
    color: #222;
    display: block;
}

/* IMAGE */
.ec img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

/* IMAGE ZOOM */
.ec:hover img {
    transform: scale(1.05);
}

/* TITLE */
.ec h3 {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.5;
    padding: 22px;
    color: #222;
    transition: color 0.3s ease;
}

/* TITLE HOVER */
.ec:hover h3 {
    color: #b8860b;
}

/* OPTIONAL BLOG LABEL */
.ec::before {
    content: "BLOG";
    position: absolute;
    top: 15px;
    left: 15px;
    background: #b8860b;
    color: white;
    padding: 6px 14px;
    font-size: 12px;
    letter-spacing: 1px;
    border-radius: 30px;
    z-index: 2;
    font-weight: bold;
}

/* RESPONSIVE */
@media(max-width: 768px){

    .blog-container{
        width: 95%;
        gap: 20px;
    }

    .ec img{
        height: 220px;
    }

    .ec h3{
        font-size: 19px;
        padding: 18px;
    }
}

@media(max-width: 480px){

    .ec img{
        height: 200px;
    }

    .ec h3{
        font-size: 17px;
        line-height: 1.4;
    }
}