:root {
    --bg-color: #050505;
    --text-color: #ffffff;
    --accent-color: #ff3e3e;
    /* Ferrari Red */
    --font-heading: 'Racing Sans One', 'Segoe UI', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;
    --transition-fast: 0.3s;
    --transition-slow: 0.8s;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

img {
    max-width: 100%;
    display: block;
}

/* Typography */
h1,
h2,
h3 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-style: italic;
    /* Aggressive angle */
    letter-spacing: 0.05em;
}

h1 {
    font-size: 4rem;
    line-height: 1;
}

h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

p {
    color: #ccc;
    max-width: 60ch;
}

/* Utilities */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.btn {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--accent-color);
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
    transition: transform var(--transition-fast), background var(--transition-fast);
    border: none;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.2rem;
}

.btn:hover {
    transform: skew(-10deg) translateX(5px);
    background: #e60000;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    color: #fff;
    text-shadow: 2px 2px 0 var(--accent-color);
}

nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
}

nav a {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

nav a:hover {
    color: var(--accent-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    animation: zoomOut 15s infinite alternate;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    padding-left: 10%;
    max-width: 800px;
}

.hero h1 {
    font-size: 6vw;
    margin-bottom: 1rem;
    text-shadow: 4px 4px 0 rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    margin-bottom: 3rem;
    display: block;
    color: var(--accent-color);
    font-weight: 700;
}

@keyframes zoomOut {
    from {
        transform: scale(1.2);
    }

    to {
        transform: scale(1);
    }
}

/* Fleet Carousel */
.fleet {
    padding: 8rem 0;
    background: #000;
    position: relative;
    overflow: hidden;
}

.fleet h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.carousel-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 2rem;
    padding: 2rem 5%;
    scrollbar-width: none;
}

.carousel-container::-webkit-scrollbar {
    display: none;
}

.car-card {
    flex: 0 0 80vw;
    background: #111;
    border: 1px solid #333;
    position: relative;
    scroll-snap-align: center;
    transition: transform var(--transition-fast);
}

@media(min-width: 768px) {
    .car-card {
        flex: 0 0 600px;
    }
}

.car-image {
    width: 100%;
    height: 350px;
    object-fit: contain;
    background: radial-gradient(circle at center, #222 0%, #000 70%);
}

.car-info {
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #222;
}

.car-stats div {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    color: #888;
}

.car-stats strong {
    color: #fff;
    font-size: 1.2rem;
    margin-left: 0.5rem;
}

/* Audio Section */
.sound-experience {
    padding: 10rem 0;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('assets/images/hero.png') fixed center/cover;
    position: relative;
}

.sound-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.play-btn {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: transparent;
    color: #fff;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.play-btn:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: scale(1.1);
    box-shadow: 0 0 30px var(--accent-color);
}

/* Footer & Legal */
footer {
    padding: 6rem 2rem 2rem;
    background: #080808;
    border-top: 1px solid #222;
    font-size: 0.9rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 4rem;
    border-bottom: 1px solid #222;
    padding-bottom: 2rem;
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-col p,
.footer-col a {
    color: #666;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-col a:hover {
    color: #fff;
}

.legal-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
}

/* Safety & Team Sections */
.safety-section {
    padding: 8rem 0;
    background: #080808;
    position: relative;
    border-top: 1px solid #111;
}

.safety-grid {
    display: grid;
    gap: 3rem;
    grid-template-columns: 1fr;
}

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

.safety-card {
    background: #111;
    border: 1px solid #222;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s;
}

.safety-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

.safety-card h3 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.team-section {
    padding: 6rem 0;
    text-align: center;
}

.team-members {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.team-member {
    text-align: left;
    max-width: 300px;
}

.team-member img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #222;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 2px solid var(--accent-color);
}

.team-member h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
}

.team-member span {
    color: var(--accent-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 0.8rem;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #222;
    padding: 1.5rem 0;
}

.faq-item h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.faq-item p {
    color: #888;
    font-size: 0.95rem;
    max-width: none;
}