/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    text-align: left;
    padding: 40px 60px;
    position: relative;
    min-height: 82vh;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.25);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    max-width: none;
    width: 1200px;
    padding: 0;
}

.hero-title-logo {
    max-width: 600px !important;
    width: 100%;
    height: auto;
    margin-bottom: 30px;
}

.hero-location {
    font-size: 2.0rem;
    font-weight: 500;
    margin-bottom: 30px;
    color: #ffffff;
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 10px;
    text-decoration: none;
}

.cta-button.primary {
    background-color: #d32f2f;
    color: white;
}

.cta-button.primary:hover {
    background-color: #b71c1c;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(211, 47, 47, 0.4);
}

.cta-button.secondary {
    background-color: #ffffff;
    color: #333;
    border: 2px solid #333;
}

.cta-button.secondary:hover {
    background-color: #333;
    color: white;
    transform: translateY(-2px);
}

/* About Section */
.about {
    background-color: white;
    padding: 60px 20px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image-column {
    width: 100%;
}

.about-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.about-text-column {
    text-align: left;
}

.about h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

/* VelociRaptor Feature */
.velociraptor-feature {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    padding: 60px 20px;
    color: white;
}

.velociraptor-header {
    text-align: left;
    margin-bottom: 50px;
}

.velociraptor-logo {
    max-width: 550px;
    width: 100%;
    height: auto;
    margin-bottom: 25px;
}

.velociraptor-header .feature-text {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 1200px;
    margin: 0;
}

.velociraptor-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1440px;
    margin: 0 auto;
}

.velociraptor-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    aspect-ratio: 4 / 3;
}

.velociraptor-image:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

.feature-text {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 1200px;
    margin: 20px auto;
}

/* Vehicle Sections */
.vehicle-section {
    padding: 60px 20px;
}

.vehicle-section-light {
    background-color: #f9f9f9;
    color: #333;
}

.vehicle-section-dark {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    color: white;
}

.vehicle-section-header {
    text-align: left;
    margin-bottom: 50px;
}

.vehicle-section-logo {
    max-width: 550px !important;
    width: 100%;
    height: auto;
    margin-bottom: 25px;
}

.vehicle-section-title {
    width: 100%;
    height: auto;
    margin-bottom: 25px;
    font-size: 2.8rem;
    color: inherit !important;
}

.vehicle-section-header .feature-text {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 1200px;
    margin: 0;
}

.vehicle-section-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1440px;
    margin: 0 auto;
}

.vehicle-section-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    aspect-ratio: 4 / 3;
}

.vehicle-section-image:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

/* Video Gallery */
.video-gallery {
    background-color: white;
    padding: 80px 20px;
}

.video-gallery h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.video-item {
    background: #f5f5f5;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    display: block;
    color: inherit;
}

.video-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
    background: #000;
}

.video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-item:hover .video-thumbnail img {
    transform: scale(1.05);
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(211, 47, 47, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.video-item:hover .video-play-button {
    background: rgba(211, 47, 47, 1);
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(211, 47, 47, 0.5);
}

.video-title {
    padding: 15px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    text-align: center;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Bottom Feature */
.bottom-feature {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    padding: 80px 20px;
    text-align: center;
    color: white;
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bottom-feature-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.bottom-feature .container {
    position: relative;
    z-index: 2;
}

.cta-buttons {
    margin-top: 40px;
}

/* Footer */
.footer {
    background-color: #0d0d0d;
    color: #999;
    padding: 40px 20px;
    text-align: center;
}

.disclaimer {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.copyright {
    font-size: 0.9rem;
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 40px 30px;
    }

    .hero-title-logo {
        max-width: 400px !important;
    }

    .hero-location {
        font-size: 1.2rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .velociraptor-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .vehicle-section-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .about h2,
    .video-gallery h2 {
        font-size: 1.8rem;
    }

    .video-grid {
        grid-template-columns: 1fr;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 1rem;
        display: block;
        width: 100%;
        max-width: 300px;
        margin: 10px auto;
    }

    #hero-section .cta-button {
        margin: 100px 0px 0px 0px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 40px 20px;
        min-height: 400px;
    }

    .hero-title-logo {
        max-width: 300px !important;
    }

    .velociraptor-gallery {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .vehicle-section-gallery {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .feature-text,
    .about-text {
        font-size: 1.0rem;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.velociraptor-image,
.vehicle-section-image,
.video-item {
    animation: fadeIn 0.6s ease-out;
}

