/* Import Playfair Display font */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background: #fff;
    color: #333;
}
nav {
    background: #222;
    color: #fff;
    display: flex;
    justify-content: space-between;
    padding: 1rem 2rem;
    align-items: center;
}
nav a {
    color: #fff;
    margin-left: 20px;
    text-decoration: none;
}
.hero {
    background: url('assets/images/main-background.jpeg') no-repeat center center/cover;
    color: white;
    padding: 60px 20px; /* Increased padding */
    text-align: center;
    position: relative
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}
.company-info {
    margin-bottom: 30px;
}
.company-name {
    font-family: 'Playfair Display', serif; /* Use Playfair Display for company name */
    font-size: 3em; /* Adjust size as needed */
    margin-bottom: 10px;
    color: white; /* Explicitly set color */
    line-height: 1.2; /* Adjust line height for better spacing */
    font-weight: 700; /* Make it bold */
}
.slogan {
    font-family: 'Poppins', sans-serif; /* Use Poppins for the slogan */
    font-size: 1em; /* Adjust size as needed */
    font-style: italic; /* Optional: Make the slogan italic */
    line-height: 1.6;
    color: white; /* Explicitly set color */
    margin-bottom: 10px; /* Add some space below the slogan */
}

section {
    padding: 40px 18px;
}
.products, .themes {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}
.product-card, .theme-card {
    border: 1px solid #ccc;
    border-radius: 10px;
    width: 200px;
    padding: 10px;
    text-align: center;
    transition: transform 0.3s;
    background: white;
}
.product-card:hover {
    transform: scale(1.05);
}
.product-card img {
    max-width: 100%;
    border-radius: 8px;
}
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}
.animated {
    opacity: 1;
    transform: translateY(0);
}
.product-detail-img {
    width: 100%;
    max-width: 500px;
}