
@font-face {
  font-family: "CustomFont";
  src: url("./assets/fonts/LT_55850.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}


@font-face {
  font-family: "PP Neue Montreal";
  font-style: normal;
  font-weight: 400;
  src: local("PP Neue Montreal"),
    url("https://fonts.cdnfonts.com/s/100431/ppneuemontreal-book.woff") format("woff");
}
@font-face {
  font-family: "PP Neue Montreal";
  font-style: normal;
  font-weight: 700;
  src: local("PP Neue Montreal"),
    url("https://fonts.cdnfonts.com/s/100431/ppneuemontreal-bold.woff") format("woff");
}

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

:root {
    --bg-color: #0a0a0a;
    --text-color: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.6);
    --text-muted: rgba(255, 255, 255, 0.4);
    --accent-color: #ffffff;
    --border-color: rgba(255, 255, 255, 0.1);
    --hover-color: rgba(255, 255, 255, 0.1);
}

body {
    font-family: "PP Neue Montreal", sans-serif;
    background: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
    min-height: 100vh;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    position: relative;
}

body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    mix-blend-mode: difference;
    z-index: 1;
}

body::before {
    content: "";
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: transparent url("http://assets.iceable.com/img/noise-transparent.png") repeat 0 0;
    background-size: 300px 300px;
    animation: noise-animation 0.3s steps(5) infinite;
    opacity: 0.3;
    will-change: transform;
    z-index: 1;
    pointer-events: none;
}

@keyframes noise-animation {
    0% {
        transform: translate(0, 0);
    }
    10% {
        transform: translate(-2%, -3%);
    }
    20% {
        transform: translate(-4%, 2%);
    }
    30% {
        transform: translate(2%, -4%);
    }
    40% {
        transform: translate(-2%, 5%);
    }
    50% {
        transform: translate(-4%, 2%);
    }
    60% {
        transform: translate(3%, 0);
    }
    70% {
        transform: translate(0, 3%);
    }
    80% {
        transform: translate(-3%, 0);
    }
    90% {
        transform: translate(2%, 2%);
    }
    100% {
        transform: translate(1%, 0);
    }
}

body.loaded {
    opacity: 1;
}


.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    pointer-events: none;
    mix-blend-mode: difference;
    color: white;
}

.header > div {
    pointer-events: auto;
}

.logo-text {
    font-family: "PP Neue Montreal", sans-serif;
    font-weight: 700;
    font-size: 2rem;
    text-transform: uppercase;
    color: inherit;
    letter-spacing: 0.05em;
}

.social-section {
    text-align: right;
}

.social-section h3 {
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--text-muted);
    font-family: "PP Neue Montreal", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.social-section ul {
    list-style: none;
}

.social-section li {
    margin-bottom: 0.5rem;
}

.social-section a {
    color: inherit;
    text-decoration: none;
    font-size: 1rem;
    font-family: "PP Neue Montreal", sans-serif;
    font-weight: 400;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-end;
}

.social-section a:hover {
    color: var(--text-secondary);
    transform: translateX(-3px);
}


.main-container {
    padding: 8rem 2rem 2rem;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}


.profile-section {
    text-align: center;
    margin-bottom: 4rem;
}

.profile-image {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--border-color);
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.profile-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.profile-name {
    font-family: "CustomFont", serif;
    font-size: 6rem;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 0.5rem;
    color: inherit;
}

.profile-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-weight: 400;
}

.profile-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 400px;
    margin: 0 auto;
}


.section-title {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
    text-align: center;
    mix-blend-mode: difference;
}


.links-section {
    margin-bottom: 3rem;
}

.link-item {
    display: flex;
    align-items: center;
    padding: 0.5rem;
    margin-bottom: 1.5rem;
    background-color: #f5f5f5;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 140px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    justify-content: space-between;
    z-index: 5;
}

.link-item::before {
    display: none;
}

.link-item:hover {
    background-color: #ffffff;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.link-item:hover .link-icon img {
    transform: scale(1.1);
}

.link-item:hover .link-title {
    transform: translateX(10px);
}

.link-item:hover .link-subtitle {
    transform: translateX(-5px);
}

.link-item:hover .link-number {
    transform: scale(1.2);
}

