/*
Theme Name: OAK-KINS GENETIXX
Author: Vashon Oakley and Maia Watkins
Description: Custom WooCommerce theme for OAK-KINS GENETIXX, featuring beautiful earthy tones derived from the logo and elegant typography.
Version: 1.0.0
Text Domain: oak-kins
*/

:root {
    --primary-color: #0b1f28; /* Deep dark blue/green from logo */
    --secondary-color: #6b4c2a; /* Earthy brown */
    --accent-color: #8cba51; /* Light green leaf color */
    --bg-color: #f4eee1; /* Warm off-white / tan */
    --text-color: #333333;
    --header-bg: #d0c0a3; /* Logo background tan */
    --footer-bg: #1a1a1a;
    --footer-text: #f4eee1;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel', serif;
    color: var(--primary-color);
}

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

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

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

/* Header */
.site-header {
    background-color: var(--header-bg);
    padding: 20px 0;
    border-bottom: 3px solid var(--primary-color);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.custom-logo {
    max-height: 120px;
    width: auto;
}

.main-navigation {
    display: flex;
    align-items: center;
}

.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.main-navigation li {
    margin-right: 25px;
}

.main-navigation a {
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary-color);
    font-family: 'Cinzel', serif;
    letter-spacing: 1px;
}

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

.header-cart {
    margin-left: 20px;
    font-weight: bold;
    background: #fff;
    padding: 8px 15px;
    border-radius: 20px;
    border: 1px solid var(--secondary-color);
}

.header-cart a {
    color: var(--primary-color);
    font-family: 'Lato', sans-serif;
    text-transform: none;
}

/* Hero Section */
.hero-section {
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    position: relative;
    padding: 180px 0;
    text-align: center;
    color: #fff;
}

.hero-overlay {
    background-color: rgba(11, 31, 40, 0.5); /* semi-transparent overlay */
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    color: #fff;
    font-size: 4rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
}

.hero-content p {
    font-size: 1.6rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
}

.button, .primary-button {
    background-color: var(--secondary-color);
    color: #fff !important;
    padding: 14px 28px;
    border-radius: 4px;
    font-weight: bold;
    text-transform: uppercase;
    display: inline-block;
    transition: background 0.3s, transform 0.2s;
    font-family: 'Cinzel', serif;
}

.button:hover, .primary-button:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Mission Section */
.mission-section {
    padding: 80px 0;
    text-align: center;
    background-color: #fff;
}

.mission-section h2 {
    font-size: 2.8rem;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

.mission-section p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    color: #555;
}

/* Featured Products Section */
.featured-products-section {
    padding: 80px 0;
}

.featured-products-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 50px;
}

/* WooCommerce General Layout */
.wc-container {
    padding: 40px;
    background: #fff;
    margin-top: 40px;
    margin-bottom: 60px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-family: 'Cinzel', serif;
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 15px;
}

.woocommerce div.product p.price, .woocommerce div.product span.price {
    color: var(--accent-color);
    font-weight: bold;
}

.woocommerce span.onsale {
    background-color: var(--accent-color);
}

.woocommerce #respond input#submit.alt, .woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt {
    background-color: var(--secondary-color);
    color: #fff;
    font-family: 'Cinzel', serif;
}

.woocommerce #respond input#submit.alt:hover, .woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover, .woocommerce input.button.alt:hover {
    background-color: var(--primary-color);
}

/* Post Content */
.site-main {
    padding: 40px 0;
}

.entry-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.entry-content {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* Footer */
.site-footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    padding: 60px 0 20px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #333;
    padding-bottom: 40px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-logo {
    max-height: 120px;
    margin-bottom: 20px;
}

.footer-info p {
    margin: 5px 0;
    color: #ccc;
}

.footer-links a {
    color: var(--accent-color);
}

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

.site-info {
    text-align: center;
    font-size: 0.9rem;
    color: #888;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    /* Header */
    .header-container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    .main-navigation {
        flex-direction: column;
    }
    .main-navigation ul {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    .main-navigation li {
        margin-right: 0;
    }
    .header-cart {
        margin-left: 0;
        margin-top: 15px;
    }

    /* Hero */
    .hero-content h1 {
        font-size: 2.2rem;
    }
    .hero-content p {
        font-size: 1.1rem;
    }
    .hero-section {
        padding: 80px 0;
        background-attachment: scroll !important;
        background-position: center !important;
        background-size: contain !important;
        background-repeat: no-repeat !important;
        background-color: var(--primary-color) !important;
    }
    
    /* Typography */
    .mission-section h2, 
    .featured-products-section h2, 
    .discover-section h2, 
    .page-title,
    .contact-section h2 {
        font-size: 2rem !important;
    }

    /* Owner Cards */
    .owner-card {
        flex-direction: column !important;
    }
    .owner-image {
        flex: none !important;
        width: 100% !important;
        min-height: 300px !important;
    }
    .owner-info {
        flex: none !important;
        width: auto !important;
        padding: 20px !important;
    }
    .owner-info h2 {
        font-size: 1.8rem !important;
    }
    
    /* Footer */
    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    /* Container Paddings */
    .wc-container,
    .contact-section {
        padding: 20px !important;
    }
    
    /* Contact Section Links */
    .social-links {
        flex-direction: column;
        gap: 15px !important;
    }
    .contact-item {
        flex: 1 1 100%;
        margin-bottom: 10px;
    }
}
