@import url('https://fonts.googleapis.com/css2?family=Anton&family=Lexend:wght@100..900&family=Mona+Sans:ital,wght@0,200..900;1,200..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Oxanium:wght@200..800&family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #0a0a0a;
    color: #fff;
    overflow-x: hidden;
}

/* Hero container - reduced height for scrollable page */
.hero-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

/* Image covers the entire frame */
.photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Heading overlay positioned on top of the image */
.heading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    z-index: 2;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.5) 100%);
    padding: 30px 40px;
}

.heading-overlay h1 {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: white;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .heading-overlay h1 {
        font-size: 2rem;
        letter-spacing: 6px;
        padding: 15px 20px;
    }
}



/* Scrolling details */

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.scroll-indicator i {
    font-size: 1.2rem;
    color: #888;
    animation: fadeScroll 1.5s infinite;
    margin: -5px 0;
}

.scroll-indicator i:nth-child(1) {
    animation-delay: 0s;
}

.scroll-indicator i:nth-child(2) {
    animation-delay: 0.2s;
}

.scroll-indicator i:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes fadeScroll {
    0% {
        opacity: 0;
        transform: translateY(-8px);
    }

    50% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(8px);
    }
}

/* Content Section Styles */
.content-section {
    padding: 60px 40px;
    background: #0a0a0a;
}

.content-container {
    width: 100%;
    margin: 0 auto;
}

.content-section h2 {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.content-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #d97706;
}

.content-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #b0b0b0;
    margin-bottom: 20px;
}

.content-section h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
    margin: 40px 0 20px;
}

/* Specs Grid */
.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.spec-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(5px);
    animation: fadeInUp 0.6s ease backwards;
}

.spec-box:nth-child(1) {
    animation-delay: 0.1s;
}

.spec-box:nth-child(2) {
    animation-delay: 0.2s;
}

.spec-box:nth-child(3) {
    animation-delay: 0.3s;
}

.spec-box:nth-child(4) {
    animation-delay: 0.4s;
}

.spec-box:nth-child(5) {
    animation-delay: 0.5s;
}

.spec-box:nth-child(6) {
    animation-delay: 0.6s;
}

.spec-box:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(255, 255, 255, 0.07);
    border-color: #d97706;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 180, 216, 0.2);
}

.spec-box i {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.spec-box:hover i {
    transform: scale(1.1);
    color: #d97706;
}

.spec-box h4 {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    color: #fff;
}

.spec-box p {
    font-size: 1.3rem;
    font-weight: 700;
    color: #d97706;
    margin-bottom: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments for content */
@media (max-width: 768px) {
    .content-section {
        padding: 40px 20px;
    }

    .content-section h2 {
        font-size: 1.5rem;
    }

    .content-section p {
        font-size: 1rem;
    }

    .specs-grid {
        grid-template-columns: 1fr;
    }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #666, #888);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #888;
}