/* styles.css */

/* Reset dan dasar styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f0f8f2;
    color: #333;
    line-height: 1.6;
}

/* Header */
header {
    background-color: #2e8b57;
    color: white;
    padding: 20px 10px;
    text-align: center;
    border-bottom: 5px solid #3cb371;
}

header h1 {
    font-size: 26px;
    font-family: 'Arial Black', Arial, sans-serif;
}

header nav ul {
    list-style: none;
}

header nav ul li {
    display: inline;
    margin: 0 15px;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.2em;
}

/* Tombol Kembali */
.back-button {
    background-color: #2e8b57;
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 1.2em;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.3s;
}

.back-button:hover {
    background-color: #3cb371;
    transform: scale(1.05);
}

.back-button:focus {
    outline: none;
}

/* Main content */
main {
    padding: 20px;
    width: 90%;
    margin: 0 auto;
    text-align: center;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    justify-items: center;
}

.product-item {
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 100%;
    transition: transform 0.3s ease-in-out;
    border: 2px solid #98fb98;
    position: relative;
    padding: 15px;
    text-align: left;
}

.product-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-bottom: 2px solid #98fb98;
}

.product-item .description {
    display: none;
    font-size: 1em;
    color: #555;
    margin-top: 10px;
    line-height: 1.4;
}

.product-item .read-more {
    background-color: #2e8b57;
    color: white;
    border: none;
    padding: 10px;
    font-size: 1em;
    cursor: pointer;
    margin-top: 10px;
    border-radius: 5px;
}

.product-item .read-more:hover {
    background-color: #3cb371;
}

/* Footer */
footer {
    background-color: #f38d08;
    color: white;
    text-align: center;
    padding: 20px;
    position: relative;
    bottom: 0;
    width: 100%;
}

footer p {
    font-size: 1em;
}

/* Styling tombol kembali ke halaman utama */
.back-button {
    background-color: #2e8b57;
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 1em;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.3s;
}

.back-button:hover {
    background-color: #3cb371;
    transform: scale(1.05);
}

.back-button:focus {
    outline: none;
}

