/* Homepage Sections - Fusion Prime Style */

/* Hero Section (Background Image) */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)), url('assets/ptmt_collection.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax effect */
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
}

.hero-content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    /* Single column */
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.hero-text h1 {
    font-size: clamp(4rem, 8vw, 8rem);
    font-weight: 200;
    line-height: 0.9;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: -2px;
}

.hero-tagline {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 3rem;
    color: #cccccc;
}

.hero-image-placeholder {
    width: 100%;
    height: 600px;
    background: linear-gradient(135deg, #222 0%, #333 100%);
    border-radius: 8px;
}

/* Product Showcase */
.product-showcase {
    padding: 100px 0;
    background: #0a0a0a;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 200;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-subtitle {
    text-align: center;
    color: #888;
    margin-bottom: 4rem;
    font-size: 1.1rem;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.showcase-card {
    background: #111;
    padding: 2rem;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.showcase-card:hover {
    transform: translateY(-10px);
}

.showcase-image-placeholder {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.showcase-card h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.showcase-card p {
    color: #888;
    margin-bottom: 1rem;
}

.link-arrow {
    color: var(--color-primary);
    font-weight: 500;
    transition: transform 0.3s ease;
    display: inline-block;
}

.link-arrow:hover {
    transform: translateX(5px);
}

/* Features Section */
.features-section {
    background: #000;
    padding: 100px 0;
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto 6rem auto;
    padding: 0 1rem;
    align-items: center;
}

.feature-row.reverse {
    direction: rtl;
}

.feature-row.reverse>* {
    direction: ltr;
}

.feature-image-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 12px;
}

.feature-content h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.feature-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #aaa;
}

/* Color Options */
.color-options {
    padding: 100px 0;
    background: #0a0a0a;
}

.color-swatches {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
}

.swatch {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 2rem;
    cursor: pointer;
    transition: transform 0.3s ease;
    position: relative;
}

.swatch:hover {
    transform: scale(1.1);
}

.swatch span {
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
}

/* Specifications */
.specifications {
    padding: 100px 0;
    background: #000;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.spec-item {
    text-align: center;
    padding: 2rem;
    background: #111;
    border-radius: 8px;
}

.spec-item h4 {
    font-size: 1.2rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.spec-item p {
    color: #ccc;
    line-height: 1.8;
}

/* Final CTA */
.final-cta {
    padding: 0;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    text-align: center;
}

.final-cta h2 {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 200;
}

.final-cta p {
    color: #888;
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

/* Responsive */
@media (max-width: 968px) {

    .hero-content-wrapper,
    .feature-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .feature-row.reverse {
        direction: ltr;
    }

    .color-swatches {
        flex-wrap: wrap;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}