:root {
    /* CUSTOM COLORS */
    --dark-crimson: #461e29;  /* Dark Crimson */
    --gray-orange: #c0a175;   /* Gray Orange */
    --text-dark: #333333;
    --text-light: #ffffff;
    --font-family: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    background-color: #fcf6ee;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- HEADER --- */
header.sticky-header {
    background: #fff;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    width: 100%;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- LOGO --- */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 100px;
    height: 40px;
    object-fit: contain;
}

.logo-text h3 {
    font-size: 18px;
    color: var(--dark-crimson);
    line-height: 1;
    font-weight: 700;
}

.logo-text span {
    font-size: 10px;
    letter-spacing: 1px;
    display: block;
    color: #666;
}

/* --- NAV (Desktop) --- */
nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 14px;
    transition: 0.3s;
    position: relative;
}

nav ul li a:hover {
    color: var(--dark-crimson);
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--dark-crimson);
    transition: 0.3s;
}

nav ul li a:hover::after {
    width: 100%;
}

/* --- BUTTONS --- */
.btn-primary {
    background-color: var(--dark-crimson);
    color: #fff;
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}
.btn-primary:hover {
    background-color: #5e2a37;
}

.btn-white {
    background-color: #fff;
    color: var(--text-dark);
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
}

/* --- HEADER RIGHT (Desktop) --- */
.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-info {
    font-weight: 500;
    font-size: 14px;
    color: #333;
}

.contact-info i {
    margin-right: 5px;
    color: var(--dark-crimson);
}

/* --- Mobile Only Elements (Hidden on Desktop) --- */
.mobile-header-right {
    display: none;
}

/* --- HAMBURGER BUTTON (Hidden on Desktop) --- */
/* --- HAMBURGER BUTTON --- */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 5px;
    z-index: 1001;
    position: relative;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--dark-crimson);
    border-radius: 3px;
    transition: 0.3s;
}

/* When active (menu open) - Cross icon */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}


/* --- NAV (Mobile) --- */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        position: fixed;
        top: 20px;
        right: 20px;
        z-index: 1002;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: #fff;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 1000;
        box-shadow: -5px 0 30px rgba(0,0,0,0.1);
    }
    
    nav.active {
        right: 0;
    }
    
    /* Navigation Links */
    nav ul {
        flex-direction: column;
        gap: 30px;
        text-align: center;
        margin-bottom: 40px;
    }
    
    nav ul li a {
        font-size: 24px;
        font-weight: 600;
        color: var(--dark-crimson);
        display: block;
        padding: 5px 0;
        text-decoration: none;
    }
    
    /* Mobile Header Right */
    .mobile-header-right {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        padding-top: 20px;
        border-top: 1px solid #f0f0f0;
        width: 100%;
        max-width: 280px;
    }
    
    .mobile-contact {
        font-size: 16px;
        font-weight: 500;
        color: #333;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .mobile-contact i {
        color: var(--dark-crimson);
        font-size: 18px;
    }
    
    .mobile-btn {
        width: 100%;
        padding: 14px;
        font-size: 16px;
        text-align: center;
        border-radius: 50px;
        background: var(--dark-crimson);
        color: #fff;
        text-decoration: none;
        font-weight: 500;
    }
    
    /* Hide Desktop Header Right */
    .header-right {
        display: none;
    }
    
    /* Overlay */
    .nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.4);
        z-index: 999;
        backdrop-filter: blur(5px);
    }
    
    .nav-overlay.active {
        display: block;
    }
    
    body.no-scroll {
        overflow: hidden;
    }
}


/* --- BLOG SECTION --- */
.blog-section {
    padding: 40px 40px 60px;
    background-color: #fcf6ee;
}

.blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Main Heading */
.blog-main-heading {
    text-align: center;
    margin-bottom: 40px;
}

.blog-main-heading h2 {
    font-size: 3.5rem;
    color: #461e29;
    font-weight: 400;
}

/* Layout */
.blog-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

/* --- LEFT SIDE: Blog Grid --- */
.blog-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

/* Blog Card */
.blog-card {
    background: transparent;
    border-radius: 0;
    overflow: hidden;
}

