* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    background: linear-gradient(
        135deg,
        #fdf6e3 0%,
        #f5e6c4 25%,
        #e8c97a 50%,
        #f5e6c4 75%,
        #fffaf0 100%
    );
    background-attachment: fixed;
    color: #222;
    line-height: 1.6;
}

/* NAVBAR */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 10%;
    background: #111;
}

nav h1 {
    color: #d4af37;
    font-weight: 500;
    letter-spacing: 2px;
    font-size: 18px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

nav a {
    text-decoration: none;
    color: white;
    transition: 0.3s;
    font-size: 15px;
}

nav a:hover {
    color: #d4af37;
}

/* HERO */
.hero {
    height: 35vh;
    background: linear-gradient(
        rgba(0,0,0,0.5),
        rgba(0,0,0,0.5)
    ),
    url('images/hero.jpg') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.hero h2 {
    font-size: 30px;
    letter-spacing: 1px;
    padding: 10px 20px;
    background: rgba(0,0,0,0.5);
    border-radius: 6px;
}
.hero {
    height: 250px;
    background-image: url('images/hero.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
}

.search-container {
    text-align: right;
    margin: 20px 0;
}

#product-search {
    padding: 8px 12px;
    width: 220px;
    font-size: 14px;
    border: 1px solid #b8860b;
    border-radius: 5px;
}

/* PRODUCTS SECTION */
.container {
    padding: 50px 10%;
    text-align: center;
}

.container h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* PRODUCT CARD - LIGHT BLUE */
.card {
    background: rgba(173, 216, 230, 0.7); /* light blue */
    backdrop-filter: blur(8px);
    padding: 20px;
    border-radius: 12px;
    transition: 0.3s;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 35px rgba(212, 175, 55, 0.4);
}

.card img {
    width: 100%;
    border-radius: 10px;
}

.card h3 {
    margin-top: 15px;
    font-size: 18px;
}

.price {
    margin-top: 8px;
    font-weight: bold;
    color: #b8860b;
    font-size: 18px;
}

.category-title {
    margin-top: 50px;
    margin-bottom: 20px;
    font-size: 22px;
    color: #b8860b;
    text-align: left;
}

.details {
    margin-top: 10px;
    font-size: 14px;
    color: #333;
    line-height: 1.5;
}

/* BUTTON */
.btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 22px;
    background: #d4af37;
    color: black;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: 0.3s;
}

.btn:hover {
    background: #b8962e;
}

/* ABOUT & CONTACT PAGES - LIGHT BLUE */
.about-section,
.contact-section {
    max-width: 800px;
    margin: 60px auto;
    padding: 40px 20px;
    text-align: left;
    background: rgba(173, 216, 230, 0.7); /* light blue */
    backdrop-filter: blur(6px);
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    line-height: 1.8;
}

.about-section h2,
.contact-section h2 {
    text-align: center;
    font-size: 28px;
    color: #b8860b;
    margin-bottom: 20px;
}

.about-section p,
.contact-section p {
    font-size: 17px;
    margin-bottom: 15px;
    color: #222;
}

.contact-box {
    text-align: center;
}

.contact-box .btn {
    margin-top: 20px;
}
.contact-inline {
    max-width: 500px;
    margin: 20px auto;
    text-align: left;
}


/* FOOTER */
footer {
    text-align: center;
    padding: 18px;
    background: #111;
    color: white;
    margin-top: 60px;
    font-size: 14px;
}

/* MOBILE */
@media (max-width: 768px) {
    .hero h2 {
        font-size: 24px;
        padding: 8px 15px;
    }

    nav {
        flex-direction: column;
        gap: 10px;
    }

    .about-section,
    .contact-section {
        padding: 30px 15px;
        margin: 40px 10px;
    }

    .about-section h2,
    .contact-section h2 {
        font-size: 24px;
    }

    .about-section p,
    .contact-section p {
        font-size: 16px;
    }
}