/* Placement page specific styles */

/* Placement Section */
.placement-section {
    padding: 5rem 0;
    background: white;
    color: #1f2937;
}

.placement-section h2 {
    font-size: 2.25rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
}

/* Company Logo Grid */
.companies-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .companies-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .companies-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .companies-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Company Logo Card */
.logo-card {
    background-color: white;
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: block;
    text-decoration: none;
    color: inherit;
    width: 100%;
    filter: none;
}

.logo-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    filter: drop-shadow(0 0 200px rgba(0, 0, 0, 0.4));
}

.company-logo {
    max-width: 100%;
    height: 80px;
    object-fit: contain;
    margin: 0 auto;
    filter: none;
    transition: filter 0.3s ease;
}

@media (min-width: 640px) {
    .company-logo {
        height: 90px;
    }
}

@media (min-width: 768px) {
    .company-logo {
        height: 100px;
    }
}

.logo-card:hover .company-logo {
    filter: none;
}

/* Category Title */
.category-title {
    position: relative;
    margin-bottom: 2rem;
    color: #1a365d;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 0.5rem;
    font-size: 1.5rem;
    font-weight: 600;
    margin-left: -1rem;
    padding-left: 1rem;
}

@media (min-width: 640px) {
    .category-title {
        margin-left: -1rem;
        padding-left: 1rem;
    }
}

@media (min-width: 768px) {
    .category-title {
        margin-left: -1rem;
        padding-left: 1rem;
    }
}

@media (min-width: 1024px) {
    .category-title {
        margin-left: -1rem;
        padding-left: 1rem;
    }
}

@media (min-width: 1280px) {
    .category-title {
        padding-left: 4rem;
    }
}

@media (min-width: 1536px) {
    .category-title {
        padding-left: 5rem;
    }
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: #3b82f6;
}

/* Placement page specific navbar adjustments */
.placement-navbar .navbar-container a {
    color: #1f2937;
}

.placement-navbar #navbar-toggle {
    color: #1f2937;
}

/* Placement page footer */
.placement-footer {
    background: #111827;
    color: white;
    text-align: center;
    padding: 1.25rem 0;
} 