@charset "UTF-8";
/* ==========================================================================
   SHABDSETU Categories Page - categories.css
   ========================================================================== */

.active-link {
    color: #ffffff !important;
    border-bottom: 2px solid #e2691f;
    padding-bottom: 4px;
}
body
{
	background-color:#F9ECD9;
}

/* ============================= HERO ============================= */
.cat-hero {
    width: 100%;
    min-height: 75vh;               /* 80% of viewport height */
    background: url("../IMG/categori1.png") center center / cover no-repeat;
    display: flex;
    align-items: center;
    border-bottom: 4px solid #5c3a22;
}

.cat-hero-inner {
    max-width: 1200px;
    margin: 0 300px;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
}

.cat-hero-text {
    flex: 1;
    max-width: 6500px;
}

.cat-hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #FFF8EF;
    margin-bottom: 18px;
}

.cat-hero-text p {
    font-size: 17px;
    line-height: 1.8;
    color:#FFF8EF;
    margin-bottom: 30px;
}

.cat-hero-search {
    display: flex;
    align-items: center;
    background: #fff;
    border: 2px solid #d9c9ae;
    border-radius: 10px;
    padding: 15px 22px;
    max-width: 800px;
    transition: all .3s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.cat-hero-search:hover,
.cat-hero-search:focus-within {
    border-color: #b45f06;
    box-shadow: 0 10px 28px rgba(180,95,6,.15);
}

.cat-hero-search i {
    color: #b45f06;
    font-size: 18px;
    margin-right: 12px;
}

.cat-hero-search input {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: #3d2b1f;
}

.cat-hero-search input::placeholder {
    color: #9b8873;
}


/* Tablet */
@media (max-width: 992px) {
    .cat-hero {
        padding: 60px 0;
    }

    .cat-hero-inner {
        flex-direction: column-reverse;
        text-align: center;
        gap: 40px;
    }

    .cat-hero-text {
        max-width: 100%;
    }

    .cat-hero-search {
        margin: auto;
    }

    .cat-hero-text h1 {
        font-size: 40px;
    }

   
}

/* Mobile */
@media (max-width: 576px) {
    .cat-hero {
        padding: 50px 0;
    }

    .cat-hero-inner {
        padding: 0 20px;
    }

    .cat-hero-text h1 {
        font-size: 32px;
    }

    .cat-hero-text p {
        font-size: 15px;
    }

    .cat-hero-search {
        padding: 13px 18px;
    }

    .cat-hero-image img {
        max-width: 260px;
    }
}
/* ============================= CATEGORY GRID ============================= */
.cat-grid-section {
    width: 100%;
    margin: 60px auto;
    padding: 0 30px;
}

.cat-grid-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Category Headings */
.section-heading {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: #3d2b1f;
    margin: 45px 0 25px;
    position: relative;
    padding-bottom: 10px;
}

/* Remove top margin from first heading */
.section-heading:first-child {
    margin-top: 0;
}

/* Decorative underline */
.section-heading::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 70px;
    height: 4px;
    background: #b45f06;
    border-radius: 20px;
}

.cat-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-bottom: 30px;
}

.cat-card {
    border-radius: 14px;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.cat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.cat-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: white;
}

.cat-card p {
    font-size: 14px;
    color:#ffffff;
    line-height: 1.5;
}
/* Category Icon */
.cat-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;

    background: #FFF8EF;
    border: 2px solid rgba(255, 255, 255, 0.35);

    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.22);

    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.cat-icon i {
    font-size: 24px;
    color: #B4592E; /* burnt terracotta, ties back to your card palette */
}

.cat-card:hover .cat-icon {
    transform: translateY(-4px) rotate(-4deg) scale(1.06);
    background: #FFD27A; /* matches your footer accent */
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.3);
}

.cat-card:hover .cat-icon i {
    color: #3B1E0E; /* deep espresso, matches footer gradient dark end */
}

