@font-face {
    font-family: 'AlteHaasBold';
    src: url('Fonts/AlteHaasGroteskBold.woff') format('woff');
}

@font-face {
    font-family: 'AlteHaasRegular';
    src: url('Fonts/AlteHaasGroteskRegular.woff') format('woff');
}

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

body {
    font-family: 'AlteHaasRegular';
    background: #1a1a1a;
    color: #f5f5f5;
    overflow-x: hidden;
    line-height: 1.6;
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 50px;
    background: transparent;
    z-index: 1000;
    transition: all 0.3s ease;
    backdrop-filter: blur(80px);
}

nav.scrolled {
    background: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(20px);
    padding: 20px 50px;
}

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

.logo {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #fff;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 50px;
    list-style: none;
}

.nav-links a {
    color: #f5f5f5;
    text-decoration: none;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #505050;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 1001;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: all 0.3s ease;
    transform-origin: center;
}

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

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

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

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

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(26, 26, 26, 0.3) 0%, rgba(26, 26, 26, 0.9) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 72px;
    font-weight: 700;
    letter-spacing: 12px;
    text-transform: uppercase;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeInUp 1.2s ease forwards;
}

.hero-subtitle {
    font-size: 12px;
    color: #808080;
    letter-spacing: 4px;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeInUp 1.2s ease 0.3s forwards;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    opacity: 0;
    animation: fadeInUp 1.2s ease 0.6s forwards;
}

.scroll-indicator span {
    display: block;
    width: 1px;
    height: 40px;
    background: #808080;
    margin: 0 auto 10px;
    animation: scrollLine 2s ease-in-out infinite;
}

.scroll-text {
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #808080;
}

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

@keyframes scrollLine {
    0%, 100% { transform: scaleY(0.3); transform-origin: top; }
    50% { transform: scaleY(1); }
}

.projects {
    padding: 0px 0 0px;
    max-width: 100%;
    margin: 0 auto;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    min-height: calc(100vh - 120px);
}

.project-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s ease;
}

.project-card::before {
    content: '';
    display: block;
    padding-bottom: 100%;
}

.project-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

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

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.7) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    transition: background 0.5s ease;
}

.project-card:hover .project-overlay {
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.85) 100%);
}

.project-title {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 6px;
    margin-bottom: 15px;
    text-transform: uppercase;
    line-height: 1;
    color: #fff;
    transform: translateY(0);
    transition: transform 0.5s ease;
}

.project-card:hover .project-title {
    transform: translateY(-10px);
}

.project-subtitle {
    font-size: 11px;
    color: #808080;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.8;
}

.project-description {
    font-size: 14px;
    line-height: 1.8;
    color: #f5f5f5;
    margin-top: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    max-height: 0;
    overflow: hidden;
}

.project-card:hover .project-description {
    opacity: 1;
    transform: translateY(0);
    max-height: 200px;
}

.btn-explore {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    border: 1px solid #f5f5f5;
    color: #fff;
    text-decoration: none;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    margin-top: 20px;
    opacity: 0;
    transform: translateY(20px);
    width: fit-content;
}

.project-card:hover .btn-explore {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
}

.btn-explore:hover {
    background: #fff;
    color: #1a1a1a;
}

.aboutus {
    padding: 150px 80px;
    max-width: 1600px;
    margin: 0 auto;
}

.aboutus-title {
    font-size: 72px;
    font-weight: 700;
    letter-spacing: 8px;
    margin-bottom: 80px;
    text-align: left;
    text-transform: uppercase;
}

.aboutus-card {
    border-top: 1px solid #404040;
    padding: 40px 0;
}

.aboutus-bio {
    font-size: 16px;
    line-height: 2;
    max-width: 1400px;
}

footer {
    padding: 100px 80px 60px;
    border-top: 1px solid #404040;
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-text {
    color: #808080;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    nav {
        padding: 15px 20px;
    }

    .nav-container {
        position: relative;
    }

    .logo {
        font-size: 20px;
        letter-spacing: 2px;
    }


    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: left 0.3s ease;
        z-index: 999;
    }

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

    .nav-links a {
        font-size: 18px;
        letter-spacing: 2px;
        padding: 15px 20px;
        border-bottom: 1px solid #404040;
        width: 200px;
        text-align: center;
        transition: all 0.3s ease;
    }

    .nav-links a:hover {
        background: #404040;
        color: #ffffff;
    }

    .projects {
        padding: 50px 0 80px;
        margin-top: 0;
    }

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

    .project-card:hover .project-description,
    .project-card:hover .btn-explore {
        opacity: 0;
        transform: translateY(20px);
    }

    .project-description {
        opacity: 1 !important;
        transform: translateY(0) !important;
        max-height: 200px !important;
    }

    .btn-explore {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }

    .project-title {
        font-size: 32px;
        letter-spacing: 3px;
    }

    .project-overlay {
        background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.85) 100%) !important;
    }

    .aboutus {
        padding: 80px 30px;
    }

    .aboutus-title {
        font-size: 48px;
    }
}

@media (max-width: 480px) {
    nav {
        padding: 12px 15px;
    }

    .logo {
        font-size: 18px;
        letter-spacing: 1px;
    }

    .hamburger-line {
        width: 22px;
        height: 2px;
    }

    .nav-links a {
        font-size: 16px;
        width: 180px;
        padding: 12px 15px;
    }
}

@media (max-width: 320px) {
    nav {
        padding: 10px 12px;
    }

    .logo {
        font-size: 16px;
    }
}