/* Team Page Styles */
.team-page {
    min-height: 100vh;
    padding: 8rem 0 4rem;
    background: #9a9a9a;
    position: relative;
}

/* Navigation Logo Positioning */
.nav-logo {
    position: absolute;
    left: 2rem;
    top: 0.3rem;
}

/* Coming Soon Overlay */
.coming-soon-overlay {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #9a9a9a;
    border: 2px solid rgba(223, 158, 30, 0.3);
    border-radius: 8px;
    margin: 3rem 0;
    padding: 4rem 2rem;
    overflow: hidden;
}

.coming-soon-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(223, 158, 30, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.coming-soon-content {
    text-align: center;
    z-index: 1;
    position: relative;
}

.coming-soon-title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 3rem;
    color: #df9e1e;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(223, 158, 30, 0.3);
}

.coming-soon-text {
    font-family: 'Orbitron', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    color: #ffffff;
    letter-spacing: 0.05em;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.team-intro {
    text-align: center;
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 4rem;
    margin-top: -1.5rem;
}

.team-grid {
    display: none;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.barber-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(223, 158, 30, 0.2);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.barber-card:hover {
    transform: translateY(-5px);
    border-color: rgba(223, 158, 30, 0.5);
    box-shadow: 0 10px 30px rgba(223, 158, 30, 0.15);
}

.barber-image-wrapper {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 2px solid rgba(223, 158, 30, 0.3);
}

.barber-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.barber-card:hover .barber-image {
    transform: scale(1.05);
}

.barber-info {
    padding: 2rem;
}

.barber-name {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #df9e1e;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.barber-story {
    color: #ffffff;
    line-height: 1.8;
    font-size: 0.95rem;
}

/* Back Button */
.back-button {
    display: inline-block;
    color: #df9e1e;
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.back-button:hover {
    color: #ffffff;
    transform: translateX(-5px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .team-page {
        padding: 6rem 0 3rem;
    }

    .coming-soon-title {
        font-size: 2.2rem;
    }

    .coming-soon-text {
        font-size: 1rem;
    }

    .coming-soon-overlay {
        min-height: 300px;
        padding: 3rem 1.5rem;
    }

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

    .barber-image-wrapper {
        height: 250px;
    }

    .barber-info {
        padding: 1.5rem;
    }

    .barber-name {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .barber-image-wrapper {
        height: 280px;
    }

    .team-intro {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }

    .coming-soon-title {
        font-size: 1.8rem;
        letter-spacing: 0.1em;
    }

    .coming-soon-text {
        font-size: 0.95rem;
    }

    .coming-soon-overlay {
        min-height: 250px;
        padding: 2.5rem 1rem;
    }
}
