/* Hero Section */
.hero {
    position: relative;
    text-align: center;
    color: white;
}

.hero-image {
    width: 100%; /* Makes the image take up full width */
    height: auto;
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.hero h1 {
    font-size: 3em;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.5em;
    margin: 10px 0;
}

.hero-button {
    background-color: #3498db;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2em;
}

.hero-button:hover {
    background-color: #7d3c98;
}

/* Product Cards */
.product-card-container {
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
}

.product-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 20px;
    width: 300px;
}

.product-card img {
    width: 100%; /* Adjust image width in the product card */
    height: auto;
}

.product-card h3 {
    color: #7d3c98;
    font-size: 1.5em;
}

.product-card p {
    font-size: 1em;
    margin: 10px 0;
}

.product-card .button {
    background-color: #3498db;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2em;
}

.product-card .button:hover {
    background-color: #7d3c98;
}

}

