/* General Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f6f8;
    color: #333;
    line-height: 1.6;
}

/* Custom overrides for Bootstrap components */
.header .container, .hero .container, .categories-section .container, .latest-outfits-section .container, .footer .container {
    padding-left: 15px;
    padding-right: 15px;
}

.logo a {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    text-decoration: none;
}

/* Hero Section */
.hero h2 {
    font-size: 48px;
    color: #333;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    color: #666;
    margin-bottom: 30px;
}

/* Sections */
.categories-section, .latest-outfits-section {
    background-color: #fff;
    border-top: 1px solid #eee;
    margin-bottom: 40px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.categories-section h3, .latest-outfits-section h3 {
    font-size: 32px;
    color: #333;
    text-align: center;
    margin-bottom: 30px;
}

/* Cards */
.category-card, .outfit-card {
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

.category-card:hover, .outfit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
    background-color: #e2e6ea;
}

/* Footer */
.footer {
    background-color: #343a40;
    color: #fff;
    padding: 30px 0;
    text-align: center;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h2 {
        font-size: 36px;
    }

    .categories-section h3, .latest-outfits-section h3 {
        font-size: 28px;
    }
}