/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* cursor: none; */
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
    overflow-x: hidden;
    width: 100vw;
}


/* Navigation */
header {
    position: fixed;
    width: 100vw;
    top: 0;
    z-index: 1000;
    padding: 2rem 0;
    mix-blend-mode: difference;
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 3rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    mix-blend-mode: normal;
    color: #ffffff;
    background-color: transparent;
}

.logo {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.01em;
    color: #ffffff;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    opacity: 1;
}

.nav-center {
    display: flex;
    gap: 1.5rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-center a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 0.01em;
    transition: opacity 0.3s ease;
}

.nav-center a:hover {
    opacity: 0.8;
}

.copyright {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.01em;
    color: #ffffff;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    opacity: 1;
}

/* Hero Section */
#hero {
    min-height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0F0E0E;
    padding: 0 2.5rem;
    position: relative;
}

.hero-content {
    text-align: center;
    color: #ffffff;
    width: 100%;
    padding: 0 3rem;
}

.hero-content h1 {
    font-size: 14vw;
    font-weight: 400;
    letter-spacing: -0.09em;
    line-height: 1;
    margin-bottom: 0;
}

.hero-description {
    font-size: 1rem;
    font-weight: 600;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.2;
    opacity: 0.9;
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        padding: 1rem 1.5rem;
    }

    .nav-center {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 4.5rem;
    }
    
    .hero-description {
        font-size: 0.85rem;
        bottom: 2rem;
    }
}

@media (max-width: 480px) {
    /* Navigation */
    header {
        padding: 0.8rem 0;
    }

    nav {
        padding: 0.6rem 1rem;
    }

    .nav-center {
        gap: 0.8rem;
        font-size: 0.65rem;
    }

    .nav-center a {
        font-size: 0.65rem;
        padding: 0.25rem 0.5rem;
    }

    .logo {
        font-size: 0.7rem;
        font-weight: 500;
    }

    .copyright {
        font-size: 0.6rem;
        opacity: 0.8;
    }

    /* Hero Section */
    #hero {
        padding: 0 1rem;
        min-height: 85vh;
    }

    .hero-content {
        padding: 0 0.5rem;
    }

    .hero-content h1 {
        font-size: 2.8rem;
        line-height: 1.1;
    }
    
    .hero-description {
        font-size: 0.75rem;
        bottom: 1.5rem;
        max-width: 250px;
    }

    /* Work Section */
    .work-container {
        padding: 0 1rem;
    }

    #work h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .work-grid {
        row-gap: 2.5rem;
    }

    .work-info h3 {
        font-size: 1.1rem;
    }

    .work-info p {
        font-size: 0.6rem;
    }

    /* Footer */
    .footer-cta h2 {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }

    .footer-button {
        font-size: 0.7rem;
        padding: 0.7rem 1.5rem;
    }

    .footer-bottom {
        gap: 1rem;
        padding: 0 1rem;
    }
}

/* Work Section */
#work {
    padding: 8rem 0 0 0;
    background-color: #0F0E0E;
    color: #ffffff;
}

#work h2 {
    font-size: 4.5rem;
    font-weight: 400;
    margin-bottom: 3.5rem;
    letter-spacing: -0.02em;
    text-align: left;
    /* padding: 0 3rem; */
}

.work-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 4rem 0 3rem;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    margin-bottom: 0;
    row-gap: 6rem;
}

.work-item {
    position: relative;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.work-item:nth-child(odd) {
    padding-right: 2.5rem;
}

.work-item:nth-child(even) {
    padding-left: 2.5rem;
}

.work-image {
    width: 100%;
    overflow: hidden;
    margin-bottom: 1rem;
    position: relative;
}

.work-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
    cursor: pointer;
}

.work-info {
    text-align: left;
    padding: 0;
    width: 100%;
    position: relative;
    left: 0;
}

.work-info h3 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 0.35rem;
    letter-spacing: -0.02em;
    text-align: left;
}

.work-info p {
    font-size: 0.75rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.01em;
    text-align: left;
}

.see-all-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 4rem 0 0 0;
    padding-bottom: 2rem;
}

.see-all {
    display: inline-block;
    color: #0F0E0E;
    background-color: #ffffff;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.see-all:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

/* Uniform image sizes for all work items */
.work-item:nth-child(1) .work-image {
    aspect-ratio: 16/9;
    margin-top: 0;
    width: 100%;
}

.work-item:nth-child(1) .work-info {
    width: 100%;
}

.work-item:nth-child(2) .work-image {
    aspect-ratio: 16/9;
    width: 100%;
    margin-left: 0;
    margin-top: 0;
}

.work-item:nth-child(2) .work-info {
    width: 100%;
    margin-left: 0;
}

.work-item:nth-child(3) .work-image {
    aspect-ratio: 16/9;
    margin-top: 0;
    width: 100%;
}

.work-item:nth-child(3) .work-info {
    width: 100%;
}

.work-item:nth-child(4) .work-image {
    aspect-ratio: 16/9;
    margin-top: 0;
    width: 100%;
    margin-left: 0;
}

.work-item:nth-child(4) .work-info {
    width: 100%;
    margin-left: 0;
}

@media (max-width: 1024px) {
    /* Navigation */
    nav {
        padding: 1.5rem 2rem;
    }

    /* Hero Section */
    .hero-content {
        padding: 0 2rem;
    }

    .hero-content h1 {
        font-size: 8vw;
    }

    /* Work Section */
    .work-container {
        padding: 0 2rem;
    }

    .work-item:nth-child(odd) {
        padding-right: 1.5rem;
    }

    .work-item:nth-child(even) {
        padding-left: 1.5rem;
    }

    #work h2 {
        font-size: 3.5rem;
        padding: 0;
    }

    .work-grid {
        row-gap: 5rem;
    }

    /* Footer */
    .footer-container {
        padding: 0 2rem;
    }

    .footer-cta h2 {
        font-size: 3.8rem;
    }
}

