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

body {
    font-family: "fractul-variable", sans-serif;
    background-color: #000;
    color: #fff;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    height: 80px;
    box-sizing: border-box;
}

.nav-left {
    display: flex;
    gap: 30px;
    flex: 1;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
}

.nav-left a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: lowercase;
    transition: opacity 0.3s ease;
    line-height: 1;
    display: flex;
    align-items: center;
}

.nav-left a:hover {
    opacity: 0.7;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    height: 100%;
}

.logo-image {
    height: 44px;
    width: auto;
    object-fit: contain;
    background: transparent;
    mix-blend-mode: normal;
    display: block;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    justify-content: flex-end;
    height: 100%;
}

.social-icons {
    display: flex;
    gap: 15px;
    align-items: center;
    height: 100%;
}

.social-icons a {
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    line-height: 1;
}

.social-icons a:hover {
    opacity: 0.7;
}

/* Mobile footer - hidden on desktop */
.mobile-social-footer {
    display: none;
}

/* Main Content */
.main-content {
    width: 100%;
    min-height: 100vh;
    position: relative;
    margin-top: 80px;
}

.hero-section {
    position: relative;
    width: 100%;
    height: calc(100vh - 80px);
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(60px, 15vw, 180px);
    font-weight: 700;
    font-style: italic;
    color: rgba(255, 255, 255, 0.03);
    letter-spacing: 15px;
    z-index: 2;
    pointer-events: none;
    font-family: "fractul-variable", sans-serif;
    text-transform: none;
    text-align: center;
    line-height: 1.2;
    white-space: pre-line;
    word-spacing: normal;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.95);
}

@media (max-width: 768px) {
    .hero-image {
        object-fit: contain;
        object-position: center;
    }
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .header {
        padding: 15px 20px;
        flex-wrap: wrap;
        height: auto;
        min-height: 80px;
    }

    .logo {
        order: 1;
        position: static;
        transform: none;
        width: 100%;
        justify-content: center;
        margin-bottom: 15px;
        height: auto;
    }

    .logo-image {
        height: 33px;
    }

    .nav-left {
        gap: 20px;
        order: 2;
        width: 100%;
        justify-content: center;
        margin-bottom: 10px;
    }

    .nav-left a {
        font-size: 12px;
    }

    .nav-right {
        display: none;
    }

    .social-icons {
        gap: 12px;
    }

    .social-icons a {
        font-size: 14px;
    }

    /* Mobile footer for social icons */
    .mobile-social-footer {
        display: flex !important;
        justify-content: center;
        align-items: center;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 20px;
        background-color: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(10px);
        z-index: 1000;
    }

    .mobile-social-footer .social-icons {
        gap: 20px;
    }

    .mobile-social-footer .social-icons a {
        color: #fff;
        font-size: 18px;
        text-decoration: none;
        transition: opacity 0.3s ease;
    }

    .mobile-social-footer .social-icons a:hover {
        opacity: 0.7;
    }

    .main-content {
        margin-top: 120px;
    }

    .hero-section {
        height: calc(100vh - 100px);
        min-height: 500px;
    }

    .overlay-text {
        font-size: clamp(40px, 20vw, 100px);
        letter-spacing: 10px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 12px 15px;
        height: auto;
        min-height: 80px;
    }

    .logo {
        margin-bottom: 12px;
    }

    .logo-image {
        height: 27.5px;
    }

    .nav-left {
        gap: 15px;
    }

    .nav-left a {
        font-size: 11px;
    }

    .logo-line1,
    .logo-line2 {
        font-size: 12px;
    }

    .social-icons {
        gap: 10px;
    }

    .social-icons a {
        font-size: 13px;
    }

    .overlay-text {
        font-size: clamp(30px, 25vw, 80px);
        letter-spacing: 6px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.hero-section {
    animation: fadeIn 1s ease-in;
}