/* Lewis Pecking Paradise - Farm Style */

:root {
    --primary: #5a7d3a;
    --primary-dark: #4a6a2e;
    --secondary: #f4a460;
    --accent: #87ceeb;
    --bg: #fafaf8;
    --text: #333;
    --light-text: #666;
    --white: #fff;
    --shadow: 0 4px 15px rgba(0,0,0,0.1);
}

* {    
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.8;
}

/* Hero Banner */
.hero-banner {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?w=1200');
    background-size: cover;
    background-position: center;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
    background-size: cover;
    background-position: center;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.cta-button {
    background: var(--secondary);
    color: var(--text);
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.3s;
}

.cta-button:hover {
    transform: scale(1.05);
}

/* Main sections */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1rem;
}

section {
    margin-bottom: 4rem;
}

h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary);
}

/* About */
.about-section {
    text-align: center;
    padding: 2rem;
}
.about-section p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.gallery-item p {
    text-align: center;
    margin-top: 1rem;
    font-weight: bold;
    color: var(--primary);
}

/* Tracker */
.tracker-section {
    background: var(--white);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
}

.tracker-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}
.tracker-card {
    background: var(--bg);
    padding: 2rem 3rem;
    border-radius: 10px;
    text-align: center;
}

.tracker-card .count {
    display: block;
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary);
}
.tracker-card.highlight {
    background: var(--primary);
    color: white;
}

.tracker-card.highlight .count {
    color: white;
}

/* Features */
.features-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}

.feature {
    padding: 2rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.feature h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

/* Live Stream */
.stream-section {
    text-align: center;
}

.stream-box {
    background: #333;
    color: white;
    padding: 4rem 2rem;
    border-radius: 10px;
}

.stream-box span {
    display: inline-block;
    background: var(--secondary);
    color: var(--text);
        padding: 0.5rem 1rem;
    border-radius: 5px;
    margin-top: 1rem;
    font-weight: bold;
}

/* Footer */
footer {
    background: var(--primary-dark);
    color: white;
    text-align: center;
    padding: 2rem;
    margin-top: 3rem;
}
/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .tracker-grid {
        flex-direction: column;
        align-items: center;
    }
}