/*
Theme Name: Czajka Ranch
Theme URI: https://czajkaranch.com
Description: Custom tropical rustic theme for Czajka Ranch, Kona Coast Hawaii
Author: Czajka Ranch
Author URI: https://czajkaranch.com
Version: 1.0
*/

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

body {
    font-family: 'Montserrat', sans-serif;
    color: #2d2d2d;
    line-height: 1.6;
}

.hero {
    background: linear-gradient(135deg, #1a4d2e 0%, #2d5f3f 100%);
    color: white;
    padding: 120px 20px 80px;
    text-align: center;
}

.hero h1 {
    font-family: 'Merriweather', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    opacity: 0.95;
}

.cta-button {
    background: #ff9933;
    color: white;
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255,153,51,0.3);
}

.cta-button:hover {
    background: #e68a2e;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255,153,51,0.4);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

.section-title {
    font-family: 'Merriweather', serif;
    font-size: 2.5rem;
    color: #1a4d2e;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #ff9933;
    border-radius: 2px;
}

.grid {
    display: grid;
    gap: 2rem;
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid #f0f0f0;
}

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

.card h3 {
    font-family: 'Merriweather', serif;
    font-size: 1.5rem;
    color: #1a4d2e;
    margin-bottom: 0.5rem;
}

.card .availability {
    display: inline-block;
    font-size: 0.85rem;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 1rem;
    font-weight: 600;
}

.card .available {
    background: #d4edda;
    color: #155724;
}

.card .seasonal {
    background: #fff3cd;
    color: #856404;
}

.card .limited {
    background: #f8d7da;
    color: #721c24;
}

.card p {
    color: #555;
    line-height: 1.8;
}

.eggs-banner {
    background: linear-gradient(135deg, #ff9933 0%, #ffb366 100%);
    color: white;
    padding: 40px 20px;
    text-align: center;
    margin: 60px 0;
}

.eggs-banner h2 {
    font-family: 'Merriweather', serif;
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.eggs-banner p {
    font-size: 1.2rem;
    opacity: 0.95;
}

.about-section {
    background: #f9faf8;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.9;
    color: #444;
}

.about-content p {
    margin-bottom: 1.5rem;
}

.contact-section {
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info h3 {
    font-family: 'Merriweather', serif;
    font-size: 1.8rem;
    color: #1a4d2e;
    margin-bottom: 1.5rem;
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #555;
}

.contact-info a {
    color: #ff9933;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #e68a2e;
    text-decoration: underline;
}

.contact-form {
    background: #f9faf8;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2d2d2d;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff9933;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-button {
    background: #1a4d2e;
    color: white;
    padding: 14px 32px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-button:hover {
    background: #2d5f3f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26,77,46,0.3);
}

footer {
    background: #1a4d2e;
    color: white;
    text-align: center;
    padding: 40px 20px;
}

footer p {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

footer a {
    color: #ff9933;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
}
