/* RisUp Kitchen Style - Similar to risupkitchen.com */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header */
.risup-header {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.risup-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.risup-logo a {
    font-size: 24px;
    font-weight: bold;
    color: #007bff;
    text-decoration: none;
}

.risup-menu ul {
    list-style: none;
    display: flex;
}

.risup-menu li {
    margin-left: 20px;
}

.risup-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.risup-menu a:hover {
    color: #007bff;
}

/* Hero Section */
.risup-hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://via.placeholder.com/1920x600') center/cover;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.risup-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.risup-hero p {
    font-size: 20px;
    margin-bottom: 30px;
}

.risup-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.risup-btn:hover {
    background-color: #0056b3;
}

/* Products Section */
.risup-products {
    padding: 60px 0;
    background-color: #fff;
}

.risup-section-title {
    text-align: center;
    margin-bottom: 40px;
}

.risup-section-title h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.risup-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.risup-product-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.risup-product-card:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.risup-product-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.risup-product-info {
    padding: 15px;
}

.risup-product-title {
    font-size: 18px;
    margin-bottom: 10px;
}

.risup-product-price {
    font-size: 16px;
    color: #007bff;
    font-weight: bold;
}

/* Categories Section */
.risup-categories {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.risup-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.risup-category-card {
    text-align: center;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.risup-category-icon {
    font-size: 48px;
    color: #007bff;
    margin-bottom: 15px;
}

.risup-category-title {
    font-size: 20px;
    margin-bottom: 10px;
}

/* Advantages Section */
.risup-advantages {
    padding: 60px 0;
    background-color: #fff;
}

.risup-advantage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.risup-advantage-item {
    text-align: center;
}

.risup-advantage-icon {
    font-size: 48px;
    color: #007bff;
    margin-bottom: 15px;
}

.risup-advantage-title {
    font-size: 24px;
    margin-bottom: 10px;
}

/* Contact Section */
.risup-contact {
    padding: 60px 0;
    background-color: #f8f9fa;
    text-align: center;
}

.risup-contact h2 {
    margin-bottom: 20px;
}

.risup-contact p {
    margin-bottom: 30px;
}

/* Footer */
.risup-footer {
    background-color: #333;
    color: white;
    padding: 30px 0;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .risup-nav {
        flex-direction: column;
    }
    
    .risup-menu ul {
        margin-top: 15px;
    }
    
    .risup-hero h1 {
        font-size: 32px;
    }
    
    .risup-product-grid {
        grid-template-columns: 1fr;
    }
}