/* Layout CSS - Website 154 */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: linear-gradient(135deg, #1f1a0a 0%, #2a2010 50%, #1f1a0a 100%);
    color: #fef3c7;
    line-height: 1.6;
    min-height: 100vh;
}

.gear-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(31, 26, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 0 40px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    border-bottom: 2px solid #ea580c;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fb923c;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-links {
    display: flex;
    gap: 8px;
    list-style: none;
}

.nav-links a {
    color: #fcd34d;
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-links a:hover,
.nav-links a.active {
    background: #2a2415;
    border: 1px solid #ea580c;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: #fb923c;
}

.main-content {
    padding-top: 70px;
}

.gear-hero {
    padding: 80px 40px;
    text-align: center;
}

.gear-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.gear-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fb923c 0%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gear-hero p {
    font-size: 1.25rem;
    color: #fcd34d;
}

.gear-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    padding: 40px;
    max-width: 1600px;
    margin: 0 auto;
}

.gear-card {
    background: #2a2415;
    border-radius: 16px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 2px solid #92400e;
}

.gear-card:hover {
    transform: translateY(-8px);
    border-color: #ea580c;
    box-shadow: 0 20px 40px rgba(234, 88, 12, 0.4);
}

.gear-card .card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ea580c, #d97706);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.gear-card h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
    color: #fb923c;
}

.gear-card p {
    color: #fcd34d;
}

.gear-card .card-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ea580c, #d97706);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
}

.gear-section {
    padding: 80px 40px;
    background: rgba(234, 88, 12, 0.1);
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: #fb923c;
}

.gear-grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.gear-item {
    background: #2a2415;
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    border: 2px solid #92400e;
}

.gear-icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #ea580c, #d97706);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.gear-contact {
    padding: 80px 40px;
    background: linear-gradient(135deg, #2a2415 0%, #1f1a0a 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.gear-contact-card {
    background: #2a2415;
    padding: 35px;
    border-radius: 16px;
    text-align: center;
    border: 2px solid #92400e;
}

.gear-contact-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #ea580c, #d97706);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.gear-footer {
    background: #1f1a0a;
    padding: 40px;
    text-align: center;
    border-top: 2px solid #92400e;
}

.gear-footer p {
    color: #fcd34d;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .gear-nav {
        padding: 0 20px;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(31, 26, 10, 0.98);
        flex-direction: column;
        padding: 20px;
        gap: 10px;
        transform: translateY(-150%);
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .menu-toggle {
        display: flex;
    }

    .gear-hero {
        padding: 60px 20px;
    }

    .gear-hero h1 {
        font-size: 2rem;
    }

    .gear-grid {
        padding: 20px;
        grid-template-columns: 1fr;
    }

    .gear-section,
    .gear-contact {
        padding: 60px 20px;
    }

    .section-title {
        font-size: 1.8rem;
    }
}
