/* About Page Specific Styles */

.about-hero {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.9) 0%, rgba(15, 15, 15, 0.8) 100%);
    border-bottom: 2px solid var(--accent-neon);
}

.neon-text {
    font-family: var(--font-header);
    font-size: 4rem;
    color: var(--accent-neon);
    text-shadow: 0 0 10px rgba(57, 255, 20, 0.5), 3px 3px 0 var(--accent-pink);
    margin-bottom: 20px;
}

.big-text {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.4;
    color: #ccc;
    font-style: italic;
}

/* History Section */
.about-history {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 60px 0;
    border-bottom: 1px solid #333;
}

.history-content {
    flex: 1;
}

.history-date {
    display: inline-block;
    background: var(--accent-neon);
    color: black;
    padding: 5px 15px;
    font-weight: bold;
    font-family: var(--font-header);
    transform: rotate(-2deg);
    margin-bottom: 20px;
}

.history-content h3 {
    font-family: var(--font-header);
    font-size: 2.5rem;
    color: var(--accent-pink);
    margin-bottom: 20px;
}

.history-image {
    flex: 1;
    position: relative;
}

.history-image img {
    width: 100%;
    border: 5px solid white;
    box-shadow: 15px 15px 0 var(--accent-neon);
    transform: rotate(2deg);
    transition: transform 0.3s ease;
}

.history-image:hover img {
    transform: rotate(0deg) scale(1.02);
}

/* Values Grid */
.about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 80px 0;
}

.value-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border: 1px solid #222;
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    background: rgba(57, 255, 20, 0.05);
    border-color: var(--accent-neon);
    transform: translateY(-10px);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.value-card h4 {
    font-family: var(--font-header);
    font-size: 1.8rem;
    color: var(--accent-neon);
    margin-bottom: 15px;
}

/* Mentions Repository */
.about-mentions {
    padding: 80px 0;
    border-top: 1px solid #333;
}

.mentions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.mention-link {
    background: rgba(15, 15, 15, 0.9);
    border: 1px solid #222;
    padding: 30px;
    text-decoration: none;
    color: var(--text-main);
    transition: all 0.3s ease;
    display: block;
    position: relative;
    overflow: hidden;
}

.mention-link:hover {
    border-color: var(--accent-pink);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 0, 127, 0.1);
}

.mention-tag {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--accent-pink);
    border: 1px solid var(--accent-pink);
    padding: 2px 8px;
    display: inline-block;
    margin-bottom: 15px;
    font-weight: bold;
}

.mention-link h5 {
    font-family: var(--font-header);
    font-size: 1.3rem;
    margin: 0 0 10px 0;
    color: var(--accent-neon);
}

.mention-link p {
    font-size: 0.9rem;
    color: #888;
    margin: 0;
    line-height: 1.4;
}

.mention-link::after {
    content: '↗';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.2rem;
    color: var(--accent-pink);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mention-link:hover::after {
    opacity: 1;
}

/* Carousel Section */
.about-carousel-container {
    padding: 80px 0;
}

.section-title {
    font-family: var(--font-header);
    font-size: 3rem;
    color: var(--accent-neon);
    text-align: center;
    margin-bottom: 40px;
}

.carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
    padding: 20px 0;
}

.carousel-item {
    min-width: 300px;
    flex: 0 0 calc(33.333% - 14px);
    background: #111;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid #222;
}

/* Production-specific styles */
.carousel-item:nth-child(1) img {
    filter: sepia(0.5) hue-rotate(-50deg) brightness(0.8);
}

.carousel-item:nth-child(2) img {
    filter: contrast(1.2) saturate(1.5) brightness(0.9);
}

.carousel-item:nth-child(3) img {
    filter: invert(0.1) grayscale(0.5) contrast(1.5);
}

.carousel-item img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-item:hover img {
    filter: none !important;
    transform: scale(1.05);
}

.item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.9) 0%, transparent 60%);
    pointer-events: none;
}

.item-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    color: white;
    z-index: 2;
    transform: translateY(10px);
    transition: transform 0.3s ease;
}

.item-info h5 {
    font-family: var(--font-header);
    font-size: 1.4rem;
    margin: 0;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--accent-neon);
    color: black;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.4);
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

/* Responsive */
@media (max-width: 900px) {
    .about-history {
        flex-direction: column;
    }

    .about-values {
        grid-template-columns: 1fr;
    }

    .carousel-item {
        min-width: 250px;
        flex: 0 0 calc(50% - 10px);
    }

    .neon-text {
        font-size: 2.5rem;
    }
}

@media (max-width: 600px) {
    .carousel-item {
        flex: 0 0 100%;
    }
}