@import url('style.css');
.main-content {
    min-height: 100vh;
    padding-top: 120px;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.page-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.hauls-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}
.haul-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 250px;
}
.haul-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 123, 255, 0.3);
}
.haul-card.inactive {
    filter: grayscale(100%);
    opacity: 0.6;
}
.haul-card.inactive .haul-btn {
    background-color: #4D4D4D !important;
}
.haul-image {
    width: 100%;
    height: 100%;
    position: relative;
}
.haul-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.haul-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}
.haul-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.haul-highlight {
    color: #007bff;
}
.haul-btn {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.haul-btn:hover {
    transform: scale(1.05);
}
.items-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid #333;
}
.items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.item-card {

    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #333;
}
.item-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 123, 255, 0.2);
    border-color: #007bff;
}
.item-image {
    width: 100%;
    height: 200px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.item-info {
    padding: 20px;
    text-align: center;
}
.item-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
}
.item-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #007bff;
}
@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .hauls-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 1fr);
        gap: 20px;
        max-width: 400px;
    }
    
    .haul-card {
        height: 200px;
    }
    
    .haul-title {
        font-size: 2rem;
    }
    
    .items-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .hauls-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 1fr);
    }
    
    .items-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

