/* General Body Styles */
body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    line-height: 1.6;
    color: #333;
    background-color: #f4f8fb; /* Light background for a cheerful feel */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

h1, h2, h3 {
    font-family: 'Fredoka One', cursive; /* Playful font for titles */
    color: #e44d26; /* A vibrant orange-red */
    text-align: center;
    margin-bottom: 20px;
}

h1 { font-size: 3.5em; color: #fff; text-shadow: 2px 2px 4px rgba(0,0,0,0.5); }
h2 { font-size: 2.8em; color: #2a7e7b; } /* Teal-blue */
h3 { font-size: 1.8em; color: #e44d26; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-family: 'Fredoka One', cursive;
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-align: center;
    cursor: pointer;
}

.btn-primary {
    background-color: #e44d26; /* Orange-red */
    color: #fff;
    font-size: 1.2em;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    background-color: #f76b4a;
    transform: translateY(-3px);
}

.btn-secondary {
    background-color: #2a7e7b; /* Teal-blue */
    color: #fff;
    font-size: 1em;
    padding: 10px 20px;
    margin-top: 10px;
}

.btn-secondary:hover {
    background-color: #3ca19d;
    transform: translateY(-2px);
}

/* Header/Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/ninjago-hero-bg.jpg') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    padding: 100px 20px;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero p {
    font-size: 1.5em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
}

/* Sections */
section {
    padding: 60px 0;
    text-align: center;
}

.section-intro, .section-benefits {
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 30px;
    border-radius: 10px;
}

.section-products {
    background-color: #e8f5e9; /* Light green background */
}

.section-contact {
    background-color: #ffe0b2; /* Light orange background */
}

/* Image Responsive */
.img-responsive {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 30px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.product-item {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    padding: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.product-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.product-item img {
    max-width: 100%;
    height: 200px; /* Fixed height for product images */
    object-fit: contain;
    border-radius: 10px;
    margin-bottom: 15px;
    background-color: #f7f7f7; /* Light background for product images */
}

.product-item h3 {
    margin: 15px 0 10px;
    color: #e44d26;
    font-size: 1.5em;
}

.product-item p {
    font-size: 0.95em;
    color: #555;
    flex-grow: 1; /* Allow text to take available space */
}

.product-item .price {
    font-size: 1.6em;
    color: #007bff; /* Bright blue for price */
    font-weight: bold;
    margin-top: 15px;
    display: block;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-item {
    background-color: #fce4ec; /* Light pink background */
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: background-color 0.3s ease;
}

.benefit-item:nth-child(2) { background-color: #e0f2f7; /* Light blue */ }
.benefit-item:nth-child(3) { background-color: #fffde7; /* Light yellow */ }


.benefit-item h3 {
    color: #e44d26;
    margin-top: 0;
    font-size: 1.6em;
}

.benefit-item p {
    color: #666;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 30px auto 0;
    background-color: #fff;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: left;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1em;
    box-sizing: border-box; /* Include padding in width */
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #e44d26;
    outline: none;
    box-shadow: 0 0 8px rgba(228, 77, 38, 0.2);
}

.contact-form .btn-primary {
    width: 100%;
    margin-top: 20px;
    font-size: 1.4em;
    padding: 15px;
}

.disclaimer {
    font-size: 0.9em;
    color: #777;
    margin-top: 20px;
}

/* Footer */
footer {
    background-color: #2a7e7b; /* Teal-blue */
    color: #fff;
    text-align: center;
    padding: 30px 20px;
    margin-top: 50px;
    font-size: 0.9em;
}

footer a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    h1 { font-size: 2.5em; }
    h2 { font-size: 2em; }
    .hero { padding: 80px 20px; min-height: 400px; }
    .hero p { font-size: 1.2em; }
    .btn-primary { font-size: 1.1em; padding: 12px 25px; }
    .product-grid, .benefits-grid { grid-template-columns: 1fr; }
    .product-item, .benefit-item { padding: 20px; }
    .contact-form { padding: 25px; }
}

@media (max-width: 480px) {
    h1 { font-size: 2em; }
    h2 { font-size: 1.8em; }
    .hero { min-height: 350px; }
    .hero p { font-size: 1em; }
    .btn-primary { font-size: 1em; padding: 10px 20px; }
    section { padding: 40px 0; }
}