/* Performance Page Specific Styles */

.performance-main {
    width: 100%;
    overflow: hidden;
    background-color: #ffffff;
    padding-top: 120px; /* Space for fixed navbar */
}

/* Page Header */
.performance-header {
    text-align: center;
    max-width: 800px;
    margin: 48px auto 80px;
    padding: 0 20px;
}

.performance-title {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 20px;
}

.performance-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    line-height: 1.8;
    color: #444444;
    font-weight: 300;
}

/* Product Showcase Layout */
.product-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 48px;
    max-width: 1400px;
    margin: 0 auto 90px;
    padding: 0 40px;
}

.product-showcase.reverse {
    grid-template-columns: 1fr 1fr;
}

.product-showcase.reverse .product-image-container {
    order: 2;
}

/* Product Image */
.product-image-container {
    position: relative;
    background-color: #f5f5f5;
    overflow: hidden;
    height: 560px;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), filter 0.4s ease;
    filter: contrast(1.05) saturate(1.1);
}

.product-image-container:hover .product-image {
    transform: scale(1.05);
}

/* Product Info */
.product-info {
    padding: 28px 0;
}

.product-name {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(2.5rem, 4.5vw, 3.5rem);
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #000000;
    line-height: 1.1;
    margin-bottom: 15px;
}

.product-tagline {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 30px;
}

.product-description {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #333;
    font-weight: 300;
    margin-bottom: 24px;
}

/* Key Specs */
.key-specs { margin-bottom: 28px; position: relative; }

.specs-title {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 12px;
    border-bottom: 2px solid #000; /* Bolder, cleaner divider */
    padding-bottom: 8px;
    padding-right: 100px;
}

.specs-toggle{
    position:absolute; right:0; top:-8px; /* Adjusted for new border */
    display:inline-flex; align-items:center; gap:8px;
    padding:6px 12px; border:1px solid #e8e8e8; border-radius:999px;
    background:#fff; color:#000; font-family:'Inter',sans-serif; font-size:11px; font-weight:700;
    letter-spacing:1px; text-transform:uppercase; cursor:pointer;
    transition:all .3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}
.specs-toggle:hover{ transform: translateY(-2px); box-shadow: 0 6px 16px rgba(0,0,0,0.08); }
.specs-toggle svg{ 
    width:12px; height:12px; 
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.key-specs.open .specs-toggle svg {
    transform: rotate(180deg);
}
.key-specs.open .specs-toggle {
    background-color: #f8f8f8;
    border-color: #d0d0d0;
}

.specs-body{ max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.key-specs.open .specs-body{ max-height: 500px; } /* enough to reveal list smoothly */
.key-specs.open .specs-toggle span::after{ content:' LESS'; }
.key-specs:not(.open) .specs-toggle span::after{ content:' MORE'; }

.key-specs ul {
    list-style: none;
    padding: 0;
}

.key-specs li {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #333;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
    line-height: 1.5;
    transition: transform 0.2s ease, color 0.2s ease;
    cursor: default;
}

.key-specs li:hover {
    transform: translateX(4px);
    color: #000;
}

.key-specs li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    background-color: #000; /* Minimalist square bullet */
    opacity: 0.8;
}

.key-specs li strong {
    font-weight: 500;
    color: #000;
}

/* CTA Button */
.product-cta-button {
    background: #000000;
    color: #ffffff;
    border: 1px solid #000000;
    padding: 18px 45px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    font-family: 'Inter', sans-serif;
}

.product-cta-button:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-3px);
}

/* Closing Ethos Section */
.closing-ethos {
    text-align: center;
    padding: 80px 40px;
    background-color: #000000;
}

.closing-ethos p {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 400;
    line-height: 1.4;
    color: #ffffff;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto;
}

/* Animation States */
.animate-on-load,
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.animate-on-scroll {
    transition-delay: 200ms;
}

.animate-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Product Actions */
.product-actions {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.view-product-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #000000;
    color: #ffffff;
    text-decoration: none;
    padding: 16px 28px;
    border-radius: 4px; /* Slightly sharper corners */
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1.5px; /* Match other bold typography */
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.view-product-btn:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    border: 1px solid #000000; /* Ensure contrast border if needed, though button has none usually */
}

.view-product-btn svg {
    transition: transform 0.3s ease;
}

.view-product-btn:hover svg {
    transform: translate(2px, -2px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .product-showcase,
    .product-showcase.reverse {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .product-showcase.reverse .product-image-container {
        order: 1; /* Stack image on top */
    }

    .product-info {
        order: 2;
        text-align: center;
    }

    .key-specs li {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .performance-main {
        padding-top: 100px;
    }

    .performance-header {
        margin: 32px auto 56px;
    }

    .product-showcase {
        margin-bottom: 72px;
        padding: 0 20px;
    }

    .product-image-container {
        height: 420px;
    }

    .closing-ethos {
        padding: 60px 20px;
    }
} 
/* Link wrapper for product images */
.product-image-link {
    display: block;
    width: 100%;
    height: 100%;
    cursor: pointer;
}
