/* Global Styles */
:root {
    --primary-purple: #8A2BE2; /* Blue violet - sophisticated purple */
    --accent-purple: #9370DB; /* Medium purple */
    --light-purple: #D8BFD8; /* Thistle - soft purple highlight */
    --background-dark: #0a0a0f;
    --card-bg: linear-gradient(145deg, #121217, #1a1a22);
    --text-primary: #ffffff;
    --text-secondary: #e0e0e0;
    --text-muted: #b8b8b8;
    --border-purple: 1px solid rgba(138, 43, 226, 0.3);
    --shadow-default: 0 5px 15px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 10px 25px rgba(0, 0, 0, 0.4);
    --transition-speed: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    background-color: var(--background-dark);
    color: var(--text-primary);
    line-height: 1.6;
    letter-spacing: 0.5px;
    overflow-x: hidden;
}

h1, h2, .section-title {
    font-family: 'Cinzel', 'Playfair Display', serif;
    font-weight: 400;
    letter-spacing: 1.5px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem;
}

/* Header */
.header-image-container {
    text-align: center;
    margin-bottom: 1.2rem;
    padding: 1rem 0;
    position: relative;
}

.header-image-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-purple), transparent);
}

.header-image {
    width: 100%;
    max-width: 200px;
    height: auto;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: var(--shadow-default);
    transition: all var(--transition-speed);
}

.header-image:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-hover);
}

/* Build Info */
.build-info {
    margin: 1.2rem 0;
    padding: 1.6rem;
    background: rgba(18, 18, 25, 0.7);
    border-radius: 12px;
    box-shadow: var(--shadow-default);
    text-align: center;
    border: var(--border-purple);
    backdrop-filter: blur(8px);
    position: relative;
    overflow: hidden;
    transition: all var(--transition-speed);
}

.build-info:hover {
    box-shadow: var(--shadow-hover);
    border-color: rgba(138, 43, 226, 0.5);
}

.build-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-purple), transparent);
}

.build-info h2 {
    color: var(--light-purple);
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-family: 'Cinzel', serif;
    letter-spacing: 2px;
}

.build-info h3 {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto;
}

/* Columns */
.columns-container {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.column {
    flex: 1 1 45%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem; /* Reduced gap between cards */
}

.section-title {
    font-size: 2rem;
    color: var(--text-primary);
    position: relative;
    padding-left: 1.5rem;
    text-transform: uppercase;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-purple), transparent);
}

/* Product Cards */
.build-link {
    text-decoration: none;
    color: inherit;
    transition: transform var(--transition-speed);
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.build-link:hover {
    transform: translateY(-6px);
}

.product-card {
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-default);
    transition: all var(--transition-speed);
    border: var(--border-purple);
    padding: 1.5rem;
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(138, 43, 226, 0.5);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-purple), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card h2 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
    position: relative;
    display: inline-block;
}

.product-card h2::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 30px;
    height: 1px;
    background: var(--primary-purple);
}

.product-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

.image-container {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
}

.image-container img {
    max-width: 100%;
    max-height: 250px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.image-container:hover img {
    transform: scale(1.03);
}

/* Coming Soon */
.build-link.disabled {
    pointer-events: none;
    opacity: 0.7;
}

.coming-soon-badge {
    width: 100%;
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: var(--light-purple);
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 6px;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
    font-family: 'Cinzel', serif;
}

.product-card:hover .coming-soon-badge {
    background: linear-gradient(135deg, #2a2a2a 0%, #3d3d3d 100%);
}

/* Luxury Footer */
.luxury-footer {
    text-align: center;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(138, 43, 226, 0.15);
    margin-top: 1.5rem;
}

.footer-content p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0.4rem 0;
}

/* Animations */
.product-card {
    animation: fadeInUp 0.5s ease-out forwards;
    opacity: 0;
    transform: translateY(15px);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stagger animations */
.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }
.product-card:nth-child(4) { animation-delay: 0.4s; }
.product-card:nth-child(5) { animation-delay: 0.5s; }
.product-card:nth-child(6) { animation-delay: 0.6s; }
.product-card:nth-child(7) { animation-delay: 0.7s; }

/* Responsive Design */
@media (max-width: 1024px) {
    .columns-container {
        flex-direction: column;
    }
    
    .column {
        flex: 1 1 100%;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 1.2rem;
    }
    
    .header-image {
        max-width: 280px;
    }
    
    .build-info {
        padding: 1.3rem;
    }
    
    .build-info h2 {
        font-size: 1.4rem;
    }
    
    .section-title {
        font-size: 1.7rem;
        padding-left: 1.2rem;
        margin-bottom: 0.6rem;
    }
    
    .product-card {
        padding: 1.2rem;
    }
    
    .product-card h2 {
        font-size: 1.3rem;
    }
    
    .image-container img {
        max-height: 200px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0.8rem;
    }
    
    .header-image {
        max-width: 230px;
    }
    
    .build-info {
        padding: 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
        padding-left: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .product-card {
        padding: 1rem;
    }
    
    .product-card h2 {
        font-size: 1.2rem;
    }
    
    .image-container img {
        max-height: 170px;
    }
}
