/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-black: #000000;
    --primary-white: #ffffff;
    --accent-yellow: #FFD700;
    --accent-pink: #FF69B4;
    --accent-purple: #9B59B6;
    --text-light: #f5f5f5;
    --text-gray: #999999;
    --instagram-gradient: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    --youtube-red: #FF0000;
    --transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--primary-black);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.2;
}

/* Typography */
.heading-100 {
    font-size: clamp(3rem, 8vw, 8rem);
    font-weight: 900;
    line-height: 0.85;
    letter-spacing: -0.02em;
}

.heading-60 {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 0.9;
}

.heading-45 {
    font-size: clamp(1.5rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 0.9;
}

.heading-28 {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 600;
}

.body-text {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    line-height: 1.6;
    font-weight: 400;
}

/* Layout */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 2rem;
    background: transparent;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.logo:hover {
    color: var(--accent-yellow);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--accent-yellow);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-light);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--primary-black);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.7)),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><rect fill="%23000" width="1000" height="1000"/><path fill="%23330000" d="M300 400c100-50 200 0 300-100s200 50 200 200-100 150-200 100-200-50-300 0-100-150 0-200z"/></svg>') center/cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-title {
    color: var(--text-light);
    text-transform: uppercase;
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-corners {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid var(--accent-yellow);
}

.hero-corners.top-left {
    top: 2rem;
    left: 2rem;
    border-right: none;
    border-bottom: none;
}

.hero-corners.top-right {
    top: 2rem;
    right: 2rem;
    border-left: none;
    border-bottom: none;
}

.hero-corners.bottom-left {
    bottom: 2rem;
    left: 2rem;
    border-right: none;
    border-top: none;
}

.hero-corners.bottom-right {
    bottom: 2rem;
    right: 2rem;
    border-left: none;
    border-top: none;
}

.play-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    color: var(--accent-yellow);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: var(--transition);
    margin-top: 2rem;
}

.play-button:hover {
    transform: translateY(-2px);
}

.play-icon {
    width: 50px;
    height: 50px;
    border: 2px solid var(--accent-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.play-icon::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 12px solid var(--accent-yellow);
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    margin-left: 3px;
}

/* Bio Section */
.bio {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    padding: 8rem 0;
    position: relative;
}

.bio-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.bio-header {
    text-align: center;
    margin-bottom: 4rem;
}

.bio-title {
    color: var(--accent-yellow);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.bio-subtitle {
    color: var(--text-gray);
    font-size: 1.2rem;
    font-weight: 300;
}

.bio-content {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.bio-content p {
    margin-bottom: 1.5rem;
}

.bio-highlight {
    color: var(--accent-yellow);
    font-weight: 600;
}

/* Social Media Section */
.social-section {
    padding: 6rem 0;
    background: var(--primary-black);
}

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

.social-card {
    position: relative;
    padding: 3rem;
    border-radius: 20px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    transition: var(--transition);
    cursor: pointer;
    overflow: hidden;
}

.social-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: var(--transition);
}

.social-card.instagram::before {
    background: var(--instagram-gradient);
}

.social-card.youtube::before {
    background: linear-gradient(135deg, var(--youtube-red) 0%, #CC0000 100%);
}

.social-card:hover::before {
    opacity: 0.1;
}

.social-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.social-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    font-size: 2.5rem;
}

.social-card.instagram .social-icon {
    background: var(--instagram-gradient);
    color: white;
}

.social-card.youtube .social-icon {
    background: var(--youtube-red);
    color: white;
}

.social-handle {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.social-description {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-yellow);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.social-link:hover {
    gap: 1rem;
}

/* Services Section */
.services {
    background: var(--primary-black);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.services-container {
    width: 100%;
    padding: 0 2rem;
}

.services-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 80vh;
}

.service-item {
    position: relative;
    margin: 0rem 0;
    cursor: pointer;
    transition: var(--transition);
    padding: 2rem 0;
}

.service-item:hover {
    transform: translateX(2rem);
}

.service-title {
    color: var(--text-light);
    text-transform: uppercase;
    margin-bottom: 1rem;
    transition: var(--transition);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.02em;
}

.service-item:hover .service-title {
    color: var(--accent-yellow);
}

.service-description {
    color: var(--text-gray);
    max-width: 400px;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
    font-size: 0.9rem;
    line-height: 1.4;
    margin-left: 1rem;
}

.service-item:hover .service-description {
    opacity: 1;
    transform: translateY(0);
}

.service-number {
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    color: var(--text-gray);
    font-weight: 300;
}

/* About Section */
.about {
    background: var(--text-light);
    color: var(--primary-black);
    padding: 8rem 0;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-title {
    color: var(--primary-black);
    margin-bottom: 3rem;
}

.about-text {
    color: var(--primary-black);
    margin-bottom: 2rem;
}

/* Work Section */
.work {
    background: var(--primary-black);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.work-container {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    padding: 0 2rem;
}

.work-title-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.work-title {
    color: var(--text-light);
    text-transform: uppercase;
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 900;
    line-height: 0.8;
    letter-spacing: -0.03em;
}

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

.work-item {
    position: relative;
    aspect-ratio: 4/3;
    background: #1a1a1a;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

.work-item:hover {
    transform: scale(1.05);
}

.work-item.large {
    grid-column: span 2;
    aspect-ratio: 16/9;
}

.work-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.8) 100%);
    pointer-events: none;
    z-index: 5;
}

.work-info {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    z-index: 2;
}

.work-client {
    color: var(--accent-yellow);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    margin-bottom: 0.3rem;
    letter-spacing: 0.05em;
}

.work-project {
    color: var(--text-light);
    font-size: 0.7rem;
    text-transform: uppercase;
    opacity: 0.8;
}

.work-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 0.8rem;
}

/* Video Container Styles */
.video-container {
    position: relative;
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
    z-index: 10;
    pointer-events: auto;
}

.work-item.large .video-container {
    aspect-ratio: 16/9;
}

/* Contact Section */
.contact {
    background: var(--primary-black);
    padding: 8rem 0;
    text-align: center;
}

.contact-title {
    color: var(--text-light);
    text-transform: uppercase;
    margin-bottom: 3rem;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--accent-yellow);
    color: var(--primary-black);
    padding: 1.5rem 3rem;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 50px;
    transition: var(--transition);
}

.contact-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: var(--transition);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Blog Specific Styles */
.nav-link.active {
    color: var(--accent-yellow);
}

/* Blog Hero Section */
.blog-hero {
    height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-black);
    margin-top: 100px;
}

