/* General body styling */
body {
    font-family: 'Lato', sans-serif;
    background-color: #3e2723; /* Deep chocolate brown */
    color: #ffffff; /* White text for contrast */
    margin: 0;
    padding: 0;
    text-align: center;
}

/* Header styling */
header {
    padding: 20px;
    background-color: #5d4037; /* Rich brown tone */
    color: #ffffff;
}

header h1 {
    font-family: 'Playfair Display', serif; /* Elegant font for the logo/title */
    font-size: 2.5em;
    margin: 0;
}

header p {
    font-size: 1.2em;
    margin: 5px 0 0;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 15px 0 0;
    padding: 0;
}

nav ul li {
    display: inline;
}

nav ul li a {
    text-decoration: none;
    color: #ffffff;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

nav ul li a:hover {
    background-color: #6d4c41;
}

/* Hero Section */
.hero {
    padding: 50px 20px;
    background-color: #4e342e; /* Chocolate shade */
    color: #d7ccc8; /* Creamy text color */
    border-radius: 10px;
}

.hero h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2em;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2em;
    margin: 0;
    line-height: 1.5;
}

/* Products Section */
.products {
    padding: 30px 20px;
}

.products h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2em;
    margin-bottom: 20px;
}

.products ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.products ul li {
    background-color: #795548; /* Earthy tone for chocolates */
    color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    width: 250px;
    transition: transform 0.3s ease, background-color 0.3s ease;
    text-align: left;
    cursor: pointer;
}

.products ul li:hover {
    transform: scale(1.05); /* Slight enlargement on hover */
    background-color: #6d4c41; /* Darker tone on hover */
}

.products ul li h3 {
    margin-top: 0;
    font-size: 1.4em;
}

.products ul li p {
    font-size: 1em;
    line-height: 1.4;
    margin: 10px 0 0;
}

/* Blog Section */
.blog {
    padding: 30px 20px;
    background-color: #5d4037; /* Chocolate tone */
    color: #ffffff;
    border-radius: 10px;
}

.blog h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2em;
    margin-bottom: 10px;
}

.blog p {
    font-size: 1.2em;
    line-height: 1.5;
    margin-bottom: 20px;
}

.blog button {
    background-color: #795548; /* Chocolate tone */
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.blog button:hover {
    background-color: #6d4c41;
    transform: scale(1.1);
}

/* Call-to-Action Section */
.cta {
    padding: 30px 20px;
    background-color: #4e342e; /* Chocolate shade */
    color: #d7ccc8; /* Creamy text color */
    border-radius: 10px;
    margin: 30px 20px;
}

.cta h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8em;
    margin-bottom: 15px;
}

.cta p {
    font-size: 1.2em;
    line-height: 1.5;
    margin: 0 0 20px;
}

.cta button {
    background-color: #795548; /* Chocolate tone */
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta button:hover {
    background-color: #5d4037; /* Darker shade on hover */
    transform: scale(1.1); /* Slight zoom effect */
}

/* Footer styling */
footer {
    padding: 10px;
    background-color: #5d4037;
    color: #ffffff;
    font-size: 0.9em;
}
