/* ============================================
   BUCKEYE BEAN OIL LLC - BeanOil.com
   Professional Industrial Website Styling
   ============================================ */

/* --- CSS Variables for Consistent Branding --- */
:root {
    --primary-green: #2e7d32;
    --dark-green: #1b5e20;
    --accent-green: #4caf50;
    --light-green: #c8e6c9;
    --industrial-dark: #1a1a1a;
    --industrial-gray: #2d2d2d;
    --steel-gray: #424242;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --text-dark: #212121;
    --text-light: #757575;
    --gold-accent: #ffc107;
    --warning-orange: #ff9800;
}

/* --- Global Reset and Typography --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto Condensed', Arial, sans-serif;
    background-color: var(--light-gray);
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 16px;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4 {
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
}

h2 {
    font-size: 2.5rem;
    color: var(--dark-green);
}

h3 {
    font-size: 1.5rem;
    color: var(--industrial-dark);
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-green);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--dark-green);
}

strong {
    color: var(--dark-green);
}

/* --- Header and Navigation --- */
header {
    background: linear-gradient(135deg, var(--industrial-dark) 0%, var(--industrial-gray) 100%);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 20px;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo a {
    font-size: 1.8rem;
    font-weight: 700;
    font-family: 'Oswald', sans-serif;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 1px;
}

.logo .domain {
    font-size: 0.9rem;
    color: var(--accent-green);
    font-weight: 400;
    letter-spacing: 2px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 5px;
}

nav ul li a {
    color: var(--white);
    text-decoration: none;
    padding: 12px 18px;
    display: block;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
    background-color: var(--primary-green);
    color: var(--white);
}

.header-cta {
    display: none;
}

/* --- CTA Button Styling --- */
.cta-button {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    color: var(--white);
    padding: 14px 28px;
    text-decoration: none;
    font-weight: 700;
    font-family: 'Oswald', sans-serif;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
}

.cta-button:hover {
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--primary-green) 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(46, 125, 50, 0.4);
    color: var(--white);
}

.large-cta {
    font-size: 1.2rem;
    padding: 18px 40px;
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    min-height: 750px;
    background:
        linear-gradient(to left, rgba(26, 26, 26, 0.9) 0%, rgba(26, 26, 26, 0.5) 40%, rgba(27, 94, 32, 0.15) 100%),
        url('images/jeep-soybean-field.jpg') 15% center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    text-align: left;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(76, 175, 80, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(76, 175, 80, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 193, 7, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, var(--white), transparent);
    pointer-events: none;
}

.hero-overlay {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 60px 20px;
}

.hero-content {
    max-width: 500px;
    position: relative;
    z-index: 1;
    margin-right: 5%;
}

.hero-content h1 {
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--light-green);
    margin-bottom: 15px;
    font-weight: 400;
}

.hero-tagline {
    color: var(--accent-green);
    font-size: 2rem;
    margin-bottom: 40px;
    font-weight: 400;
}

/* --- Section Styling --- */
.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-green));
    border-radius: 2px;
}

/* --- Vision Section --- */
.vision-section {
    padding: 80px 0;
    background-color: var(--white);
}

.vision-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.text-block p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.stat-block {
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.stat-item {
    text-align: center;
    padding: 15px;
}

.stat-item h3 {
    font-size: 2.8rem;
    color: var(--primary-green);
    margin-bottom: 5px;
    font-weight: 700;
}

.stat-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.status-box {
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
    color: var(--text-dark);
    padding: 20px 25px;
    border-left: 5px solid var(--warning-orange);
    border-radius: 0 8px 8px 0;
    font-size: 1.05rem;
}

.status-box .status-label {
    font-weight: 700;
    color: var(--warning-orange);
}

.status-box a {
    color: var(--primary-green);
    font-weight: 700;
}

/* --- Advantage Teaser Section --- */
.advantage-teaser {
    background: linear-gradient(135deg, var(--industrial-dark) 0%, var(--steel-gray) 100%);
    position: relative;
    overflow: hidden;
}

.advantage-teaser::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(45deg, transparent 45%, rgba(76, 175, 80, 0.05) 50%, transparent 55%),
        linear-gradient(-45deg, transparent 45%, rgba(76, 175, 80, 0.05) 50%, transparent 55%);
    background-size: 30px 30px;
}

