/* Page-specific styles for robots.html */

/* Navigation Styles - Mobile Responsive */
.main-nav {
    background: rgba(83, 5, 11, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid #eec707;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    height: 50px;
    width: auto;
}

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

.nav-links a {
    color: #53050b;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 10px 15px;
    border-radius: 25px;
}

.nav-links a:hover,
.nav-links a.active {
    color: #eec707;
    background: rgba(238, 199, 7, 0.1);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Back Button */
.back-button-container {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 999;
}

.back-button {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(238, 224, 213, 0.95);
    color: #53050b;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(238, 199, 7, 0.3);
}

.back-button:hover {
    background: rgba(238, 199, 7, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.back-arrow {
    font-size: 1.2rem;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(rgba(83, 5, 11, 0.8), rgba(246, 86, 6, 0.8)), url('../../assets/images/Track Flex 1.jpg') center/cover !important;
    color: white;
    padding: 140px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.page-hero .hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-hero .hero-subtitle {
    font-size: 1.4rem;
    color: #eec707;
    margin-bottom: 20px;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.page-hero .hero-description {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.95);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* Container for mobile responsiveness */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hide Tech Navigation */
.tech-navigation {
    display: none;
}

/* Technology Showcase Enhanced */
.technologies-section {
    background: #ffffff;
    padding: 80px 0;
}

.technology-showcase {
    margin-bottom: 100px;
    padding: 60px 40px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 1px solid rgba(238, 199, 7, 0.1);
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.technology-showcase:nth-child(even) {
    background: #f8f9fa;
}

/* Tech Header - Now in Left Column */
.tech-header {
    text-align: left;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 3px solid #eec707;
    width: 100%;
}

.tech-header .product-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    margin-bottom: 15px;
}

.tech-header .product-number {
    font-size: 3rem;
    font-weight: bold;
    color: #f65606;
    line-height: 1;
    background: linear-gradient(45deg, #f65606, #eec707);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tech-header .tech-title {
    font-size: 2.5rem;
    color: #53050b;
    margin: 0;
    font-weight: 700;
}

.tech-tagline {
    font-size: 1.2rem;
    color: #f65606;
    font-weight: 600;
    margin: 0;
    font-style: italic;
}

/* New Layout Structure - More space for left column */
.tech-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 50px;
    align-items: start;
    margin-bottom: 40px;
}

/* Left Column Content - Now includes header, description, details, and images */
.tech-main-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    gap: 30px;
}

.tech-link {
    display: inline-block;
    background: linear-gradient(45deg, #eec707, #f65606);
    color: #53050b;
    border: none;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(238, 199, 7, 0.4);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    min-width: 150px;
}

.tech-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(238, 199, 7, 0.6);
}

.next-tech {
    display: inline-block;
    background: rgba(238, 199, 7, 0.1);
    color: #53050b;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #eec707;
    font-size: 1.1rem;
}

.next-tech:hover {
    background: #eec707;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(238, 199, 7, 0.4);
}

/* Tech Description - More space now */
.tech-description {
    font-size: 1.2rem;
    color: #53050b;
    line-height: 1.8;
    padding: 25px;
    background: rgba(238, 224, 213, 0.3);
    border-radius: 15px;
    border-left: 5px solid #f65606;
    width: 100%;
    margin: 0;
}

/* Tech Details - More space now */
.tech-details {
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #eee0d5 100%);
    border-radius: 15px;
    border: 1px solid rgba(238, 199, 7, 0.3);
    width: 100%;
    margin: 0;
}

.tech-details h4 {
    color: #f65606;
    font-size: 1.4rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.tech-details p {
    color: #53050b;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-style: normal;
}

li {
    font-style: normal;
    color: #53050b;
}

footer li {
    color:#eee0d5;
}

.tech-features {
    position: sticky;
    top: 120px;
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border: 2px solid #eec707;
    height: fit-content;
}

.tech-features h3 {
    color: #f65606;
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-align: center;
    padding-bottom: 10px;
    border-bottom: 2px solid #eec707;
}

.tech-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tech-features li {
    color: #53050b;
    padding: 10px 12px;
    position: relative;
    line-height: 1.4;
    background: rgba(238, 224, 213, 0.2);
    border-radius: 8px;
    font-size: 0.9rem;
    border-left: 3px solid #eec707;
}

.tech-features li::before {
    content: "✓";
    color: #eec707;
    font-weight: bold;
    font-size: 1rem;
    position: absolute;
    left: -8px;
    top: 10px;
    background: #53050b;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Static Images - Now in Left Column at Bottom */
.tech-gallery {
    width: 100%;
    margin-top: 20px;
}

.main-image {
    margin-bottom: 20px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border: 3px solid #eec707;
    max-width: 100%;
}

.gallery-main {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.gallery-thumbnails {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.gallery-thumb {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 15px;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.gallery-thumb:hover,
.gallery-thumb.active {
    opacity: 1;
    border-color: #eec707;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Tech Actions - Now in Left Column at Bottom */
.tech-actions {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
    justify-content: flex-start;
    width: 100%;
}

/* Equipment Grid - Special Layout for Equipment Section */
.equipment-grid {
    display: grid;
    gap: 25px;
    margin-top: 20px;
    width: 100%;
}

.equipment-item {
    background: white;
    padding: 25px;
    border-radius: 15px;
    border-left: 5px solid #eec707;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.equipment-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.equipment-item h4 {
    color: #f65606;
    font-size: 1.2rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.equipment-item p {
    color: #53050b;
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 1rem;
}

.equipment-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.equipment-item li {
    color: #53050b;
    margin-bottom: 8px;
    font-size: 0.9rem;
    line-height: 1.4;
    padding-left: 20px;
    position: relative;
}

.equipment-item li::before {
    content: "→";
    color: #eec707;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .nav-container {
        padding: 0 30px;
    }
    
    .container {
        padding: 0 30px;
    }
    
    .tech-content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .tech-features {
        position: static;
        order: -1;
        max-width: 500px;
        margin: 0 auto 30px auto;
    }
    
    .tech-main-content {
        width: 100%;
        max-width: 100%;
    }
    
    .tech-header {
        text-align: center;
    }
    
    .tech-header .product-header {
        justify-content: center;
    }
    
    .gallery-thumbnails {
        justify-content: center;
    }
    
    .tech-actions {
        justify-content: center;
    }
    
    .technology-showcase {
        padding: 40px 30px;
        margin-bottom: 80px;
    }
}

@media (max-width: 768px) {
    /* Mobile Navigation */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(83, 5, 11, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 50px 0;
        transition: left 0.3s ease;
        gap: 20px;
        backdrop-filter: blur(10px);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links a {
        font-size: 1.2rem;
        padding: 15px 30px;
        width: 80%;
        text-align: center;
        border-radius: 10px;
        margin: 5px 0;
    }
    
    .nav-container {
        padding: 0 20px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .back-button-container {
        top: 80px;
        right: 15px;
    }
    
    .back-button {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .page-hero {
        padding: 120px 0 80px;
    }
    
    .page-hero h1 {
        font-size: 2.5rem;
    }
    
    .page-hero .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .page-hero .hero-description {
        font-size: 1rem;
    }
    
    .technology-showcase {
        margin-bottom: 60px;
        padding: 30px 20px;
    }
    
    .tech-header .product-header {
        flex-direction: column;
        gap: 10px;
    }
    
    .tech-header .product-number {
        font-size: 2.5rem;
    }
    
    .tech-header .tech-title {
        font-size: 2rem;
    }
    
    .tech-main-content {
        width: 100%;
        max-width: 100%;
    }
    
    .gallery-main {
        height: 300px;
    }
    
    .gallery-thumb {
        width: 80px;
        height: 80px;
    }
    
    .tech-actions {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .tech-link,
    .next-tech {
        text-align: center;
        min-width: 200px;
        width: 100%;
        max-width: 300px;
    }
    
    .tech-description {
        font-size: 1rem;
        padding: 20px;
    }
    
    .tech-details {
        padding: 20px;
    }
    
    .tech-features {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 15px;
        height: 60px;
    }
    
    .logo {
        height: 40px;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .page-hero {
        padding: 100px 0 60px;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .page-hero .hero-subtitle {
        font-size: 1rem;
    }
    
    .page-hero .hero-description {
        font-size: 0.9rem;
    }
    
    .tech-header .tech-title {
        font-size: 1.8rem;
    }
    
    .tech-header .product-number {
        font-size: 2rem;
    }
    
    .technology-showcase {
        padding: 20px 15px;
        margin-bottom: 40px;
    }
    
    .tech-description {
        font-size: 0.95rem;
        padding: 15px;
    }
    
    .gallery-main {
        height: 250px;
    }
    
    .gallery-thumb {
        width: 70px;
        height: 70px;
    }
    
    .tech-details {
        padding: 15px;
    }
    
    .tech-features {
        padding: 15px;
    }
    
    .tech-link,
    .next-tech {
        padding: 12px 20px;
        font-size: 1rem;
    }
}