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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #000;
    color: #fff;
    line-height: 1.4;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid #333;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
    padding: 0.5rem 0;
    backdrop-filter: blur(40px);
    border-bottom: 1px solid #444;
}

.navbar.hidden {
    transform: translateY(-100%);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.7;
}

.nav-right {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: opacity 0.3s ease;
    position: relative;
}

.nav-link:hover {
    opacity: 0.7;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: #fff;
    transition: width 0.3s ease;
}

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

.main-content {
    padding-top: 80px;
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1618005182384-a83a8bd57fbe?ixlib=rb-4.0.3&auto=format&fit=crop&w=2128&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.hero-content {
    max-width: 800px;
    padding: 0 2rem;
    position: relative;
    z-index: 3;
}

.hero-slide {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    position: relative;
    top: auto;
    left: auto;
    transform: none;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 8rem);
    font-weight: 700;
    letter-spacing: -2px;
    line-height: 0.9;
    margin: 0;
    opacity: 0;
    transform: translateY(50px);
    animation: slideUp 1s ease 0.5s forwards;
}

.hero-title.large {
    font-size: clamp(4rem, 12vw, 12rem);
    margin-top: -1rem;
    animation-delay: 0.7s;
}

.hero-text {
    margin-top: 3rem;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 1s ease 1s forwards;
}

.hero-text p {
    font-size: 1.2rem;
    color: #ccc;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.hero-indicators {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 3;
    animation: float 3s ease-in-out infinite;
}

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

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #fff;
    border-color: #fff;
}

.indicator:hover {
    border-color: #fff;
}

.work-section {
    padding: 8rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(60px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.work-section.animate {
    opacity: 1;
    transform: translateY(0);
}

.work-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.work-text h2 {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 2rem;
}

.work-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #ccc;
}

.work-text {
    transform: translateX(-40px);
    opacity: 0;
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.work-section.animate .work-text {
    transform: translateX(0);
    opacity: 1;
}

.work-featured {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    cursor: pointer;
    border-radius: 8px;
    transform: translateX(40px);
    opacity: 0;
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}

.work-section.animate .work-featured {
    transform: translateX(0);
    opacity: 1;
}

.work-featured .work-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    transition: transform 0.6s ease;
    position: relative;
}

.work-featured .work-image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.work-featured .work-info {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.work-featured .work-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.work-featured .work-info p {
    font-size: 0.9rem;
    color: #ccc;
    letter-spacing: 0.5px;
}

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

.work-featured:hover .work-image::before {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
}

.work-featured:hover .work-info {
    opacity: 1;
    transform: translateY(0);
}

.contact-section {
    padding: 8rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(60px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-section.animate {
    opacity: 1;
    transform: translateY(0);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
}

.contact-text h2 {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 2rem;
}

.contact-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #ccc;
}

.contact-text {
    transform: translateX(-40px);
    opacity: 0;
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.contact-section.animate .contact-text {
    transform: translateX(0);
    opacity: 1;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    transform: translateX(40px);
    opacity: 0;
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}

.contact-section.animate .contact-form {
    transform: translateX(0);
    opacity: 1;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-group:nth-child(1) { transition-delay: 0.6s; }
.form-group:nth-child(2) { transition-delay: 0.8s; }

.contact-section.animate .form-group {
    transform: translateY(0);
    opacity: 1;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
    text-transform: uppercase;
}

.form-group input {
    background: transparent;
    border: none;
    border-bottom: 1px solid #333;
    padding: 1rem 0;
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-bottom-color: #fff;
}

.form-group input::placeholder {
    color: #666;
}

.submit-btn {
    background: #fff;
    color: #000;
    border: none;
    padding: 1rem 2rem;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    transform: translateY(20px);
    opacity: 0;
}

.contact-section.animate .submit-btn {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 1s;
}

.submit-btn:hover {
    background: #ccc;
    transform: translateY(-2px);
}

.submit-btn:active {
    transform: translateY(0);
}

.footer {
    border-top: 1px solid #333;
    padding: 2rem;
    margin-top: 4rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-left p {
    font-size: 0.9rem;
    color: #666;
}

.footer-right {
    display: flex;
    gap: 2rem;
}

.footer-link {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #fff;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .nav-content {
        padding: 1rem;
    }
    
    .nav-right {
        gap: 1rem;
    }
    
    .nav-link {
        font-size: 0.8rem;
    }
    
    .work-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.about-section {
    display: none;
}