 
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&display=swap');

/* Red Seven Font */
@font-face {
    font-family: 'Red Seven';
    src: url('fonts/RedSeven.woff2') format('woff2'),
         url('fonts/RedSeven.woff') format('woff'),
         url('fonts/RedSeven.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Orbitron', Arial, sans-serif;
    background-color: #000000;
    color: #ffffff;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
}

.nav-container {
    display: flex;
    justify-content: center;
    gap: 100px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 2px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #ff3333;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ff3333;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 80px;
    background: radial-gradient(ellipse at center, rgba(255, 51, 51, 0.1) 0%, rgba(0, 0, 0, 1) 70%);
}

.hero-content {
    max-width: 800px;
}

.hero-title {
    font-family: 'Orbitron', Arial, sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: 8px;
    margin-bottom: 60px;
    text-shadow: 0 0 20px rgba(255, 51, 51, 0.3);
}

.logo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}

.logo-octagon {
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.logo-inner {
    width: 260px;
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Hero Image Styling */
.hero-image {
    width: 800px;
    height: 800px;
    object-fit: contain;
    object-position: center;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #cccccc;
    letter-spacing: 1px;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about-section {
    min-height: 100vh;
    padding: 120px 20px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(51, 0, 0, 0.3) 50%, rgba(0, 0, 0, 1) 100%);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Orbitron', Arial, sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: 6px;
    text-align: center;
    margin-bottom: 80px;
    text-shadow: 0 0 20px rgba(255, 51, 51, 0.3);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(ellipse at center, rgba(255, 51, 51, 0.4) 20%, rgba(255, 51, 51, 0.15) 50%, rgba(255, 51, 51, 0.05) 80%, transparent 100%);
    border-radius: 20px;
    overflow: hidden;
}

.about-riders-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: drop-shadow(0 0 25px rgba(255, 51, 51, 0.6));
    border-radius: 15px;
}

.about-text {
    font-size: 1.3rem;
    line-height: 2;
    color: #ffffff;
    text-align: right;
}

.about-text p {
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.tagline {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff3333;
    text-shadow: 0 0 10px rgba(255, 51, 51, 0.5);
    letter-spacing: 3px;
}

/* Contact Section */
.contact-section {
    min-height: 100vh;
    padding: 120px 20px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(51, 0, 0, 0.2) 100%);
    display: flex;
    align-items: center;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.contact-form {
    background: linear-gradient(135deg, rgba(204, 0, 0, 0.8) 0%, rgba(102, 0, 0, 0.9) 100%);
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(255, 51, 51, 0.2);
    border: 2px solid rgba(255, 51, 51, 0.3);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-input {
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 1rem;
    color: #333333;
    font-family: 'Orbitron', Arial, sans-serif;
}

.form-input::placeholder {
    color: #666666;
    font-family: 'Orbitron', Arial, sans-serif;
}

.form-input:focus {
    outline: none;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
    background-color: #ffffff;
}

.form-textarea {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    padding: 20px;
    border-radius: 8px;
    font-size: 1rem;
    color: #333333;
    font-family: 'Orbitron', Arial, sans-serif;
    resize: vertical;
    min-height: 150px;
    margin-bottom: 30px;
}

.form-textarea::placeholder {
    color: #666666;
    font-family: 'Orbitron', Arial, sans-serif;
}

.form-textarea:focus {
    outline: none;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
    background-color: #ffffff;
}

.submit-btn {
    background-color: #ffffff;
    color: #cc0000;
    border: none;
    padding: 15px 40px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    font-family: 'Orbitron', Arial, sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin: 0 auto;
}

.submit-btn:hover {
    background-color: #ff3333;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 51, 51, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        gap: 40px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }
    
    .logo-octagon {
        width: 250px;
        height: 250px;
    }
    
    .logo-inner {
        width: 210px;
        height: 210px;
    }
    
    .hero-image {
        width: 250px;
        height: 250px;
    }
    
    .section-title {
        font-size: 2rem;
        letter-spacing: 3px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about-text {
        text-align: center;
    }
    
    .about-riders-image {
        height: 350px;
        object-fit: cover;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 40px 30px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        gap: 20px;
    }
    
    .nav-link {
        font-size: 12px;
    }
    
    .hero-section {
        padding: 50px 15px 15px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        letter-spacing: 2px;
        margin-bottom: 15px;
    }
    
    .logo-container {
        margin-bottom: 15px;
    }
    
    .logo-octagon {
        width: 350px;
        height: 350px;
    }
    
    .logo-inner {
        width: 310px;
        height: 310px;
    }
    
    .hero-image {
        width: 600px;
        height: 600px;
    }
    
    .hero-description {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-top: 15px;
    }
    
    .about-riders-image {
        height: 300px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
}