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

body{
    margin: 0;
    padding: 0;
    padding-top: 100px;
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(to bottom,#000 30%, #6f6f6f 100%);
    color: #000;
    overflow-x: hidden;
}

/* Header Styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background-color: rgba(49, 49, 49, 0.98);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    min-height: 100px;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-right: 20px;
}

.logo img {
    width: 80px;
    height: 80px;
    margin-right: 15px;
    object-fit: contain;
}

.title {
    flex-shrink: 0;
    white-space: nowrap;
}

.title h1 {
    font-size: clamp(1.8rem, 2vw, 2.5rem);
    letter-spacing: 2px;
    color: rgb(212, 212, 212);
    margin-bottom: 5px;
    line-height: 1.2;
}

.title p {
    font-size: clamp(1.2rem, 1.5vw, 1.8rem);
    letter-spacing: 1px;
    color: rgb(180, 180, 180);
    line-height: 1.2;
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 1002;
}

.hamburger-menu span {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
}

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

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

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

.nav-menu {
    flex-shrink: 0;
    margin-left: auto;
}

.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
    padding: 0;
    margin: 0;
}

.nav-menu a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    letter-spacing: 1px;
    white-space: nowrap;
    padding: 8px 15px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.nav-menu a:hover {
    color: #d4d4d4;
    transform: translateY(-2px);
}

/* Mobile Responsiveness for Header */
@media (max-width: 768px) {
    .hamburger-menu {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 100px;
        right: -100%;
        width: 250px;
        height: calc(100vh - 100px);
        background-color: rgba(49, 49, 49, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: right 0.3s ease;
        z-index: 999;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 25px;
        width: 100%;
        text-align: center;
    }
    
    .nav-menu a {
        font-size: 1.2rem;
        padding: 15px 0;
        width: 100%;
        display: block;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .title h1 {
        font-size: 1.5rem;
    }
    
    .title p {
        font-size: 1rem;
    }
    
    .logo img {
        width: 60px;
        height: 60px;
    }
}
/* Hero Section */
.team-hero {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(20, 20, 20, 0.7)), url('../homepage/rp-studio3.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero-overlay h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: bold;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-overlay p {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-accent {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 1.2rem;
    letter-spacing: 2px;
    opacity: 0.8;
}

.hero-accent i {
    color: #d4d4d4;
    font-size: 1.5rem;
}

/* Team Showcase */
.team-showcase {
    background: #2a2a2a;
    padding: 4rem 2rem;
    color: white;
}

.team-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

.team-member {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.team-member.founder {
    animation-delay: 0.2s;
}

.team-member.manager {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.member-card {
    background: #1a1a1a;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid #444;
    display: grid;
    grid-template-columns: 300px 1fr;
    transition: all 0.3s ease;
}

.member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
    border-color: #666;
}

.member-image {
    position: relative;
    overflow: hidden;
}

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

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

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.member-card:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-weight: bold;
    font-size: 1.1rem;
}

.overlay-content i {
    font-size: 1.5rem;
    color: #d4d4d4;
}

.member-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.member-info h2 {
    font-size: 2.2rem;
    color: #d4d4d4;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.member-info .role {
    font-size: 1.3rem;
    color: #888;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.member-details {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.detail {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #ccc;
}

.detail i {
    color: #d4d4d4;
    width: 20px;
    text-align: center;
}

.member-bio {
    font-size: 1rem;
    line-height: 1.6;
    color: #aaa;
    font-style: italic;
}

/* Studio Values */
.studio-values {
    background: #1a1a1a;
    padding: 4rem 2rem;
    color: white;
}

.values-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.values-container h2 {
    font-size: 2.5rem;
    color: #d4d4d4;
    margin-bottom: 3rem;
    letter-spacing: 2px;
}

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

.value-card {
    background: #2a2a2a;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #444;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border-color: #666;
}

.value-card i {
    font-size: 3rem;
    color: #d4d4d4;
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.5rem;
    color: #d4d4d4;
    margin-bottom: 1rem;
}

.value-card p {
    color: #aaa;
    line-height: 1.5;
}

/* Call to Action */
.team-cta {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    padding: 4rem 2rem;
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: #d4d4d4;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.cta-content p {
    font-size: 1.3rem;
    color: #aaa;
    margin-bottom: 3rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.cta-btn.primary {
    background: linear-gradient(45deg, #d4d4d4, #f0f0f0);
    color: #1a1a1a;
}

.cta-btn.secondary {
    background: linear-gradient(45deg, #444, #666);
    color: white;
    border: 2px solid #666;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.cta-btn.primary:hover {
    background: linear-gradient(45deg, #f0f0f0, #ffffff);
}

.cta-btn.secondary:hover {
    background: linear-gradient(45deg, #555, #777);
    border-color: #777;
}

/* Mobile Responsiveness for Team Content */
@media (max-width: 768px) {
    .team-hero {
        height: 60vh;
        padding: 2rem 1rem;
    }

    .member-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .member-image img {
        height: 300px;
    }

    .member-info {
        padding: 1.5rem;
    }

    .member-info h2 {
        font-size: 1.8rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .cta-btn {
        width: 250px;
        justify-content: center;
    }
}