/*
Theme Name: Awura
Theme URI: https://example.com/awura
Author: Your Name
Author URI: https://example.com
Description: Awura is a clean and modern WordPress theme suitable for blogs, portfolios, and business websites.
Version: 1.0.0
Requires at least: 5.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: awura
Tags: blog, portfolio, business, clean, modern, responsive
*/

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    background-color: #f9f9f9;
}

a {
    color: #2563eb;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===== LAYOUT ===== */
.awura-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.awura-wrapper {
    display: flex;
    gap: 40px;
    padding: 40px 0;
}

.awura-main {
    flex: 1;
    min-width: 0;
}

.awura-sidebar {
    width: 300px;
    flex-shrink: 0;
}

/* ===== HEADER ===== */
.awura-header {
    background: #1e293b;
    color: #fff;
    padding: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.awura-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.awura-site-title {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.awura-site-title a {
    color: #fff;
    text-decoration: none;
}

.awura-site-tagline {
    font-size: 0.85rem;
    color: #94a3b8;
    margin-top: 2px;
}

/* ===== NAVIGATION ===== */
.awura-nav ul {
    list-style: none;
    display: flex;
    gap: 8px;
}

.awura-nav ul li a {
    color: #cbd5e1;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 0.95rem;
    transition: background 0.2s, color 0.2s;
    display: block;
}

.awura-nav ul li a:hover,
.awura-nav ul li.current-menu-item a {
    background: #2563eb;
    color: #fff;
    text-decoration: none;
}

/* ===== MOBILE MENU ===== */
.awura-menu-toggle {
    display: none;
    background: none;
    border: 1px solid #475569;
    color: #fff;
    padding: 8px 14px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1.2rem;
}

/* ===== HERO / FRONT PAGE ===== */
.awura-hero {
    background: linear-gradient(135deg, #1e293b 0%, #2563eb 100%);
    color: #fff;
    text-align: center;
    padding: 80px 20px;
}

.awura-hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
}

.awura-hero p {
    font-size: 1.2rem;
    color: #bfdbfe;
    max-width: 600px;
    margin: 0 auto 32px;
}

.awura-btn {
    display: inline-block;
    background: #fff;
    color: #2563eb;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.awura-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    text-decoration: none;
}

/* ===== POSTS ===== */
.awura-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
    margin-top: 20px;
}

.awura-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.07);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.awura-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.awura-card-thumb img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.awura-card-body {
    padding: 20px;
}

.awura-card-meta {
    font-size: 0.8rem;
    color: #64748b;
    margin-bottom: 8px;
}

.awura-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
}

.awura-card-title a {
    color: #1e293b;
}

.awura-card-title a:hover {
    color: #2563eb;
    text-decoration: none;
}

.awura-card-excerpt {
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.6;
}

.awura-read-more {
    display: inline-block;
    margin-top: 12px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #2563eb;
}

/* ===== SINGLE POST ===== */
.awura-single-post {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.07);
}

.awura-post-header {
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e2e8f0;
}

.awura-post-title {
    font-size: 2rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.3;
    margin-bottom: 12px;
}

.awura-post-meta {
    font-size: 0.875rem;
    color: #64748b;
}

.awura-post-content {
    font-size: 1rem;
    line-height: 1.8;
    color: #374151;
}

.awura-post-content h2,
.awura-post-content h3 {
    margin: 28px 0 12px;
    color: #1e293b;
}

.awura-post-content p {
    margin-bottom: 18px;
}

.awura-post-content ul,
.awura-post-content ol {
    padding-left: 24px;
    margin-bottom: 18px;
}

/* ===== SIDEBAR ===== */
.awura-widget {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.07);
}

.awura-widget-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid #2563eb;
}

/* ===== FOOTER ===== */
.awura-footer {
    background: #1e293b;
    color: #94a3b8;
    text-align: center;
    padding: 32px 20px;
    margin-top: 60px;
    font-size: 0.875rem;
}

.awura-footer a {
    color: #60a5fa;
}

/* ===== PAGINATION ===== */
.awura-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.awura-pagination .page-numbers {
    padding: 8px 16px;
    border-radius: 6px;
    background: #fff;
    color: #2563eb;
    border: 1px solid #e2e8f0;
    font-size: 0.9rem;
}

.awura-pagination .page-numbers.current,
.awura-pagination .page-numbers:hover {
    background: #2563eb;
    color: #fff;
    border-color: #2563eb;
    text-decoration: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .awura-wrapper {
        flex-direction: column;
    }

    .awura-sidebar {
        width: 100%;
    }

    .awura-menu-toggle {
        display: block;
    }

    .awura-nav {
        display: none;
        width: 100%;
    }

    .awura-nav.is-open {
        display: block;
    }

    .awura-nav ul {
        flex-direction: column;
        padding: 12px 0;
    }

    .awura-hero h1 {
        font-size: 2rem;
    }

    .awura-single-post {
        padding: 24px;
    }

    .awura-post-title {
        font-size: 1.5rem;
    }

    .awura-header-inner {
        flex-wrap: wrap;
        gap: 12px;
    }
}


.hero-btn{width: 242px;
    height: 50px;
    gap: 6px;
    top: 5px;
    right: 5px;
    position: absolute;
    border-radius: 50px;
    align-items: center;
    display: inline-flex;
    justify-content: center;
    color: var(--white-color);
    background-color: var(--bottle-green-color)
	

}