.blog-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
}

.blog-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.blog-hero-title {
    color: var(--text-light);
    text-transform: uppercase;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.blog-hero-subtitle {
    color: var(--text-gray);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Featured Post Section */
.featured-post {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.featured-badge {
    display: inline-block;
    background: var(--accent-yellow);
    color: var(--primary-black);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.featured-article {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.featured-image {
    position: relative;
    aspect-ratio: 16/10;
    border-radius: 12px;
    overflow: hidden;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #333 0%, #555 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 1rem;
}

.featured-info {
    color: var(--text-light);
}

.post-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.post-category {
    color: var(--accent-yellow);
    font-weight: 600;
}

.post-date {
    color: var(--text-gray);
}

.featured-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.featured-excerpt {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-yellow);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.read-more-btn:hover {
    gap: 1rem;
}

/* Blog Grid Section */
.blog-grid {
    padding: 6rem 0;
    background: var(--primary-black);
}

.blog-grid-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
}

.section-title {
    color: var(--text-light);
    text-transform: uppercase;
}

.blog-filters {
    display: flex;
    gap: 1rem;
}

.filter-btn {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--text-gray);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    border-color: var(--accent-yellow);
    color: var(--accent-yellow);
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.blog-post {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
}

.blog-post:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.post-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.post-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.post-image:hover .post-overlay {
    opacity: 1;
}

.post-link {
    color: var(--accent-yellow);
    text-decoration: none;
    font-weight: 600;
    padding: 0.8rem 1.5rem;
    border: 2px solid var(--accent-yellow);
    border-radius: 25px;
    transition: var(--transition);
}

.post-link:hover {
    background: var(--accent-yellow);
    color: var(--primary-black);
}

.post-content {
    padding: 2rem;
}

.post-title {
    margin-bottom: 1rem;
}

.post-title a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.3;
    transition: var(--transition);
}

.post-title a:hover {
    color: var(--accent-yellow);
}

.post-excerpt {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.read-time {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.post-tags {
    display: flex;
    gap: 0.5rem;
}

.tag {
    background: rgba(255, 215, 0, 0.1);
    color: var(--accent-yellow);
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Load More Section */
.load-more-section {
    text-align: center;
}

.load-more-btn {
    background: transparent;
    border: 2px solid var(--accent-yellow);
    color: var(--accent-yellow);
    padding: 1rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.load-more-btn:hover {
    background: var(--accent-yellow);
    color: var(--primary-black);
}

/* Newsletter Section */
.newsletter-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-title {
    color: var(--text-light);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.newsletter-subtitle {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    background: transparent;
    color: var(--text-light);
    font-size: 1rem;
}

.newsletter-input::placeholder {
    color: var(--text-gray);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--accent-yellow);
}

.newsletter-btn {
    background: var(--accent-yellow);
    color: var(--primary-black);
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

/* Blog Footer */
.blog-footer {
    background: var(--primary-black);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-title {
    color: var(--text-light);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-text {
    color: var(--text-gray);
    line-height: 1.6;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-yellow);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition);
}

.footer-social a:hover {
    color: var(--accent-yellow);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-gray);
}

/* Mobile Styles */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 100%;
        background: var(--primary-black);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: var(--transition);
    }

    .nav-links.active {
        right: 0;
    }

    .menu-toggle {
        display: flex;
        z-index: 1001;
    }

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

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

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

    .work-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

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

    .work-item.large {
        grid-column: span 1;
    }

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

    .container {
        padding: 0 1rem;
    }

    /* Blog Mobile Styles */
    .blog-grid-header {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .blog-filters {
        flex-wrap: wrap;
        justify-content: center;
    }

    .featured-article {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

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

    .newsletter-form {
        flex-direction: column;
    }

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