/* VICE CITY MOTORS THEME - CLEAN & FULL WIDTH */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700;900&family=Permanent+Marker&display=swap');

:root {
    --vice-pink: #FF00CC;
    --vice-cyan: #00FFFF;
    --vice-yellow: #F9D71C;
    --vice-bg: #120024;
    --vice-dark: #0a0014;
}

body {
    background: linear-gradient(135deg, #2b003b 0%, #000000 100%) fixed;
    /* Fixed background */
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

/* NAVBAR */
.navbar {
    background: rgba(0, 0, 0, 0.9);
    border-bottom: 1px solid var(--vice-pink);
    padding: 1rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: transform 0.4s ease-in-out;
    box-sizing: border-box;
}

.navbar.navbar-hidden {
    transform: translateY(-100%);
}

.logo {
    font-family: 'Permanent Marker', cursive;
    font-size: 1.8rem;
    color: var(--vice-cyan);
    text-shadow: 2px 2px 0px #000;
    transform: skew(-5deg);
}

.neon-pink {
    color: var(--vice-pink);
    text-shadow: 0 0 10px var(--vice-pink);
}

.neon-yellow {
    color: var(--vice-yellow);
    text-shadow: 0 0 10px var(--vice-yellow);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--vice-yellow);
    text-shadow: 0 0 8px var(--vice-yellow);
}

/* MAIN STRUCTURE */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-top: 80px;
    /* Space for navbar */
}

/* SECTIONS - Full Width Design */
.section {
    width: 100%;
    padding: 6rem 10%;
    /* Horizontal padding for content centering */
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.section-hero {
    min-height: 90vh;
    /* Almost full screen */
    text-align: center;
    /* Clean background, relying on the body gradient */
}

.section-dark {
    background: rgba(0, 0, 0, 0.4);
    border-top: 1px solid rgba(255, 0, 204, 0.2);
    border-bottom: 1px solid rgba(255, 0, 204, 0.2);
}

.section-story {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6));
}

/* TYPOGRAPHY */
h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 5rem;
    /* Bigger impact */
    text-transform: uppercase;
    color: #fff;
    text-shadow: 4px 4px 0px var(--vice-pink);
    margin: 0;
    line-height: 0.9;
}

h2 {
    font-family: 'Permanent Marker', cursive;
    color: var(--vice-cyan);
    font-size: 3rem;
    transform: rotate(-2deg);
    margin-bottom: 3rem;
    text-shadow: 2px 2px 0 #000;
}

.section-title-clean {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 2.5rem;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 3rem;
    letter-spacing: 2px;
    border-bottom: 3px solid var(--vice-yellow);
    padding-bottom: 1rem;
}

p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #ddd;
    max-width: 800px;
    margin-bottom: 2rem;
    text-align: center;
}

/* GRID LAYOUTS */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    width: 100%;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 4rem;
    width: 100%;
    align-items: center;
}

/* CARDS (Clean style) */
.car-card {
    background: rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.car-card:hover {
    transform: translateY(-10px);
}

.car-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-bottom: 2px solid var(--vice-pink);
    background: #000;
}

.car-info {
    padding: 1.5rem;
    text-align: left;
}

.car-info h3 {
    margin: 0;
    color: var(--vice-yellow);
    font-family: 'Montserrat';
    font-weight: 800;
    font-size: 1.5rem;
}

.car-info p {
    text-align: left;
    margin: 0.5rem 0;
    font-size: 0.9rem;
    color: #aaa;
}

/* CHARACTERS */
.char-card {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    border-left: 4px solid var(--vice-cyan);
}

.char-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 3px solid var(--vice-pink);
    object-fit: cover;
    box-shadow: 0 0 15px var(--vice-pink);
}

.char-text {
    text-align: left;
}

.char-text h3 {
    margin: 0;
    color: var(--vice-cyan);
    font-family: 'Permanent Marker';
    font-size: 1.8rem;
}

.char-text span {
    color: var(--vice-pink);
    font-weight: bold;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* BUTTONS */
.btn-primary {
    display: inline-block;
    background: transparent;
    color: #fff;
    padding: 1rem 3rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    text-decoration: none;
    border: 3px solid var(--vice-pink);
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.btn-primary:hover {
    background: var(--vice-pink);
    color: #000;
    box-shadow: 0 0 20px var(--vice-pink);
}

/* FORM WRAPPER (Still needs structure but cleaner) */
.form-wrapper {
    max-width: 500px;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    padding: 3rem;
    text-align: center;
}

input[type="file"] {
    background: transparent;
    border: 2px solid var(--vice-cyan);
    color: #fff;
    padding: 1rem;
    width: 100%;
    margin-bottom: 2rem;
}

/* FOOTER */
.footer {
    background: #000;
    padding: 3rem;
    text-align: center;
    color: #444;
    font-size: 0.8rem;
    margin-top: auto;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* SCANLINES */
.scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.15) 50%, rgba(0, 0, 0, 0.15));
    background-size: 100% 4px;
    pointer-events: none;
    z-index: 9999;
}