/* General Styles */
body {
    font-family: 'Lato', 'Open Sans', 'Roboto', sans-serif;
    margin: 0;
    color: #231F20;
    background-color: #f4f4f4;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: #e39b37;
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    align-items: center;
}

.logo {
    height: 50px;
    margin-right: 15px;
}

header h1 {
    margin: 0;
    font-size: 2rem;
    display: inline-block;
}

header nav {
    margin-left: auto;
}

header nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

header nav ul li {
    display: inline-block;
    margin-left: 20px;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: bold;
    padding: 10px 15px;
    border-radius: 8px;
    transition: background-color 0.3s;
}

header nav ul li a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

main {
    margin-top: 2rem;
}

/* Hero Section */
#hero {
    background-color: #231F20;
    color: white;
    padding: 4rem 0;
    text-align: center;
}

#hero h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Sections */
.product-section {
    display: none;
}

.product-section.active {
    display: block;
}

section {
    padding: 2rem 0;
    margin-bottom: 2rem;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

section h2 {
    background-color: #e39b37;
    color: white;
    padding: 15px 20px;
    margin: -2rem 0 2rem 0;
    border-radius: 12px 12px 0 0;
}

/* Toggle Switch */
.toggle-container {
    text-align: center;
    margin-bottom: 2rem;
}

.toggle-btn {
    background-color: #f4f4f4;
    border: 1px solid #D1D3D4;
    border-radius: 8px;
    color: #231F20;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 10px 20px;
    margin: 0 10px;
    transition: background-color 0.3s, color 0.3s;
}

.toggle-btn.active {
    background-color: #e39b37;
    color: white;
    border-color: #e39b37;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.product-card {
    background-color: white;
    border: 1px solid #A9A9A9;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: contain;
}

.product-card-content {
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.product-card.no-image .product-card-content {
    justify-content: center;
    text-align: center;
}

.product-card-content h3 {
    margin: 0 0 10px 0;
}

.product-card-content .price {
    background-color: #e39b37;
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-weight: bold;
    text-align: center;
    margin-top: auto;
}

.price-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.price-list li {
    margin-bottom: 5px;
}


/* Contact Page */
#contact-details ul {
    list-style: none;
    padding: 0;
}

#contact-details ul li {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

/* Footer */
footer {
    background-color: #231F20;
    color: white;
    text-align: center;
    padding: 1rem 0;
    margin-top: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
    header h1 {
        display: block;
        text-align: center;
    }

    header nav {
        float: none;
        text-align: center;
        margin-top: 10px;
    }

    header nav ul li {
        display: block;
        margin: 10px 0;
    }
}