/* Base Styles */
:root {
    --primary: #ff6f61;
    --dark: #121212;
    --medium: #1a1a1a;
    --light: #ffffff;
    --text-light: #eeeeee;
    --text-muted: #aaaaaa;
}

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

body {
    font-family: 'Poppins', sans-serif;
    background: var(--dark);
    color: var(--text-light);
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

h1, h2, h3, h4 {
    font-weight: 600;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Top Header */
.top-header {
    background: var(--dark);
    padding: 0.75rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.top-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.name-title {
    font-size: 0.9rem;
}

.name-title .name {
    font-weight: 600;
}

.name-title .title {
    color: var(--text-muted);
    margin-left: 0.5rem;
}

.navigation ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.navigation ul li a {
    font-size: 0.9rem;
    transition: color 0.3s ease;
    position: relative;
}

.navigation ul li a:hover {
    color: var(--primary);
}

.navigation ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.navigation ul li a:hover::after {
    width: 100%;
}

/* Video Header */
#video-header {
    height: 100vh;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* About Section */
#about {
    padding: 6rem 0;
    background: linear-gradient(to bottom, var(--medium) 0%, var(--dark) 100%);
}

.about-content h2 {
    margin-bottom: 3rem;
    text-align: center;
    font-size: 2.5rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.experience-badge {
    display: inline-block;
    background: rgba(255, 111, 97, 0.2);
    color: var(--primary);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem;
    margin: 1rem 0 2rem;
    border: 1px solid rgba(255, 111, 97, 0.3);
    font-weight: 500;
}

.intro-statement {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: var(--text-light);
}

.expertise {
    margin-top: 2rem;
}

.expertise h4 {
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.expertise ul {
    display: grid;
    gap: 1rem;
    padding: 0;
    list-style: none;
}

.expertise li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
}

.expertise li::before {
    content: "▹";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 1.2rem;
}

.expertise li strong {
    color: var(--light);
    font-weight: 600;
}

.highlight-projects {
    margin-top: 3rem;
}

.highlight-projects h4 {
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.tag {
    background: rgba(255,255,255,0.1);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.tag:hover {
    background: var(--primary);
    color: var(--dark);
}

.image-placeholder {
    background: linear-gradient(45deg, #252525 0%, #1a1a1a 100%);
    border-radius: 8px;
    height: 100%;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    font-style: italic;
    border: 1px dashed #333;
}

.cta-block {
    text-align: center;
    margin-top: 4rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 3rem;
}

.cta-text {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
    font-style: italic;
    color: var(--text-light);
}

.cta-button {
    display: inline-block;
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: var(--primary);
    color: var(--dark);
}

/* Work Section */
#work {
    padding: 6rem 0;
    background: var(--dark);
}

#work h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.video-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .video-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.video-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.video-card iframe {
    width: 100%;
    height: 250px;
    border: none;
    display: block;
}

.video-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.25rem;
}

.project-description {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Clients Section */
#clients {
    padding: 6rem 0;
    background: var(--medium);
}

#clients h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.client-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .client-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.client-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.client-logo:hover {
    background: rgba(255,255,255,0.1);
    transform: scale(1.05);
}

.client-logo img {
    max-width: 100%;
    height: auto;
    max-height: 60px;
    filter: grayscale(100%) brightness(1.5);
    transition: filter 0.3s ease;
}

.client-logo:hover img {
    filter: grayscale(0%) brightness(1);
}

/* Contact Section */
#contact {
    padding: 6rem 0;
    background: var(--dark);
    text-align: center;
}

#contact h2 {
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.email {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 2rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.email:hover {
    transform: scale(1.05);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.social-link {
    color: var(--text-light);
    transition: all 0.3s ease;
    position: relative;
}

.social-link:hover {
    color: var(--primary);
}

.social-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.social-link:hover::after {
    width: 100%;
}

/* Footer */
footer {
    background: #000;
    color: var(--text-muted);
    text-align: center;
    padding: 2rem 0;
    font-size: 0.9rem;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .top-header {
        padding: 0.5rem 0;
    }

    .navigation ul {
        gap: 1rem;
    }

    #video-header {
        height: 60vh;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .image-placeholder {
        min-height: 250px;
    }

    .email {
        font-size: 1.5rem;
    }

    .social-links {
        flex-direction: column;
        gap: 1rem;
    }
}