@font-face {
    font-family: Gotham-bold;
    src: url('../assets/fonts/GothaBol.woff') format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: Gotham-bold-italic;
    src: url('../assets/fonts/GothaBolIta.woff') format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: Gotham-book-italic;
    src: url('../assets/fonts/GothaBooIta.woff') format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: Gotham-light;
    src: url('../assets/fonts/GothaLig.woff ') format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: Gotham-light-italic;
    src: url('../assets/fonts/GothaLigIta.woff') format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: Gotham-medium;
    src: url('../assets/fonts/GothaMed.woff') format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: Gotham-medium-italic;
    src: url('../assets/fonts/GothaMedIta.woff') format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: Gotham-book;
    src: url('../assets/fonts/GothaBoo.woff') format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

.gotham-bold {
    font-family: 'Gotham-Bold', sans-serif;
}

.gotham-book {
    font-family: 'Gotham-Book', sans-serif;
}

.gotham-medium {
    font-family: 'Gotham-Medium', sans-serif;
}

.gotham-light {
    font-family: 'Gotham-Light', sans-serif;
}

.gotham-light-italic {
    font-family: 'Gotham-Light-Italic', sans-serif;
}

.gotham-medium-italic {
    font-family: 'Gotham-Medium-Italic', sans-serif;
}

.gotham-book-italic {
    font-family: 'Gotham-Book-Italic', sans-serif;
}

.gotham-bold-italic {
    font-family: 'Gotham-Bold-Italic', sans-serif;
}

body {
    font-family: 'Gotham-Book', sans-serif;
    background-color: #05060a;
    color: #f5f5f5;
}

a {
    text-decoration: none;
}

img {
    display: block;
}

/* Navbar */
.tk-navbar {
    position: relative;
    backdrop-filter: blur(16px);
    margin-top: 50px;
    padding: 0 38px 0 80px;
    z-index: 1;
}

.tk-navbar .tk-nav-links .nav-link {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #ffffff;
}

.tk-navbar .tk-menu-btn {
    border: none;
    padding: 0;
    width: 26px;
    height: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: transparent;
}

.tk-navbar .tk-menu-line {
    height: 2px;
    width: 100%;
    background-color: #ffffff;
    display: block;
}

.tk-navbar .tk-logo {
    width: 180px;
}

.tk-navbar .nav-link {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.tk-navbar .nav-link.active,
.tk-navbar .nav-link:hover {
    color: #ffffff;
}

/* Fullscreen Offcanvas */
.offcanvas-fullscreen {
    height: 100vh !important;
    background: #1b1b1b !important;
}

.offcanvas-header .navbar-brand {
    width: 220px;
}

.tk-nav-link-fs {
    color: #ffffff !important;
    font-size: 30px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
}

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

.navbar-toggler {
    border: none;
    color: #FFF;
}

.tk-hero {
    position: relative;
    min-height: calc(100vh - 72px);
    color: #ffffff;
    padding: 80px 0;
}

.tk-hero-home {
    background: radial-gradient(circle at top left, #2727ff 0, #05060a 55%);
    background-size: cover;
    background-position: center;
}

.tk-hero-about {
    background: radial-gradient(circle at top left, #f97316 0, #05060a 55%);
}

.tk-hero-contact {
    background: radial-gradient(circle at top left, #22c55e 0, #05060a 55%);
}

.tk-title {
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.tk-plus {
    color: #f97316;
}

.tk-hero-text {
    max-width: 600px;
    margin-inline: auto;
}

.tk-eyebrow {
    font-size: 0.8rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: 0.8;
}

/* Scroll button */
.tk-scroll-btn {
    margin-top: 24px;
    border: none;
    background: transparent;
    color: inherit;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.tk-scroll-circle {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    position: relative;
}

.tk-scroll-circle::after {
    content: "";
    position: absolute;
    width: 6px;
    height: 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollDot 1.5s infinite;
}

.tk-scroll-text {
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0.7;
}

@keyframes scrollDot {
    0% {
        transform: translate(-50%, 0);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, 10px);
        opacity: 0;
    }
}

/* Sections */
.tk-section {
    padding: 80px 0;
}

.tk-section-light {
    background-color: #0b0c12;
    color: #f5f5f5;
}

/* Cards & content */
.tk-image-card {
    border-radius: 20px;
    overflow: hidden;
    background: #111320;
}

.tk-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tk-cta-card {
    background: #111320;
    border-radius: 24px;
}

/* FOOTER MINIMAL */
.tk-footer {
    background-color: #ffffff;
    padding: 70px 0 32px;
    color: #3a3a3a;
}

.tk-footer-link {
    color: #666666;
    text-decoration: none;
}

.tk-footer-link:hover {
    text-decoration: underline;
}

.tk-footer-social a {
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #777777;
    margin-left: 12px;
}

.home-page .tk-footer-social a:hover {
    color: #111111;
}

/* Social links */
.tk-social-links a {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    opacity: 0.75;
}

.tk-social-links a:hover {
    opacity: 1;
}

/* Buttons */
.tk-btn-primary {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.8rem;
}

/* Responsive tweaks */
@media (max-width: 767.98px) {
    .tk-navbar {
        padding: 0 12px 0;
        margin-top: 30px;
        z-index: 1;
    }

    .navbar-toggler {
        padding: 4px 0 4px 8px;
    }

    button.navbar-toggler:focus, button.navbar-toggler:hover, button.navbar-toggler:active, button.navbar-toggler:visited {
        box-shadow: none;
    }

    .offcanvas-header .navbar-brand {
        width: 180px;
    }

    .tk-nav-link-fs {
        font-size: 20px;
    }

    .tk-footer {
        padding: 20px 0 10px;
    }
}