/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: #e4e4e4;
    background-color: #1a1a1a;
}

/* Header and Navigation */
header {
    background-color: #0f0f0f;
    color: #c9a96e;
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    border-bottom: 2px solid #c9a96e;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav h1 {
    font-size: 1.8rem;
    color: #c9a96e;
    font-weight: bold;
    letter-spacing: 1px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: #e4e4e4;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

nav a:hover {
    color: #c9a96e;
}

/* Main content */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Hero section */
.hero {
    text-align: center;
    background: #2a2a2a;
    padding: 3rem 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    margin-bottom: 3rem;
    border: 1px solid #444;
}

.hero h2 {
    font-size: 2.5rem;
    color: #c9a96e;
    margin-bottom: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero p {
    font-size: 1.2rem;
    color: #b8b8b8;
    margin-bottom: 2rem;
    font-style: italic;
}

.hero-image {
    max-width: 200px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

/* Content sections */
.content {
    background: #2a2a2a;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    border: 1px solid #444;
}

.content h3 {
    color: #c9a96e;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.content p {
    margin-bottom: 1rem;
    color: #cccccc;
}

.content ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.content li {
    margin-bottom: 0.5rem;
    color: #cccccc;
}

/* Muppet grid */
.muppet-grid, .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.muppet-card, .product-card {
    background: #333333;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
    border: 1px solid #555;
}

.product-card a {
    color: inherit;
    text-decoration: none;
    display: block;
}

.muppet-card:hover, .product-card:hover {
    transform: translateY(-5px);
}

.muppet-card img, .product-card img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.muppet-card h4, .product-card h4 {
    color: #c9a96e;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.muppet-card p, .product-card p {
    color: #b8b8b8;
    font-size: 0.9rem;
}

.price {
    display: block;
    font-size: 1.2rem;
    font-weight: bold;
    color: #c9a96e;
    margin-top: 1rem;
}

/* Contact specific styles */
.contact-info {
    margin-bottom: 3rem;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.contact-card {
    background: #333333;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
    border: 1px solid #555;
}

.contact-card h4 {
    color: #c9a96e;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Contact form */
.contact-form {
    background: #333333;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 3rem;
    border: 1px solid #555;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #c9a96e;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #555;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background-color: #2a2a2a;
    color: #e4e4e4;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #c9a96e;
}

button {
    background-color: #c9a96e;
    color: #1a1a1a;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: bold;
}

button:hover {
    background-color: #b8956a;
}

/* Product detail pages */
.product-details {
    margin-bottom: 3rem;
}

.product-info .price {
    font-size: 2rem;
    font-weight: bold;
    color: #c9a96e;
    margin-bottom: 2rem;
}

.product-actions {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.secondary-button {
    background-color: transparent;
    color: #c9a96e;
    padding: 1rem 2rem;
    border: 2px solid #c9a96e;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: bold;
    display: inline-block;
}

.secondary-button:hover {
    background-color: #c9a96e;
    color: #1a1a1a;
}

.related-products {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #444;
}

/* Footer */
footer {
    background-color: #0f0f0f;
    color: #c9a96e;
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
    border-top: 2px solid #c9a96e;
}

/* Responsive design */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 1rem;
    }

    nav ul {
        gap: 1rem;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    main {
        padding: 1rem;
    }

    .muppet-grid, .product-grid {
        grid-template-columns: 1fr;
    }

    .contact-details {
        grid-template-columns: 1fr;
    }
}