@media (max-width: 992px) {
    .cat-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {

    .cat-grid-inner {
        padding: 0 20px;
    }

    .cat-cards-grid {
        grid-template-columns: 1fr;
    }

    .section-heading {
        font-size: 24px;
    }
}
.footer{

    background:linear-gradient(180deg,#6E3C18,#3B1E0E);

    color:#fff;

}

.footer-container{
	

    max-width:1300px;

    display:grid;

    grid-template-columns:2fr 1fr 1fr 2fr;

    gap:45px;

}

.footer-logo{

    font-size:32px;

    color:#FFD27A;

    margin-bottom:15px;

}

.footer-logo i{

    margin-right:8px;

}

.footer-about{

    color:#ddd;

    line-height:1.8;

    margin-bottom:25px;

}

.footer-column h3{

    color:#FFD27A;

    margin-bottom:20px;

    font-size:20px;

}

.footer-column ul{

    list-style:none;

}

.footer-column ul li{

    margin-bottom:12px;

}

.footer-column ul li a{

    color:#ddd;

    text-decoration:none;

    transition:.3s;

}

.footer-column ul li a:hover{

    color:#FFD27A;

    padding-left:6px;

}

.social-icons{

    display:flex;

    gap:12px;

}

.social-icons a{

    width:42px;

    height:42px;

    border-radius:50%;

    background:rgba(255,255,255,.1);

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    transition:.3s;

}

.social-icons a:hover{

    background:#FFD27A;

    color:#3B1E0E;

    transform:translateY(-5px);

}

.newsletter{

    display:flex;

    margin-top:20px;

}

.newsletter input{

    flex:1;

    padding:14px;

    border:none;

    outline:none;

    border-radius:8px 0 0 8px;

}

.newsletter button{

    padding:14px 24px;

    border:none;

    background:#FFD27A;

    color:#3B1E0E;

    font-weight:600;

    cursor:pointer;

    border-radius:0 8px 8px 0;

    transition:.3s;

}

.newsletter button:hover{

    background:#F4B942;

}

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.15);

    text-align:center;

    padding:22px;

    color:#ddd;

}
/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1024px) {
    .cat-hero-inner {
        flex-direction: column;
        text-align: center;
    }
    .cat-hero-search {
        margin: 0 auto;
    }
    .cat-hero-image {
        max-width: 320px;
    }
    .cat-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 700px) {
    .cat-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .cat-hero-text h1 {
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    .cat-cards-grid {
        grid-template-columns: 1fr;
    }
    .cat-hero {
        padding: 40px 0 30px;
    }
    .cat-grid-inner,
    .cat-hero-inner {
        padding: 0 20px;
    }
}

/* =====================================================
   PREMIUM CATEGORY PAGINATION
   ===================================================== */

#categoryPagination {
    width: 100%;

    display: flex;
    justify-content: center;
    align-items: center;

    gap: 10px;

    margin-top: 45px;
    margin-bottom: 30px;

    padding: 10px 0;

    box-sizing: border-box;
}


/* =====================================================
   PAGE NUMBER + ARROW BUTTONS
   ===================================================== */

#categoryPagination .page-num,
#categoryPagination .page-arrow {

    width: 42px;
    height: 42px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 0;

    border: 1px solid #d8b98d;

    border-radius: 10px;

    background: #fffaf2;

    color: #5c3a22;

    font-family: "Poppins", sans-serif;

    font-size: 14px;

    font-weight: 600;

    cursor: pointer;

    transition: all 0.25s ease;

    box-sizing: border-box;
}


/* =====================================================
   HOVER EFFECT
   ===================================================== */

#categoryPagination .page-num:hover,
#categoryPagination .page-arrow:hover:not(:disabled) {

    background: #7a4526;

    color: #ffffff;

    border-color: #7a4526;

    transform: translateY(-2px);

    box-shadow:
        0 6px 15px rgba(92, 58, 34, 0.20);
}


/* =====================================================
   ACTIVE PAGE
   ===================================================== */

#categoryPagination .page-num.active {

    background: #6e3f21;

    color: #ffffff;

    border-color: #6e3f21;

    box-shadow:
        0 5px 14px rgba(92, 58, 34, 0.22);
}


/* =====================================================
   ARROW
   ===================================================== */

#categoryPagination .page-arrow {

    font-size: 14px;
}


/* =====================================================
   DISABLED ARROW
   ===================================================== */

#categoryPagination .page-arrow:disabled {

    opacity: 0.45;

    cursor: not-allowed;

    transform: none;

    box-shadow: none;
}


/* =====================================================
   MOBILE RESPONSIVE
   ===================================================== */

@media (max-width: 600px) {

    #categoryPagination {

        gap: 7px;

        margin-top: 30px;

    }


    #categoryPagination .page-num,
    #categoryPagination .page-arrow {

        width: 38px;

        height: 38px;

        font-size: 13px;

        border-radius: 8px;

    }

}