@import url('https://fonts.googleapis.com/css2?family=Hedvig+Letters+Serif:opsz@12..24&family=Spectral:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&family=TASA+Orbiter:wght@400..800&family=Zalando+Sans:ital,wght@0,200..900;1,200..900&display=swap');


@font-face {
    font-family: "PP Neue Montreal";
    font-style: normal;
    font-weight: 400;
    src:
        local("PP Neue Montreal"),
        url("/wp-content/themes/sixtyfivedesign/dist/fonts/ppneuemontreal-book.woff")
            format("woff");
}

@font-face {
    font-family: "PP Neue Montreal Thin";
    font-style: normal;
    font-weight: 100;
    src:
        local("PP Neue Montreal"),
        url("/wp-content/themes/sixtyfivedesign/dist/fonts/ppneuemontreal-thin.woff")
            format("woff");
}
@font-face {
    font-family: "PP Neue Montreal Medium";
    font-style: normal;
    font-weight: 500;
    src:
        local("PP Neue Montreal"),
        url("/wp-content/themes/sixtyfivedesign/dist/fonts/ppneuemontreal-medium.woff")
            format("woff");
}

@font-face {
    font-family: "SF_Serif";
    src: url("/wp-content/themes/sixtyfivedesign/dist/fonts/f96b6ce04ef88349.woff2")
        format("woff2");
}
@font-face {
    font-family: "SF_Sans";
    src: url("/wp-content/themes/sixtyfivedesign/dist/fonts/bb59085d7112bbe1.woff2")
        format("woff2");
}






@font-face {
    font-family: "GT Sectra Fine";
    src:
        url("/wp-content/themes/sixtyfivedesign/dist/sectra-695c262bacc7d6849ba6f9403d34bf56.woff2")
            format("woff2"),
        url("/wp-content/themes/sixtyfivedesign/dist/sectra-695c262bacc7d6849ba6f9403d34bf56.woff")
            format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}





@font-face {
    font-family: "ABC Mono";
    src:
        url("/wp-content/themes/sixtyfivedesign/dist/f96b6ce04ef88349.p.woff2")
            format("woff2"),
        url("/wp-content/themes/sixtyfivedesign/dist/f96b6ce04ef88349.p.woff")
            format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}


.zalando-sans {
  font-family: "Zalando Sans", sans-serif;
  font-weight: 300;
  font-style: normal;
}


.tasa-orbiter {
  font-family: "TASA Orbiter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}


:root {
    --bg: #ffffff;
    --text: #111111;
    --color-white: #fff;
    --accent: #f5f5f5;
    --font-ppneuemontreal: "PP Neue Montreal", arial, sans-serif;
    --font-sans: "SF Sans", "PP Neue Montreal", arial, sans-serif;
    --font-serif: "SF Serif", "PP Neue Montreal", arial, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none !important; /* Hide default cursor for custom one */
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: "PP Neue Montreal", sans-serif;
    overflow-x: hidden;
    opacity: 0;
    transition: opacity 1s ease;
}

body.loaded {
    opacity: 1;
}

/* Custom Cursor */
.custom-cursor {
    position: fixed;
    width: 12px;
    height: 12px;
    background: var(--text);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
        width 0.3s ease,
        height 0.3s ease,
        background 0.3s ease;
    transform: translate(-50%, -50%);
}

.custom-cursor.active {
    width: 80px;
    height: 80px;
    background: #111;
}

.cursor-text {
    color: white;
    font-size: 10px;
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.custom-cursor.active .cursor-text {
    opacity: 1;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 30px 40px;
    z-index: 1000;
    mix-blend-mode: difference;
    color: white;
}

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

.logo svg {
    fill: currentColor;
    width: 33px;
}

.menu-trigger {
    display: flex;
    align-items: center;
    gap: 15px;
}

.burger {
    width: 24px;
    height: 10px;
    position: relative;
}

.burger span {
    display: block;
    width: 100%;
    height: 1px;
    background: currentColor;
    position: absolute;
    transition: transform 0.3s ease;
}

.burger span:last-child {
    bottom: 0;
}

/* Mega Menu */
.mega-menu {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #111;
    color: white;
    z-index: 900;
    transition: top 0.6s cubic-bezier(0.85, 0, 0.15, 1);
    display: flex;
    align-items: center;
    padding: 0 10%;
}

.mega-menu.open {
    top: 0;
}

.mega-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    width: 100%;
    align-items: center;
}

.mega-links {
    display: flex;
    flex-direction: column;
}

.mega-item {
    font-family: "ABC Mono";
    font-size: clamp(40px, 8vw, 120px);
    text-decoration: none;
    color: rgba(255, 255, 255, 0.3);
    transition:
        color 0.3s ease,
        transform 0.3s ease;
    line-height: 1;
}

.mega-item:hover {
    color: white;
    transform: translateX(20px);
}

.mega-preview {
    height: 400px;
    overflow: hidden;
    border-radius: 10px;
    display: none;
}

@media (min-width: 1024px) {
    .mega-preview {
        display: block;
    }
}

.mega-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

/* Hero */
.hero {
    padding: 200px 40px 100px;
}

.hero-text {
    font-family: "PP Neue Montreal";
    font-size: clamp(36px, 6vw, 84px);
    line-height: 1.05;
    max-width: 1200px;
    font-weight: 400;
}

.italic {
    font-style: italic;
}

main {
    padding: 0 30px;
}
/* Grid */
.grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 40px;
    padding: 0;
}

.project-card {
    width: 100%;
}

.media-container {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--accent);
    border-radius: 2px;
}

.static-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hover-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}

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

.project-card:hover .hover-video {
    opacity: 1;
}

.project-info {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Footer */
.footer {
    padding: 150px 40px 60px;
    background: #000;
    color:#fff;
}

.footer-cta p {
    font-size: 20px;
    margin-bottom: 20px;
    color: #fff;
}

.email-link {
    font-family: "GT Sectra Fine Book";
    font-size: clamp(40px, 8vw, 60px);
    text-decoration: none;
 
    display: block;
    font-weight: 300;
    color: #fff;
    margin-bottom: 100px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #eee;
    padding-top: 40px;
        color: #fff;
    font-size: 14px;
    opacity: 0.6;
}

.socials a {
    text-decoration: none;
    color: var(--text);
        color: #fff;
    margin-left: 30px;
}

/* Responsive */
@media (max-width: 768px) {
    .grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .navbar {
        padding: 20px;
    }
    .hero {
        padding: 140px 20px 60px;
    }
    .footer {
        padding: 80px 20px 40px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }
    .socials a {
        margin-left: 0;
        margin-right: 20px;
    }
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.grid_third {
    display: grid;
    grid-template-columns: 1fr 30% 30%;
    gap: 20px;
    padding-bottom: 50px;
}

.grid_third .project-card .media-container {
    aspect-ratio: 1/1;
}

.grid_third .project-card .media-container .static-img {
    width: 150%;
}
