/*
Theme Name: Print Shop Demo Theme
Theme URI: http://example.com/
Author: Antigravity
Author URI: http://example.com/
Description: A simple demo theme for the Print Product Configurator.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: print-shop-demo
*/

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: #0073aa;
}

/* Header */
.site-header {
    background: #fff;
    padding: 20px 40px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-title a {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.main-navigation li {
    margin-left: 20px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1e5799 0%, #2989d8 50%, #207cca 51%, #7db9e8 100%);
    color: #fff;
    text-align: center;
    padding: 100px 20px;
}

.hero-section h1 {
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-section p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.btn-primary {
    background: #ff9900;
    color: #fff;
    padding: 15px 30px;
    font-size: 18px;
    border-radius: 4px;
    font-weight: bold;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #e68a00;
}

/* Product Carousel (Grid for simplicity) */
.product-carousel-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.product-carousel-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #444;
}

.product-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.product-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    width: 300px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    height: 200px;
    background: #f4f4f4;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    font-size: 48px;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    margin: 0 0 10px;
    font-size: 20px;
}

.product-info .price {
    color: #777;
    margin-bottom: 15px;
    display: block;
}

.btn-secondary {
    display: inline-block;
    border: 2px solid #0073aa;
    color: #0073aa;
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: bold;
}

.btn-secondary:hover {
    background: #0073aa;
    color: #fff;
}

/* Footer */
.site-footer {
    background: #333;
    color: #aaa;
    text-align: center;
    padding: 40px 20px;
    margin-top: 60px;
}