@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;800&display=swap');

:root {
    --primary-red: #ff0033;
    --primary-red-hover: #cc0029;
    --dark-bg: #0a0a0a;
    --card-bg: #151515;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --text-white: #ffffff;
    --text-gray: #a0a0a0;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    background-color: var(--dark-bg);
    color: var(--text-white);
    font-family: 'Outfit', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Glassmorphism Navbar */
.navbar {
    background: rgba(10, 10, 10, 0.8) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.2rem 3rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
    top: 0;
    transition: var(--transition);
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--text-white) !important;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.navbar-brand span {
    color: var(--primary-red);
}

.nav-link {
    color: var(--text-gray) !important;
    font-size: 0.95rem;
    font-weight: 500;
    margin-left: 1.5rem;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--text-white) !important;
}

.nav-link:hover::after {
    width: 100%;
}

/* Premium Buttons */
.btn-red {
    background: var(--primary-red);
    color: white;
    padding: 12px 35px;
    border-radius: 0px;
    font-weight: 700;
    border: none;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 0, 51, 0.3);
}

.btn-red:hover {
    background: var(--primary-red-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 0, 51, 0.5);
    color: white;
}

.btn-outline-white {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px 30px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
}

.btn-outline-white:hover {
    background: var(--text-white);
    color: var(--dark-bg);
    border-color: var(--text-white);
}

/* Hero Section */
.hero-wrapper {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    transform: translate(-50%, -50%);
    object-fit: cover;
    filter: brightness(0.6);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #0a0a0a 10%, rgba(10, 10, 10, 0.2) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    padding-left: 5%;
}

.tagline {
    color: var(--primary-red);
    font-weight: 800;
    letter-spacing: 5px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    display: block;
}

.hero-title {
    font-size: 6.5rem;
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.hero-subtitle-container {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.red-indicator {
    width: 4px;
    height: 60px;
    background: var(--primary-red);
    margin-right: 25px;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--text-gray);
    max-width: 500px;
}

/* Technical Details Section */
.specs-section {
    padding: 100px 0;
    background: #0d0d0d;
}

.spec-card {
    background: var(--card-bg);
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: var(--transition);
}

.spec-card:hover {
    border-color: rgba(255, 0, 51, 0.3);
    transform: translateY(-10px);
}

.spec-value {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-white);
    display: block;
    margin-bottom: 5px;
}

.spec-label {
    font-size: 0.8rem;
    color: var(--primary-red);
    letter-spacing: 2px;
    font-weight: 700;
    text-transform: uppercase;
}

/* Garage Styles */
.garage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    padding: 40px 0;
}

.moto-card {
    background: var(--card-bg);
    border-radius: 4px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.moto-card:hover {
    transform: scale(1.02);
    border-color: var(--primary-red);
}

.moto-img-wrapper {
    height: 250px;
    overflow: hidden;
}

.moto-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.moto-card:hover .moto-img-wrapper img {
    transform: scale(1.1);
}

.moto-info {
    padding: 25px;
}

.moto-name {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.moto-price {
    color: var(--primary-red);
    font-size: 1.2rem;
    font-weight: 800;
}

/* Admin Styles */
.admin-badge {
    background: var(--primary-red);
    font-size: 0.6rem;
    padding: 2px 8px;
    border-radius: 2px;
    top: -10px;
    position: relative;
}
