/*
Theme Name: Coffee Blend
Theme URI: https://example.com/coffee-blend
Author: Antigravity
Author URI: https://example.com
Description: A professional, responsive, and SEO friendly WordPress theme for coffee shops and cafes, built with Bootstrap 5.
Version: 1.0
Requires at least: 5.0
Tested up to: 6.3
Requires PHP: 7.2
Text Domain: coffee-blend
Tags: blog, custom-colors, custom-menu, featured-images, flexible-header, full-width-template, theme-options, translation-ready
*/

/* Custom Styles */
:root {
    --primary-color: #6F4E37; /* Coffee Brown */
    --secondary-color: #D2B48C; /* Tan */
    --accent-color: #F5F5DC; /* Beige/Cream */
    --dark-color: #2C1A0D; /* Dark Espresso */
    --text-color: #333333;
    --light-color: #FAFAFA;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    background-color: var(--light-color);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--dark-color);
    font-weight: 700;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

/* Navbar */
.navbar-custom {
    background-color: var(--dark-color);
    padding: 1rem 0;
}

.navbar-custom .navbar-brand {
    color: var(--accent-color);
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: bold;
}

.navbar-custom .nav-link {
    color: var(--accent-color);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-left: 15px;
    transition: color 0.3s;
}

.navbar-custom .nav-link:hover, .navbar-custom .nav-link.active {
    color: var(--secondary-color);
}

.navbar-toggler-icon {
    filter: invert(1);
}

/* Hero Section */
.hero-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(44, 26, 13, 0.6);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--accent-color);
    font-weight: 300;
}

.btn-custom {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-size: 1.1rem;
    border-radius: 30px;
    transition: background-color 0.3s, transform 0.3s;
}

.btn-custom:hover {
    background-color: var(--secondary-color);
    color: var(--dark-color);
    transform: translateY(-2px);
}

/* Sections */
.section-padding {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 15px auto 0;
}

/* Cards (Services / Products) */
.coffee-card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    background-color: #fff;
    height: 100%;
}

.coffee-card:hover {
    transform: translateY(-10px);
}

.coffee-card .card-body {
    padding: 30px;
    text-align: center;
}

.coffee-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Posts / Blog */
.post-card {
    margin-bottom: 30px;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    background-color: #fff;
}

.post-card img {
    width: 100%;
    height: auto;
}

.post-content {
    padding: 20px;
}

.post-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.post-title a {
    color: var(--dark-color);
}

.post-title a:hover {
    color: var(--primary-color);
}

.post-meta {
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 15px;
}

/* Footer */
.footer-custom {
    background-color: var(--dark-color);
    color: var(--accent-color);
    padding: 50px 0 20px;
}

.footer-custom a {
    color: var(--secondary-color);
}

.footer-custom a:hover {
    color: #fff;
}

.footer-title {
    color: #fff;
    margin-bottom: 20px;
}

.social-icons a {
    display: inline-block;
    margin-right: 15px;
    font-size: 1.2rem;
}
