/* Showroom Specific Styles - Inherits from base.css */

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

/* Hero Section */
.showroom-hero {
    position: relative;
    height: 80vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: var(--space-16);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(5,5,5,0.3), var(--color-bg));
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
}

.hero-content h1 {
    font-size: clamp(var(--text-3xl), 5vw, var(--text-5xl));
    text-shadow: 0 4px 10px rgba(0,0,0,0.8);
    margin-bottom: var(--space-6);
}

.hero-content .lead {
    font-size: var(--text-lg);
    color: var(--color-silver);
    margin-bottom: var(--space-8);
    text-shadow: 0 2px 5px rgba(0,0,0,0.8);
}

/* Layout Utils for this page */
.section-split {
    display: flex;
    flex-direction: column;
    gap: var(--space-8);
    margin-bottom: var(--space-16);
}

@media (min-width: 900px) {
    .section-split {
        flex-direction: row;
        align-items: center;
    }
    .split-content, .split-image {
        flex: 1;
    }
}

.split-image img {
    width: 100%;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-glow);
}

.feature-block {
    margin-bottom: var(--space-6);
    padding-left: var(--space-4);
    border-left: 2px solid var(--color-primary);
}

.feature-block h3 {
    color: var(--color-text);
    font-size: var(--text-xl);
    margin-bottom: var(--space-2);
}

/* Dark Section Alternating */
.section-dark {
    background-color: var(--color-surface);
    padding: var(--space-16) 0;
    margin-bottom: var(--space-16);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.grid-cols-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-8);
    align-items: center;
}

@media (min-width: 900px) {
    .grid-cols-2 {
        grid-template-columns: 1fr 1fr;
    }
    .reverse-mobile {
        /* Ensure text is left, image right normally, but stack correctly on mobile if needed */
    }
}

.image-wrapper img {
    width: 100%;
    border-radius: var(--radius-md);
    transition: transform var(--transition-normal);
}

.image-wrapper img:hover {
    transform: scale(1.02);
}

/* Cards Section */
.section-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-8);
    margin-bottom: var(--space-16);
}

@media (min-width: 768px) {
    .section-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.showroom-card {
    height: 100%;
    background: linear-gradient(145deg, var(--color-surface), #0a0a0a);
    padding: 0;
    overflow: hidden;
}

.showroom-card .card-img {
    border-radius: 0;
    margin-bottom: 0;
    height: 300px;
}

.showroom-card .card-body {
    padding: var(--space-6);
}

/* Utilities */
.mt-4 { margin-top: var(--space-4); }
.mt-8 { margin-top: var(--space-8); }
.py-large { padding-top: var(--space-12); padding-bottom: var(--space-12); }
.max-w-800 { max-width: 800px; }
.mx-auto { margin-left: auto; margin-right: auto; }

.link-arrow {
    color: var(--color-primary);
    font-weight: 600;
    text-transform: uppercase;
    font-size: var(--text-sm);
    letter-spacing: 0.05em;
}

.link-arrow:hover {
    color: var(--color-silver);
}

/* Location Banner */
.location-banner {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: var(--space-16);
}

.banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(80%);
    transition: filter var(--transition-normal);
}

.location-banner:hover .banner-img {
    filter: grayscale(20%);
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 5, 0.7);
}

.banner-content {
    position: relative;
    z-index: 2;
}