/* Equipment Page - Jazzy & Spicy Styles */

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

html {
    background-color: #0a0a0a;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
}

/* Navigation */
.main-nav {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(237, 135, 45, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
}

.logo {
    flex-shrink: 0;
}

.logo img,
.nav-logo {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    flex-wrap: wrap;
    justify-content: center;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 0.9rem;
}

.nav-links a:hover,
.nav-links a.active {
    color: #ed872d;
}

/* Burger Menu */
.burger-menu {
    display: none;
    cursor: pointer;
    padding: 0.5rem;
    align-items: center;
    gap: 0.5rem;
}

.burger {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: #fff;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.menu-text-close {
    display: none;
}

.burger-menu.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.burger-menu.toggle .line2 {
    opacity: 0;
}

.burger-menu.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}

.burger-menu.toggle .menu-text {
    display: none;
}

.burger-menu.toggle .menu-text-close {
    display: inline;
}

/* Hero Section */
.equipment-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 6rem 2rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.equipment-hero::before {
    content: '📸';
    position: absolute;
    font-size: 400px;
    opacity: 0.05;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-15deg);
}

.subtitle {
    font-size: 1.2rem;
    color: #ed872d;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.equipment-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(237, 135, 45, 0.5);
}

.intro-text {
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    opacity: 0.9;
}

.gear-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-box {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(237, 135, 45, 0.3);
    min-width: 150px;
    transition: all 0.3s;
}

.stat-box:hover {
    background: rgba(237, 135, 45, 0.2);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: #ed872d;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

/* Section Styles */
.equipment-section {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #ed872d, #ff6b6b);
    border-radius: 2px;
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gear-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 20px;
    padding: 2rem;
    border: 2px solid rgba(237, 135, 45, 0.2);
    transition: all 0.4s;
    position: relative;
}

.gear-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #ed872d, #ff6b6b);
    border-radius: 20px 20px 0 0;
}

.gear-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(237, 135, 45, 0.4);
    border-color: #ed872d;
}

.gear-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    transition: transform 0.3s;
}

.gear-card:hover .gear-icon {
    transform: scale(1.2) rotate(5deg);
}

.gear-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ed872d, #ff6b6b);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.gear-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.gear-card p {
    opacity: 0.8;
    margin-bottom: 1rem;
}

.gear-specs {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(237, 135, 45, 0.2);
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

.spec-item i {
    color: #ed872d;
}

/* Highlight Section */
.highlight-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 4rem 2rem;
    text-align: center;
    margin: 4rem 0;
}

.highlight-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 2rem;
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.highlight-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
}

.highlight-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.highlight-card i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.highlight-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #1a1a2e, #0f3460);
}

.cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, #ed872d, #ff6b6b);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(237, 135, 45, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(237, 135, 45, 0.6);
}

/* Footer */
footer {
    background: #0a0a0a;
    padding: 3rem 2rem 1rem;
    border-top: 1px solid rgba(237, 135, 45, 0.2);
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-column {
    text-align: left;
}

.footer-column h3 {
    color: #ed872d;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.footer-h3-spacing {
    margin-top: 1.5rem;
}

.footer-column p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.footer-column a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #ed872d;
}

.footer-link {
    color: #ed872d !important;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.footer-links li a {
    font-size: 0.9rem;
    opacity: 0.9;
}

.footer-links li a:hover {
    opacity: 1;
    color: #ed872d;
}

.social-media {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.social-media a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.social-media a:hover {
    opacity: 1;
    color: #ed872d;
}

.social-media .icon {
    width: 20px;
    text-align: center;
}

.service-areas {
    font-size: 0.85rem;
    line-height: 1.8;
}

.service-areas a {
    opacity: 0.9;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(237, 135, 45, 0.2);
}

.footer-bottom p {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Legacy social-links for compatibility */
.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.social-links a {
    color: #fff;
    font-size: 1.5rem;
    transition: all 0.3s;
}

.social-links a:hover {
    color: #ed872d;
    transform: scale(1.2);
}

.icon {
    margin-right: 0.3rem;
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 992px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        text-align: center;
    }

    .nav-links.nav-active {
        display: flex;
    }

    .burger-menu {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }
}

@media (max-width: 768px) {
    .gear-stats {
        gap: 1rem;
    }

    .stat-box {
        min-width: 120px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-column {
        text-align: center;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .social-media {
        align-items: center;
    }
}
