/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body and layout */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

/* Header */
header {
    background-color: #003f87;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo img {
    height: 50px;
}

header nav ul {
    list-style: none;
    display: flex;
}

header nav ul li {
    margin-left: 20px;
    font-family: Garamond, serif;
}

header nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
}

header .search input {
    padding: 8px;
    font-size: 16px;
    border-radius: 5px;
    border: none;
}

/* Top Categories Section */
.top-categories {
    text-align: center;
    background-color: #00bfff;
    padding: 50px 30px;
}

.top-categories h2 {
    font-size: 3rem;
    margin-bottom: 50px;
    color: rgb(0, 0, 0);
    font-weight: bold;  /* Makes the text bold */
    font-family: Garamond, serif;
}


.categories {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.category {
    background-color: #00bfff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.category img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 5px;
}

.category p {
    margin-top: 10px;
    font-size: 1.2rem;
    font-weight: bold;
}

/* Shop by Theme Section */
.themes {
    text-align: center;
    padding: 30px 20px;
}

.themes h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.theme-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.theme-buttons button {
    background-color: #ff6600;
    color: white;
    font-size: 1rem;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

.theme-buttons button:hover {
    background-color: #cc5200;
}

/* Footer */
footer {
    background-color: #003f87;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: 50px;
}
