
:root {
    --primary-color: #4A90E2; /* Bright Blue */
    --secondary-color: #F5A623; /* Sunny Orange */
    --accent-color-1: #50E3C2; /* Aqua Green */
    --accent-color-2: #B8E986; /* Lime Green */
    --background-color: #F7F7F7;
    --text-color: #333;
    --card-bg: #fff;
    --shadow-color: rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    background-color: var(--background-color);
    color: var(--text-color);
    background-image: url('data:image/svg+xml,%3Csvg width="6" height="6" viewBox="0 0 6 6" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="%23e0e0e0" fill-opacity="0.4" fill-rule="evenodd"%3E%3Cpath d="M5 0h1L0 6V5zM6 5v1H5z"/%3E%3C/g%3E%3C/svg%3E');
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1em 2em;
    background-color: #fff;
    border-bottom: 1px solid #eee;
    box-shadow: 0 2px 4px var(--shadow-color);
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-color);
}

.logo {
    height: 50px;
}

.shop-name {
    font-size: 1.5em;
    font-weight: bold;
    margin-left: 10px;
    color: var(--primary-color);
}

nav a {
    color: var(--primary-color);
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--secondary-color);
}

main {
    padding: 2em;
}

footer {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 1em 0;
}

#hero {
    margin-bottom: 2em;
    display: grid;
    place-items: center;
}

.hero-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    align-items: center;
    gap: 2em;
}

.hero-text {
    text-align: left;
}

.hero-text h2 {
    font-size: 2.5em;
    font-weight: bold;
    color: var(--primary-color);
}

.hero-image {
    text-align: right;
}

.hero-image img {
    max-width: 100%;
    max-height: 400px;
    border-radius: 15px;
    box-shadow: 0 10px 20px var(--shadow-color);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 2em;
}

.product-card {
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 1.5em;
    text-align: center;
    box-shadow: 0 5px 15px var(--shadow-color);
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px var(--shadow-color);
}

.product-card img {
    max-width: 100%;
    border-radius: 10px;
}

.price {
    font-weight: bold;
    color: var(--secondary-color);
}

.button {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 1em;
    transition: background-color 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 8px rgba(74, 144, 226, 0.4);
}

.button:hover {
    background-color: #357ABD;
    box-shadow: 0 6px 12px rgba(74, 144, 226, 0.6);

}

#contact-form {
    max-width: 500px;
    margin: 0 auto;
    display: grid;
    gap: 1em;
}

#contact-form input,
#contact-form textarea {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

#custom-design {
    background-color: var(--accent-color-1);
    padding: 2em;
    border-radius: 15px;
    text-align: center;
    margin: 2em 0;
    box-shadow: 0 5px 15px var(--shadow-color);
}

#custom-design .button {
    background-color: white;
    color: var(--accent-color-1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#custom-design .button:hover {
    background-color: #f2f2f2;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

#testimonials {
    text-align: center;
    margin: 2em 0;
}

.testimonial-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2em;
}

.testimonial-card {
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 2em;
    box-shadow: 0 5px 15px var(--shadow-color);
}

.testimonial-text p {
    font-style: italic;
    margin-bottom: 1em;
}

.testimonial-text cite {
    font-weight: bold;
    color: var(--primary-color);
}

.gallery-images {
    margin-top: 1em;
}

.gallery-img {
    max-width: 100%;
    max-height: 400px;
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        padding: 1em;
        align-items: center;
    }

    .logo {
        margin-bottom: 1em;
    }

    nav a {
        display: block;
        margin: 10px 0;
        text-align: center;
    }

    .hero-container {
        grid-template-columns: 1fr; /* Stack hero content on smaller screens */
        text-align: center;
    }

    .hero-text {
        text-align: center;
    }

    .hero-image {
        order: -1; /* Move image to the top on smaller screens */
    }

    .testimonial-container {
        grid-template-columns: 1fr;
    }
}
