/* Gear Page Styles */

.gear-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.gear-column {
    background: #fff;
    padding: 0;
}

.category-header {
    background: #d4af37;
    color: #000;
    padding: 15px;
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9em;
}

.accordion {
    border-bottom: 1px solid #e0e0e0;
}

.accordion-header {
    background: #f5f5f5;
    padding: 12px 15px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95em;
    color: #333;
    transition: background 0.3s;
    position: relative;
    user-select: none;
}

.accordion-header:hover {
    background: #eeeeee;
}

.accordion-header:after {
    content: '+';
    position: absolute;
    right: 15px;
    font-size: 1.2em;
    transition: transform 0.3s;
}

.accordion-header.active:after {
    content: '−';
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #fff;
}

.accordion-content.active {
    max-height: 1000px;
}

.accordion-content ul {
    list-style: none;
    padding: 15px;
    margin: 0;
}

.accordion-content li {
    padding: 4px 0;
    font-size: 0.9em;
    color: #555;
}

.gear-photos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.gear-photo {
    background: #fff;
    padding: 20px;
}

.gear-photo img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.gear-photo-caption {
    text-align: center;
    margin-top: 10px;
    font-weight: 600;
    color: #333;
}

.echo-chamber-section {
    background: #fff;
    padding: 40px;
    margin: 40px 0;
}

.echo-chamber-section h3 {
    font-size: 1.4em;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
}

.echo-chamber-section p {
    font-size: 1em;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    text-align: justify;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    margin-top: 30px;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.rental-section {
    background: #fff;
    padding: 30px;
    margin: 40px 0;
}

.rental-section h3 {
    font-size: 1.3em;
    margin-bottom: 15px;
    color: #333;
}

.rental-section p {
    font-size: 1em;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.rental-items {
    margin: 20px 0;
}

.rental-items ul {
    list-style: none;
}

.rental-items li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    color: #555;
}

@media (max-width: 1024px) {
    .gear-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .gear-grid {
        grid-template-columns: 1fr;
    }
    
    .gear-photos {
        grid-template-columns: 1fr;
    }
}