.blog-image {
    border-radius: 15px;
    overflow: hidden;
    height: 220px;
    margin-bottom: 15px;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content {
    padding: 0;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #555;
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid #461e29;
}

.blog-meta .meta-separator {
    color: #ccc;
}

.blog-meta .date {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-meta .date ion-icon {
    font-size: 14px;
}

.blog-content h3 {
    font-size: 1.1rem;
    color: #461e29;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 8px;
}

.blog-content p {
    font-size: 0.85rem;
    color: #777;
    line-height: 1.6;
    margin: 0;
}

/* Pagination */
.pagination {
    grid-column: 1 / -1;
    display: flex;
    gap: 8px;
    margin-top: 20px;
}

.page-btn {
    width: 40px;
    height: 40px;
    border-radius: 5px;
    background: #fff;
    color: #555;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s;
    border: 1px solid #e0e0e0;
}

.page-btn:hover {
    background: #f0f0f0;
}

.page-btn.active {
    background: #461e29;
    color: #fff;
    border-color: #461e29;
}

.page-btn.next {
    font-size: 16px;
}

/* --- RIGHT SIDE: Sidebar --- */
.blog-sidebar {
    padding-left: 20px;
    border-left: 1px solid #e0e0e0;
}

/* Sidebar Widget */
.sidebar-widget {
    margin-bottom: 35px;
}

.sidebar-widget h4 {
    font-size: 1rem;
    color: #461e29;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Search Widget */
.search-box {
    position: relative;
}

.search-box input {
    width: 100%;
    padding: 12px 40px 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    background: #fff;
    color: #555;
}

.search-box input:focus {
    outline: none;
    border-color: #c0a175;
}

.search-box ion-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
    font-size: 18px;
}

/* Categories Widget */
.categories-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.categories-widget ul li {
    margin-bottom: 8px;
    padding-left: 15px;
    position: relative;
}

.categories-widget ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #461e29;
    font-size: 12px;
}

.categories-widget ul li a {
    color: #555;
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
}

.categories-widget ul li a:hover {
    color: #461e29;
}

/* Recent Posts Widget */
.recent-post {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
}

.recent-img {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.recent-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-content {
    flex: 1;
}

.recent-content .recent-category {
    font-size: 10px;
    color: #461e29;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 3px;
}

.recent-content h5 {
    font-size: 0.85rem;
    color: #555;
    font-weight: 500;
    line-height: 1.3;
    margin: 0 0 3px 0;
}

.recent-content .recent-date {
    font-size: 11px;
    color: #999;
}

/* Full width recent post (bottom image) */
.recent-post.full-width {
    display: block;
    margin-top: 20px;
}

.recent-img-full {
    width: 100%;
    height: 140px;
    border-radius: 12px;
    overflow: hidden;
}

.recent-img-full img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .blog-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .blog-sidebar {
        padding-left: 0;
        border-left: none;
        border-top: 1px solid #e0e0e0;
        padding-top: 30px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .blog-main-heading h2 {
        font-size: 2.8rem;
    }
}

@media (max-width: 576px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-main-heading h2 {
        font-size: 2.2rem;
    }
    
    .blog-image {
        height: 180px;
    }
    
    .pagination {
        justify-content: center;
    }
}

/* --- WHATSAPP FLOATING BUTTON --- */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: 0.3s;
    text-decoration: none;
}

.whatsapp-btn ion-icon {
    font-size: 32px;
    color: #fff;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}


/* --- FOOTER SECTION --- */
.footer {
    background-color: #461e29; /* Dark Crimson */
    padding: 60px 20px 30px;
    border-radius: 30px 30px 0 0;
    margin: 0 20px;
    color: #fff;
    overflow: hidden;
    position: relative;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- FOOTER TOP --- */
.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1.5fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

/* Column 1: Logo & About */
.footer-col.about-col {
    max-width: 280px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo i {
    font-size: 32px;
    color: #fff;
}

.footer-logo .logo-text h3 {
    font-size: 20px;
    color: #fff;
    line-height: 1;
    font-weight: 700;
}

.footer-logo .logo-text span {
    font-size: 10px;
    letter-spacing: 1px;
    display: block;
    color: #ccc;
}

.footer-col.about-col p {
    font-size: 0.9rem;
    color: #ddd;
    line-height: 1.6;
    margin: 0;
}

/* Column Headings */
.footer-col h4 {
    color: #c0a175; /* Gray Orange */
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Contact Column */
.footer-col.contact-col .contact-item {
    margin-bottom: 15px;
}

.footer-col.contact-col .contact-item p {
    font-size: 0.9rem;
    color: #ddd;
    line-height: 1.5;
    margin: 0;
}

.footer-col.contact-col .contact-item .highlight {
    color: #c0a175; /* Gray Orange */
    font-size: 0.9rem;
    display: block;
    margin-top: 3px;
    font-weight: 500;
}

/* Links & Follow Columns */
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #ddd;
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #c0a175;
}

/* --- FOOTER BOTTOM - BIG TEXT --- */
.footer-bottom {
    position: relative;
    margin-top: 20px;
    padding-bottom: 0;
}

.big-text {
    font-size: 17rem;
    font-weight: 700;
    color: #c0a175; /* Very transparent Gray Orange */
    line-height: 0.8;
    letter-spacing: -5px;
    text-align: left;
    transform: translateY(20px);
    user-select: none;
    font-family: 'Poppins', sans-serif;
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .footer {
        border-radius: 20px 20px 0 0;
        margin: 0 10px;
    }
    
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .footer-col.about-col {
        grid-column: 1 / -1;
        max-width: 100%;
    }
    
    .big-text {
        font-size: 10rem;
    }
}

@media (max-width: 576px) {
    .footer {
        border-radius: 15px 15px 0 0;
        margin: 0 5px;
        padding: 40px 15px 0;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-col.about-col {
        max-width: 100%;
    }
    
    .big-text {
        font-size: 6rem;
        letter-spacing: -2px;
        transform: translateY(10px);
    }
}