/* Technical Equipment Styles */
.equipment-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../img/etkinlikler/Pi Teknik Sunum.pdf-image-046.png');
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 100px;
}

.equipment-hero-content {
    text-align: center;
    color: #fff;
    z-index: 2;
}

.equipment-heading {
    font-family: 'Raleway', sans-serif;
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(90deg, #ffffff 0%, #0097d4 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(0, 151, 212, 0.3);
    line-height: 1.2;
    padding: 10px 30px;
    display: inline-block;
}

.equipment-hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    color: #ccc;
}

.equipment-section {
    padding: 80px 0;
    background-color: var(--background-light);
    position: relative;
}

.equipment-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/pattern.png') repeat;
    opacity: 0.05;
    z-index: 0;
}

.equipment-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.equipment-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.equipment-card h3 {
    color: var(--text-light);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.equipment-card p {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.equipment-specs {
    margin-top: 20px;
}

.equipment-specs h4 {
    color: var(--text-light);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.equipment-specs ul li {
    color: var(--text-gray);
    font-size: 15px;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.equipment-divider {
    height: 3px;
    width: 180px;
    background: #0097d4;
    margin: 0 auto 50px;
    position: relative;
    box-shadow: 0 0 10px rgba(0, 151, 212, 0.5);
}

.equipment-divider:after {
    content: '';
    position: absolute;
    height: 3px;
    width: 50px;
    background: #333;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.equipment-category {
    margin-bottom: 70px;
}

.equipment-category-title {
    color: #ffffff;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
}

.equipment-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
    background-color: #1e1e1e;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    overflow: hidden;
}

.equipment-table thead {
    background-color: #0097d4;
    color: #fff;
}

.equipment-table th,
.equipment-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #333;
}

.equipment-table th {
    color: #ffffff;
    font-weight: 600;
    padding: 15px;
    text-align: left;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.equipment-table td {
    color: #ffffff;
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.equipment-table tbody tr {
    transition: all 0.3s ease;
}

.equipment-table tbody tr:hover {
    background-color: #252525;
}

.equipment-table tbody tr:last-child td {
    border-bottom: none;
}

.quantity-column {
    text-align: center;
    width: 100px;
}

/* Responsive Styling */
@media (max-width: 992px) {
    .equipment-category-title {
        font-size: 1.8rem;
    }
    
    .equipment-table {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .equipment-hero {
        height: 40vh;
    }
    
    .equipment-heading {
        font-size: 3.5rem;
    }
    
    .equipment-hero-content p {
        font-size: 1rem;
    }
    
    .equipment-table {
        display: block;
        overflow-x: auto;
    }
}

@media (max-width: 576px) {
    .equipment-heading {
        font-size: 2.5rem;
    }
    
    .equipment-category-title {
        font-size: 1.5rem;
    }
    
    .equipment-table th,
    .equipment-table td {
        padding: 10px;
    }
}

/* Hidden Equipment Items and Load More Buttons */
.hidden-equipment {
    display: none;
}

.load-more-container {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 40px;
}

.load-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    background-color: #0097d4;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 151, 212, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.load-more-btn:hover {
    background-color: #0078a8;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 151, 212, 0.4);
}

.load-more-btn i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.load-more-btn:hover i {
    transform: translateY(3px);
}

.equipment-row-visible {
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
} 