/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    color: #333;
    transition: background-color 0.5s;
}

/* Header Styling */
header {
    background: linear-gradient(to right, #ff7e5f, #feb47b);
    color: #fff;
    padding: 20px 0;
    text-align: center;
    animation: fadeIn 1.5s ease-in-out;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

nav ul li {
    display: inline;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    padding: 10px 15px;
    transition: color 0.3s, background 0.3s;
    border-radius: 5px;
}

nav ul li a:hover {
    background: rgba(255, 255, 255, 0.3);
    color: #ffcc00;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 100px 20px;
    background: url('hero-image.jpg') no-repeat center center/cover;
    color: white;
    animation: slideUp 1.2s ease-in-out;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero h2, .hero p, .shop-now {
    position: relative;
    z-index: 2;
}

.shop-now {
    background: #ff5733;
    color: white;
    padding: 15px 30px;
    border: none;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 20px;
}

.shop-now:hover {
    background: #c70039;
    transform: scale(1.1);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}

/* Grid Layout for Sections */
.section-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 50px;
    text-align: center;
}

.card {
    background: white;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    transition: transform 0.3s;
}

.card:hover {
    transform: scale(1.05);
}

/* Footer */
footer {
    background: linear-gradient(to right, #c70039, #900c3f);
    color: white;
    text-align: center;
    padding: 20px;
    animation: fadeIn 1.5s ease-in-out;
    margin-top: 50px;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}