.advantage-overlay {
    position: relative;
    z-index: 1;
}

.teaser-content {
    text-align: center;
    padding: 100px 0;
    color: var(--white);
}

.teaser-content h2 {
    color: var(--white);
    margin-bottom: 30px;
}

.teaser-content p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #e0e0e0;
}

.teaser-content strong {
    color: var(--accent-green);
}

/* --- Quick Facts Section --- */
.quick-facts {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.fact-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-bottom: 4px solid transparent;
}

.fact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-bottom-color: var(--primary-green);
}

.fact-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: block;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- Image Placeholders --- */
.image-placeholder {
    background: linear-gradient(135deg, #e8e8e8 0%, #d0d0d0 100%);
    border: 3px dashed #bdbdbd;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border: 4px solid #bdbdbd;
    border-radius: 8px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23999'%3E%3Cpath d='M21 19V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2zM8.5 13.5l2.5 3.01L14.5 12l4.5 6H5l3.5-4.5z'/%3E%3C/svg%3E") center/50% no-repeat;
}

.image-placeholder-text {
    position: relative;
    z-index: 1;
    margin-top: 60px;
    color: #757575;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Decorative Elements --- */
.leaf-decoration {
    position: absolute;
    opacity: 0.1;
    pointer-events: none;
}

.floating-element {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* --- Photo Gallery Grid --- */
.photo-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.photo-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    aspect-ratio: 4/3;
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.photo-item:hover img {
    transform: scale(1.1);
}

.photo-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 30px 15px 15px;
    font-size: 0.9rem;
    font-weight: 600;
}

.fact-card h3 {
    margin-bottom: 15px;
    color: var(--dark-green);
}

.fact-card p {
    color: var(--text-light);
    margin: 0;
    font-size: 1rem;
}

/* --- Footer --- */
footer {
    background: linear-gradient(135deg, var(--industrial-dark) 0%, #0d0d0d 100%);
    color: #bdbdbd;
    padding: 50px 0 30px;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.footer-brand h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.footer-domain {
    color: var(--accent-green);
    font-size: 1rem;
    letter-spacing: 2px;
}

.footer-info {
    text-align: center;
}

.footer-info p {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.footer-note {
    color: var(--warning-orange);
    font-weight: 700;
    margin-top: 15px;
}

.footer-legal {
    text-align: right;
    font-size: 0.85rem;
    color: #757575;
}

/* --- Page-Specific Styles --- */
.page-header {
    background: linear-gradient(135deg, var(--industrial-dark) 0%, var(--dark-green) 100%);
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-header p {
    color: var(--light-green);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.content-section {
    padding: 80px 0;
    background: var(--white);
}

.content-section:nth-child(even) {
    background: var(--light-gray);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-text h2 {
    text-align: left;
    margin-bottom: 25px;
}

.content-text h2::after {
    left: 0;
    transform: none;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 12px 0;
    padding-left: 35px;
    position: relative;
    font-size: 1.05rem;
    border-bottom: 1px solid #e0e0e0;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: 700;
    font-size: 1.2rem;
}

.info-box {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 12px;
    border-left: 5px solid var(--primary-green);
}

.info-box h3 {
    color: var(--dark-green);
    margin-bottom: 15px;
}

/* --- Contact Page Styles --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info-block {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-info-block h3 {
    color: var(--dark-green);
    margin-bottom: 25px;
    font-size: 1.8rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e0e0e0;
}

.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-icon {
    font-size: 1.5rem;
    margin-right: 20px;
    color: var(--primary-green);
}

.contact-details h4 {
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.contact-details p {
    color: var(--text-light);
    margin: 0;
    font-size: 1rem;
}

.map-placeholder {
    background: linear-gradient(135deg, var(--light-gray) 0%, #e0e0e0 100%);
    height: 100%;
    min-height: 400px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
}

.map-placeholder p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* --- About Page Styles --- */
.founders-section {
    background: var(--white);
    padding: 80px 0;
}

.founder-card {
    background: var(--light-gray);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.founder-photo {
    margin-bottom: 25px;
}

.founder-photo img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--primary-green);
    box-shadow: 0 10px 30px rgba(46, 125, 50, 0.3);
}

.founder-card h3 {
    color: var(--dark-green);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.founder-card .title {
    color: var(--primary-green);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* --- Biodiesel Showcase Section --- */
.biodiesel-showcase {
    position: relative;
    min-height: 450px;
    background:
        linear-gradient(135deg, rgba(26, 26, 26, 0.6) 0%, rgba(27, 94, 32, 0.7) 100%),
        url('images/jeep-soybean-field.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
}

.showcase-overlay {
    width: 100%;
    padding: 80px 0;
}

.showcase-content {
    max-width: 700px;
    text-align: left;
}

.showcase-content h2 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.showcase-content p {
    color: var(--light-green);
    font-size: 1.3rem;
    line-height: 1.8;
}

/* --- Soybean Field Banner --- */
.soybean-banner {
    position: relative;
    min-height: 350px;
    background:
        linear-gradient(to right, rgba(27, 94, 32, 0.85) 0%, rgba(27, 94, 32, 0.3) 50%, transparent 100%),
        url('images/soybean-field.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
}

.soybean-banner .container {
    display: flex;
    align-items: center;
}

.soybean-banner-content {
    max-width: 500px;
    padding: 40px 0;
}

.soybean-banner-content h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.soybean-banner-content p {
    color: var(--light-green);
    font-size: 1.2rem;
}

/* --- Cool Animated Background Pattern --- */
.animated-bg {
    position: relative;
    overflow: hidden;
}

.animated-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(76, 175, 80, 0.03) 10px,
        rgba(76, 175, 80, 0.03) 20px
    );
    animation: slide 20s linear infinite;
    pointer-events: none;
}

@keyframes slide {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

/* --- Glowing Accent Lines --- */
.glow-line {
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-green), transparent);
    margin: 40px auto;
    max-width: 200px;
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(76, 175, 80, 0.5);
}

/* --- Stats Counter Style --- */
.big-stat {
    text-align: center;
    padding: 40px 20px;
}

.big-stat .number {
    font-size: 5rem;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.big-stat .label {
    font-size: 1.2rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-top: 10px;
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
    .header-container {
        flex-wrap: wrap;
        gap: 15px;
    }

    .header-cta {
        display: none;
    }

    .vision-grid {
        grid-template-columns: 1fr;
    }

    .stat-block {
        grid-template-columns: repeat(4, 1fr);
    }

    .facts-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .content-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .header-container {
        flex-direction: column;
        text-align: center;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    nav ul li a {
        padding: 10px 12px;
        font-size: 0.85rem;
    }

    .hero-section {
        min-height: 600px;
        background-position: 20% center;
        justify-content: center;
        text-align: center;
    }

    .hero-overlay {
        justify-content: center;
    }

    .hero-content {
        margin-right: 0;
        max-width: 90%;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-tagline {
        font-size: 1.5rem;
    }

    .stat-block {
        grid-template-columns: repeat(2, 1fr);
    }

    .facts-grid {
        grid-template-columns: 1fr;
    }

    .photo-gallery {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .footer-legal {
        text-align: center;
    }

    .teaser-content {
        padding: 60px 20px;
    }

    .page-header {
        padding: 60px 20px;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .logo a {
        font-size: 1.4rem;
    }

    .cta-button {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .large-cta {
        padding: 14px 25px;
        font-size: 1rem;
    }

    .stat-item h3 {
        font-size: 2rem;
    }

    .contact-info-block {
        padding: 25px;
    }
}
