/* Home Specific Styles */

/* Hero Section */
.hero-section {
    position: relative;
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

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

.hero-bg .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--color-bg-body) 0%, rgba(2, 6, 23, 0.7) 60%, rgba(2, 6, 23, 0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--space-4);
}

@media (min-width: 1024px) {
    .hero-content {
        max-width: 60%;
    }
}

.hero-content h1 {
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
    margin-bottom: var(--space-6);
}

.hero-content p {
    font-size: var(--text-lg);
    color: var(--color-secondary);
    margin-bottom: var(--space-8);
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: var(--space-4);
}

/* Split Section */
.section-split {
    padding: var(--space-16) 0;
}

.grid-2-col {
    display: grid;
    grid-template-columns: 1fr;
}

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

.image-wrapper img {
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-lg);
}

/* Features Section */
.section-features {
    padding: var(--space-16) 0;
    background-color: var(--color-bg-surface-alt);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.grid-3-col {
    display: grid;
    grid-template-columns: 1fr;
}

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

@media (min-width: 1024px) {
    .grid-3-col {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
}

.feature-card h3 {
    color: var(--color-primary);
    font-size: var(--text-xl);
    margin-bottom: var(--space-3);
}

/* Cinematic Showroom Section */
.showroom-cinematic {
    position: relative;
    padding: var(--space-24) 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.showroom-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.showroom-bg .overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(2,6,23,0.5) 0%, rgba(2,6,23,0.95) 100%);
}

.showroom-cinematic .content-center {
    position: relative;
    z-index: 2;
}

/* Trust Section */
.section-trust {
    padding: var(--space-16) 0;
}

.info-block {
    padding: var(--space-8);
    background-color: var(--color-bg-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
}

.text-link {
    display: inline-block;
    margin-top: var(--space-4);
    font-weight: 600;
    text-transform: uppercase;
    font-size: var(--text-sm);
    letter-spacing: 0.05em;
}

.text-link:hover {
    text-decoration: underline;
    color: var(--color-secondary);
}

/* Animations */
.fade-up,
.reveal-left,
.reveal-right {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-left {
    transform: translateX(-30px);
}

.reveal-right {
    transform: translateX(30px);
}

.is-visible {
    opacity: 1;
    transform: translate(0);
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}