@media (max-width: 768px) {
    /* Navigation */
    header {
        padding: 1rem 0;
        background-color: rgba(15, 14, 14, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    nav {
        padding: 0.8rem 1.5rem;
        background-color: transparent;
    }

    .nav-center {
        display: flex;
        position: static;
        transform: none;
        gap: 1rem;
        font-size: 0.7rem;
    }

    .nav-center a {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
        border-radius: 6px;
        transition: all 0.3s ease;
        min-height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-center a:hover {
        background-color: rgba(255, 255, 255, 0.1);
        transform: translateY(-1px);
    }

    .nav-center a:active {
        transform: translateY(0);
        background-color: rgba(255, 255, 255, 0.2);
    }

    .logo {
        font-size: 0.8rem;
        font-weight: 500;
    }

    .copyright {
        font-size: 0.7rem;
        opacity: 0.8;
    }

    /* Hero Section */
    #hero {
        padding: 0 1.5rem;
        min-height: 90vh;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .hero-content h1 {
        font-size: 3.5rem;
        line-height: 1.1;
    }

    .hero-description {
        font-size: 0.8rem;
        bottom: 2rem;
        width: 100%;
        max-width: 300px;
    }

    /* Work Section */
    #work {
        padding: 4rem 0 0 0;
    }

    .work-container {
        padding: 0 1.5rem;
    }

    #work h2 {
        font-size: 2.5rem;
        margin-bottom: 2.5rem;
        padding: 0;
    }

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

    .work-item {
        padding: 0;
        margin-bottom: 0;
    }

    .work-item:nth-child(odd),
    .work-item:nth-child(even) {
        padding: 0;
    }

    .work-item:nth-child(n) .work-image,
    .work-item:nth-child(n) .work-info {
        width: 100%;
        margin-left: 0;
    }

    .work-info h3 {
        font-size: 1.3rem;
        margin-bottom: 0.25rem;
    }

    .work-info p {
        font-size: 0.65rem;
    }

    .see-all-container {
        margin: 2rem 0 0 0;
        padding-bottom: 1.5rem;
    }

    .see-all {
        font-size: 0.7rem;
        padding: 0.6rem 1rem;
    }

    .work-item:nth-child(n) .work-image {
        margin-top: 0;
    }
}

/* Footer Styles */
footer {
    background-color: #0F0E0E;
    color: #ffffff;
    padding: 12rem 0 2rem;
    width: 100%;
}

.footer-container {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.footer-cta {
    text-align: center;
    margin-bottom: 6rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-cta h2 {
    font-size: 5rem;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 6rem;
}

.footer-button {
    display: inline-block;
    color: #0F0E0E;
    background-color: #ffffff;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    padding: 0.85rem 2rem;
    border: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.footer-button:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.availability {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.02em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.availability::after {
    content: '';
    width: 8px;
    height: 8px;
    background-color: #4CAF50;
    border-radius: 50%;
    display: inline-block;
    animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0.4; }
    100% { opacity: 1; }
}

.footer-contact {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-link {
    display: block;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    margin: 0.5rem 0;
    transition: opacity 0.3s ease;
}

.contact-link:hover {
    opacity: 0.8;
}

.footer-bottom {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    padding: 0 3rem;
    margin-top: auto;
}

.footer-credit, .footer-copyright {
    line-height: 1.6;
}

.footer-copyright {
    text-align: right;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.footer-social a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #ffffff;
}

@media (max-width: 1024px) {
    .footer-container {
        padding: 0 2rem;
    }

    .footer-cta h2 {
        font-size: 3.8rem;
    }
}

@media (max-width: 768px) {
    footer {
        padding: 6rem 0 2rem;
    }

    .footer-container {
        padding: 0 2rem;
    }

    .footer-cta h2 {
        font-size: 2.8rem;
        margin-bottom: 2rem;
    }

    .footer-bottom {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
        padding: 0 2rem;
    }

    .footer-copyright {
        text-align: center;
    }

    .footer-social {
        order: -1;
    }

    .footer-button {
        font-size: 0.75rem;
        padding: 0.75rem 1.8rem;
    }
}

/* Remove cursor-follower styles */
.cursor-follower {
    display: none;
}
