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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation Bar */
.navbar {
    background: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    color: #2c1810;
    font-size: 1.8rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

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

.nav-links a {
    text-decoration: none;
    color: #2c1810;
    font-weight: bold;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    background-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2c1810 0%, #5a3a2a 100%);
    color: white;
    text-align: center;
    padding: 6rem 2rem;
    margin-bottom: 3rem;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.5rem;
    color: #d4af37;
}

/* Categories Section */
.categories {
    padding: 3rem 0;
    text-align: center;
}

.categories h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c1810;
}

.category-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.category-card {
    perspective: 1000px;
}

.category-btn {
    width: 100%;
    padding: 2rem;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(0);
}

.category-btn:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
}

/* Gold Button */
.gold-btn {
    background: linear-gradient(135deg, #d4af37 0%, #ffd700 50%, #daa520 100%);
    color: #2c1810;
}

.gold-btn:hover {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #ffd700 100%);
    color: #1a0f08;
}

.gold-btn h3 {
    color: #2c1810;
    margin-bottom: 0.5rem;
}

.gold-btn p {
    color: #5a3a2a;
    font-size: 0.9rem;
}

/* Silver Button */
.silver-btn {
    background: linear-gradient(135deg, #c0c0c0 0%, #e8e8e8 50%, #d3d3d3 100%);
    color: #333;
}

.silver-btn:hover {
    background: linear-gradient(135deg, #e8e8e8 0%, #ffffff 50%, #e8e8e8 100%);
    color: #000;
}

.silver-btn h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

.silver-btn p {
    color: #666;
    font-size: 0.9rem;
}

/* About Section */
.about {
    background-color: #f0e6d2;
    padding: 3rem 0;
    text-align: center;
    margin: 2rem 0;
}

.about h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c1810;
}

.about p {
    font-size: 1.1rem;
    color: #5a3a2a;
    max-width: 800px;
    margin: 0 auto;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #2c1810 0%, #5a3a2a 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.contact h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.contact-info p {
    font-size: 1.1rem;
    margin: 0.8rem 0;
}

/* Footer */
footer {
    background-color: #1a0f08;
    color: #d4af37;
    text-align: center;
    padding: 2rem;
    margin-top: 3rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo h1 {
        font-size: 1.2rem;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .categories h2 {
        font-size: 1.8rem;
    }

    .category-buttons {
        grid-template-columns: 1fr;
    }

    .btn-icon {
        font-size: 2.5rem;
    }

    .category-btn {
        padding: 1.5rem;
        font-size: 1rem;
    }
}