.link-number {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    font-size: 1.4rem;
    opacity: 0.7;
    color: #000000;
    font-weight: 400;
}

.link-icon {
    font-size: 1.2rem;
    margin-right: 1.5rem;
    width: 130px;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 8px;
    color: var(--text-secondary);
    font-weight: 300;
    overflow: hidden;
    position: relative;
}

.link-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.link-title {
    position: absolute;
    bottom: 2.5rem;
    right: 0.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    transition: transform 0.3s ease;
}

.link-subtitle {
    position: absolute;
    bottom: 0.5rem;
    right: 0.5rem;
    font-size: 0.9rem;
    color: #666666;
    font-weight: 400;
    line-height: 1.4;
    text-transform: uppercase;
    transition: transform 0.3s ease;
}

.link-number {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    font-size: 1.4rem;
    opacity: 0.7;
    color: #000000;
    font-weight: 400;
    transition: transform 0.3s ease;
}


.link-content {
    flex: 1;
}


.link-arrow {
    display: none;
}


.social-links-section {
    margin-bottom: 3rem;
}

.social-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    padding: 0.5rem;
    margin-bottom: 0;
    background-color: #f5f5f5;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 60px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    justify-content: flex-start;
    text-decoration: none;
    color: #000000;
}

.social-link::before {
    display: none;
}

.social-link:hover {
    background-color: #ffffff;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.social-link:hover .social-name {
    transform: translateX(5px);
}

.social-link:hover .social-handle {
    transform: translateX(-3px);
}

.social-link:hover .social-number {
    transform: scale(1.2);
}

.social-number {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    font-size: 1.2rem;
    opacity: 0.7;
    color: #000000;
    font-weight: 400;
    transition: transform 0.3s ease;
}

.social-icon {
    font-size: 1rem;
    margin-right: 1rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 6px;
    color: #000000;
    font-weight: 500;
    overflow: hidden;
    position: relative;
}

.social-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    transition: transform 0.3s ease;
}

.social-handle {
    font-size: 0.9rem;
    color: #666666;
    font-weight: 400;
    line-height: 1.4;
    text-transform: uppercase;
    transition: transform 0.3s ease;
}


.contact-section {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    padding: 0.5rem;
    margin-bottom: 0.5rem;
    background-color: #f5f5f5;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 50px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    justify-content: flex-start;
    color: #000000;
}

.contact-item:hover {
    background-color: #ffffff;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-item:hover .contact-title {
    transform: translateX(5px);
}

.contact-item:hover .contact-subtitle {
    transform: translateX(-3px);
}

.contact-item:hover .contact-number {
    transform: scale(1.2);
}

.contact-number {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    font-size: 1.2rem;
    opacity: 0.7;
    color: #000000;
    font-weight: 400;
    transition: transform 0.3s ease;
}

.contact-icon {
    font-size: 1rem;
    margin-right: 1rem;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 6px;
    color: #000000;
    font-weight: 500;
    overflow: hidden;
    position: relative;
}

.contact-title {
    font-size: 1rem;
    font-weight: 700;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    transition: transform 0.3s ease;
}

.contact-subtitle {
    font-size: 0.8rem;
    color: #666666;
    font-weight: 400;
    line-height: 1.4;
    text-transform: uppercase;
    transition: transform 0.3s ease;
}

.contact-text {
    font-size: 0.95rem;
    color: #000000;
    font-weight: 400;
}


.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem 2rem;
    text-align: center;
    z-index: 1000;
}

.footer-text {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-family: "PP Neue Montreal", sans-serif;
}


.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0 2rem;
    pointer-events: none;
    z-index: 2;
}

.grid-overlay-inner {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.grid-line {
    background: rgba(255, 255, 255, 0.08);
    width: 1px;
    height: 100%;
}


@media (max-width: 768px) {
    .header {
        padding: 1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .social-section {
        text-align: left;
    }

    .main-container {
        padding: 6rem 1rem 2rem;
    }

    .profile-image {
        width: 150px;
        height: 150px;
    }

    .profile-name {
        font-size: 6rem !important;
    }

    .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .profile-name {
        font-size: 5rem !important;
    }

    .link-item {
        padding: 1rem;
    }

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