/* FILE: static/css/theme.css */
:root {
    --primary-blue: #1565c0;
    --dark-blue: #0d47a1;
    --light-blue: #e3f2fd;
    --white: #ffffff;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
}

/* Hero Section */
.hero-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-badges {
    margin-bottom: 2rem;
}

.badge {
    padding: 8px 16px;
    border-radius: 20px;
    margin-right: 10px;
    font-weight: 500;
}

.hero-image {
    text-align: center;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Features Section */
.features-section {
    padding: 60px 0;
}

.feature-card {
    padding: 2rem 1rem;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

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

.section-title {
    font-weight: 700;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-blue);
}

.product-card {
    transition: all 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(21, 101, 192, 0.15);
}

/* Materials Section */
.materials-section {
    padding: 80px 0;
}

.material-card {
    padding: 2rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.material-card:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(21, 101, 192, 0.2);
}

/* Offers Section */
.offers-section {
    padding: 80px 0;
}

.offer-card {
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.15);
}

.offer-card .price {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 1rem 0;
}

.offer-card ul {
    text-align: left;
    margin: 2rem 0;
}

/* Navigation */
.brand-logo {
    font-weight: 700;
    display: flex;
    align-items: center;
}

.brand-logo i {
    margin-right: 10px;
}

/* Cards */
.card {
    border-radius: 8px;
    overflow: hidden;
}

.card .card-image img {
    transition: transform 0.3s ease;
}

.card:hover .card-image img {
    transform: scale(1.05);
}

/* Buttons */
.btn, .btn-large {
    border-radius: 25px;
    font-weight: 500;
    text-transform: none;
}

.btn:hover, .btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Footer */
.page-footer {
    margin-top: 4rem;
}

/* Responsive */
@media (max-width: 600px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .features-section,
    .products-section,
    .materials-section,
    .offers-section {
        padding: 40px 0;
    }
}

/* Markdown Body Styles */
.markdown-body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.7;
}

.markdown-body h1,
.markdown-body h2,
.markdown-body h3,
.markdown-body h4,
.markdown-body h5,
.markdown-body h6 {
    color: var(--primary-blue);
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.markdown-body a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.markdown-body a:hover {
    color: var(--dark-blue);
    text-decoration: underline;
}

/* Pagination */
.pagination li.active {
    background-color: var(--primary-blue);
}

.pagination li a {
    color: var(--primary-blue);
}

.pagination li a:hover {
    background-color: var(--light-blue);
}