/*
Theme Name: Kayak Gear Reviews Fixed
Theme URI: https://kayakgearreviewhub.com
Author: Kayak Gear Team
Author URI: https://kayakgearreviewhub.com
Description: A custom theme for kayak gear reviews with deep teal and warm gold colors
Version: 1.0.1
License: GPL v2 or later
Text Domain: kayak-gear
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0A4C64;
    --secondary-color: #F2B705;
    --text-dark: #333;
    --text-light: #666;
    --background: #ffffff;
    --background-alt: #f8f9fa;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--background);
}

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

/* Header */
.site-header {
    background: var(--primary-color);
    padding: 1rem 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

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

.site-title {
    color: white;
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: bold;
}

/* Navigation */
.main-navigation {
    display: flex;
    gap: 2rem;
}

.main-navigation a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    transition: opacity 0.3s;
}

.main-navigation a:hover {
    opacity: 0.8;
}

/* Main Content */
.site-main {
    padding: 3rem 0;
    min-height: 60vh;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color), #0a5c7a);
    color: white;
    padding: 4rem 0;
    text-align: center;
    margin-bottom: 3rem;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

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

.review-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.review-card:hover {
    transform: translateY(-4px);
}

.review-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: var(--background-alt);
}

.review-card-content {
    padding: 1.5rem;
}

.review-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.rating {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

/* Footer */
.site-footer {
    background: var(--primary-color);
    color: white;
    padding: 2rem 0;
    margin-top: 3rem;
}

.footer-content {
    text-align: center;
}

.affiliate-disclosure {
    background: var(--secondary-color);
    color: var(--text-dark);
    padding: 1rem;
    margin-bottom: 1rem;
    text-align: center;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .site-header .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}