/* Lone Star Leaf Litter - Main Stylesheet */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Navigation */
.main-nav {
    background: #000;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    font-family: 'Bebas Neue', 'Oswald', sans-serif;
    font-size: 1.5rem;
    color: white;
    text-decoration: none;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #FF9900;
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Header */
.header {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: white;
    padding: 3rem 1rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '★';
    position: absolute;
    font-size: 15rem;
    opacity: 0.05;
    top: -2rem;
    right: -3rem;
    transform: rotate(15deg);
}

.header::after {
    content: '★';
    position: absolute;
    font-size: 10rem;
    opacity: 0.05;
    bottom: -2rem;
    left: -2rem;
    transform: rotate(-15deg);
}

.header h1 {
    font-family: 'Bebas Neue', 'Oswald', sans-serif;
    font-size: 4rem;
    margin-bottom: 0.5rem;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
    letter-spacing: 3px;
    position: relative;
    z-index: 1;
}

.mobile-break {
    display: none;
}

.star-icon {
    font-size: 3rem;
    display: inline-block;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.header .tagline {
    font-size: 1.3rem;
    opacity: 0.95;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* Blog Article Styles */
.blog-post {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 1rem;
}

.blog-post h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #000;
}

.blog-meta {
    color: #666;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #eee;
}

.blog-content h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    margin: 2rem 0 1rem 0;
    color: #000;
}

.blog-content h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    margin: 1.5rem 0 1rem 0;
    color: #000;
}

.blog-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.blog-content ul, .blog-content ol {
    margin-bottom: 1.5rem;
    margin-left: 2rem;
}

.blog-content li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.blog-content strong {
    color: #000;
    font-weight: 600;
}

/* CTA Boxes */
.cta-box {
    background: #f5f5f5;
    border-left: 5px solid #000;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
}

.cta-box h3 {
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    background: #FF9900;
    color: #000;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    border: 2px solid #FF9900;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.btn:hover {
    background: #FFB84D;
    border-color: #FFB84D;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.btn-black {
    background: #000;
    color: white;
    border-color: #000;
}

.btn-black:hover {
    background: #333;
    border-color: #333;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.blog-card {
    background: white;
    border: 3px solid #000;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.blog-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.blog-card p {
    color: #666;
    margin-bottom: 1rem;
}

.blog-card a {
    color: #000;
    text-decoration: none;
    font-weight: bold;
}

/* Footer */
.footer {
    background: #000;
    color: white;
    text-align: center;
    padding: 3rem 1rem;
    border-top: 5px solid #1a1a1a;
    margin-top: 4rem;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.footer h3 {
    font-family: 'Bebas Neue', 'Oswald', sans-serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.footer p {
    opacity: 0.8;
    margin: 0.5rem 0;
}

.footer-divider {
    height: 2px;
    background: rgba(255,255,255,0.2);
    margin: 2rem auto;
    max-width: 200px;
}

/* Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #000;
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
    }

    .nav-links.active {
        display: flex;
    }

    .header h1 {
        font-size: 1.8rem;
        line-height: 1.3;
        padding: 0 1rem;
    }

    .mobile-break {
        display: block;
    }

    .star-icon {
        font-size: 2.5rem;
        display: block;
        margin: 0.3rem auto;
    }

    .header .tagline {
        font-size: 0.85rem;
        padding: 0 1rem;
    }

    .blog-post h1 {
        font-size: 1.8rem;
    }

    .logo-container {
        max-width: 100%;
        overflow: hidden;
    }
}
