/* css/team.css */

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    position: relative;
    overflow: hidden;
    animation: heroFloat 6s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-content {
    max-width: 1200px;
    z-index: 2;
    position: relative;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 300;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    margin-bottom: 30px;
    line-height: 1.1;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 10px rgba(255, 107, 107, 0.3), 0 0 20px rgba(255, 107, 107, 0.2); }
    to { text-shadow: 0 0 20px rgba(255, 209, 102, 0.3), 0 0 30px rgba(255, 209, 102, 0.2); }
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.5rem);
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
    color: var(--text-color);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-block;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-btn-primary {
    background: var(--gradient-1);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

.hero-btn-secondary {
    background: transparent;
    color: var(--text-color);
    border: 2px solid var(--accent-color);
}

.hero-btn-secondary:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    color: white;
}

/* Floating elements */
.floating-element {
    position: absolute;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
    color: var(--accent-color);
}

.floating-element:nth-child(1) { top: 20%; left: 10%; font-size: 40px; animation-delay: 0s; }
.floating-element:nth-child(2) { top: 60%; right: 10%; font-size: 30px; animation-delay: 2s; }
.floating-element:nth-child(3) { bottom: 20%; left: 15%; font-size: 35px; animation-delay: 4s; }

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

/* Section Styles */
section { padding: 80px 0; position: relative; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-title p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    color: #666;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.9) 0%, rgba(248, 249, 250, 0.7) 100%);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.team-member {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-member-image {
    height: 250px;
    overflow: hidden;
    position: relative;
    background: #eee; /* Placeholder bg */
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-member:hover .team-member-image img {
    transform: scale(1.1);
}

.team-member-content { padding: 25px; }
.team-member-name { font-size: 1.5rem; margin-bottom: 5px; color: var(--text-color); }
.team-member-position { color: var(--accent-color); margin-bottom: 15px; font-weight: 500; }
.team-member-bio { color: #666; margin-bottom: 20px; line-height: 1.5; }

.team-member-actions { display: flex; gap: 10px; margin-bottom: 15px; }

.team-member-message-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 15px;
    background: var(--gradient-1);
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.team-member-message-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.team-member-message-btn i { margin-right: 5px; }

.team-member-socials { display: flex; gap: 10px; }

.team-member-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.05);
    color: var(--text-color);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.team-member-socials a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    color: white;
}

/* Behind The Scenes Section */
.behind-the-scenes-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.9) 0%, rgba(248, 249, 250, 0.7) 100%);
    overflow: hidden;
}

.bts-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    cursor: grab;
    user-select: none;
}

.bts-container.dragging { cursor: grabbing; }

.bts-container::before, .bts-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.bts-container::before { left: 0; background: linear-gradient(to right, rgba(248, 249, 250, 0.9), transparent); }
.bts-container::after { right: 0; background: linear-gradient(to left, rgba(248, 249, 250, 0.9), transparent); }

.bts-grid {
    display: flex;
    gap: 30px;
    animation: autoScroll 30s linear infinite;
    width: fit-content;
}

.bts-container:hover .bts-grid, .bts-container.dragging .bts-grid {
    animation-play-state: paused;
}

@keyframes autoScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.bts-item {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    flex: 0 0 350px;
    width: 350px;
}

.bts-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.bts-media {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.bts-media img, .bts-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.bts-item:hover .bts-media img { transform: scale(1.1); }

.bts-content { padding: 25px; }
.bts-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; flex-wrap: wrap; gap: 10px; }
.bts-title { font-size: 1.5rem; color: var(--text-color); margin: 0; }
.bts-date {
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 500;
    background: rgba(78, 205, 196, 0.1);
    padding: 5px 12px;
    border-radius: 20px;
    white-space: nowrap;
}
.bts-description { color: #666; line-height: 1.5; margin-top: 15px; }

.bts-play-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex; align-items: center; justify-content: center;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.bts-item:hover .bts-play-overlay { opacity: 1; }

.bts-play-button {
    width: 60px; height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s ease;
}

.bts-play-button:hover { transform: scale(1.1); background: white; }
.bts-play-button i { font-size: 24px; color: var(--accent-color); margin-left: 5px; }

/* Responsive for date */
@media (max-width: 480px) {
    .bts-header { flex-direction: column; align-items: flex-start; }
    .bts-date { align-self: flex-start; }
}