html{
    scroll-behavior: smooth;
}


body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9998;
    opacity: 0.12;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='5.50' numOctaves='5' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

body { 
    font-family: 'Inter', sans-serif; 
    background-color: #AD8557;
    color: #111111;
    margin: 0; 
    padding-top: 80px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.desktop-nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 9999;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.logo-img {
    height: 50px;
    width: auto;
    transition: all 0.3s ease-in-out;
    filter: brightness(1);
}

.logo-img:hover {
    transform: scale(1.08);
    filter: brightness(1.2);
}

.nav-item {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 10px 20px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.nav-item:hover {
    background-color: #ffffff;
    color: #000000 !important;
}

.contact-btn {
    border: 1px solid #ffffff;
    margin-left: 15px;
    min-width: 160px;
    cursor: pointer;
    pointer-events: auto !important;
    
}

.contact-btn:hover {
    background: white;
    color: #AD8557;
    transform: translateY(-2px);
}

.contact-btn:active {
    transform: scale(0.95);
}

.hero-section.studio-mode {
    position: relative;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: #AD8557;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    overflow: hidden;
    margin: 0;
}

.hero-text-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.bg-name {
    position: absolute;
    font-size: 10vw;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.12);
    text-transform: uppercase;
    letter-spacing: -2px;
    margin: 0;
    line-height: 1;
}

.name-standing {
    top: 18%;
    left: 8%;
}

.name-crouching {
    top: 38%;
    right: 2%;
    text-align: right;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 1400px;
    height: 90%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    z-index: 2;
    padding-bottom: 15px; 
}

.combined-hero-img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast;
    filter: grayscale(70%);
    transition: filter 0.5s ease-in-out, transform 0.5s ease-in-out;
    position: relative;
    z-index: 2;
}

.hero-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: px; 
    left: 50%;
    transform: translateX(-50%);
    width: 60%;  
    height: 12px; 
    background: radial-gradient(ellipse at center, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0) 75%);
    filter: blur(8px);
    
    z-index: 1;
    pointer-events: none;
    opacity: 0.75;
}

.scroll-arrow {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    z-index: 3;
    opacity: 0.8;
}

.scroll-arrow svg {
    stroke: #ffffff;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translate(-50%, 0); }
    40% { transform: translate(-50%, -10px); }
    60% { transform: translate(-50%, -5px); }
}

.desktop-content-wrapper {
    background-color: #AD8557;
    padding-bottom: 100px;
    position: relative;
    z-index: 2;
}

.about-card-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 50px;
}

.about-card {
    background: rgba(255, 255, 255, 0.20);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 30px;
    padding: 30px;
    display: flex;
    justify-content: center;
    text-align: center;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1); 
}

.about-text h2 {
    color: #8c6a44;
    letter-spacing: 5px;
    margin-bottom: 25px;
}

.placeholder-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #111; 
    max-width: 800px;
}

.about-footer {
    margin-top: 30px;
    font-weight: 900;
    letter-spacing: 3px;
    font-size: 0.7rem;
    color: #8c6a44;
    opacity: 0.6;
}

.release-section {
    padding: 0px 50px;
    background: transparent;
}

.release-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    letter-spacing: 10px;
    font-size: 1.5rem;
    margin-bottom: 60px;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.release-card-desktop {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    padding: 50px;
    color: #ffffff;
    box-shadow: 0 40px 80px rgba(0,0,0,0.3);
}

.release-layout {
    display: flex;
    align-items: center;
    gap: 60px;
}

.desktop-cover {
    width: 300px;
    height: 300px;
    border-radius: 20px;
}

.release-details {
    flex: 1;
}

.next-label {
    color: #AD8557;
    font-weight: 800;
    letter-spacing: 2px;
    font-size: 0.8rem;
}

.release-details h3 {
    font-size: 3rem;
    color: #ffffff;
    margin: 10px 0 30px 0;
    font-weight: 900;
}

.countdown-timer {
    font-family: 'Courier New', monospace;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 40px;
    color: #ffffff;
}

.presave-btn {
    display: inline-flex;
    padding: 20px 50px;
    background: #AD8557 !important;
    color: #ffffff !important;
    font-weight: 900;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s;
    border: none;
}

.presave-btn:hover {
    transform: scale(1.05);
    background: #ffffff !important;
    color: #AD8557 !important;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
}

.desktop-footer {
    background: rgba(140, 106, 68, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    position: relative;
    z-index: 2;
}

.footer-content p {
    margin: 8px 0;
    letter-spacing: 3px;
    font-size: 0.75rem;
    font-weight: 500;
    color: #ffffff;
    opacity: 0.8;
}


.content-placeholder {
    height: auto;
    background: transparent;
}

.nav-right-side {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-release-mini {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-right: 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-release-text {
    display: flex;
    flex-direction: column;
    text-align: right;
}

.nav-release-label {
    font-size: 0.55rem;
    color: #1DB954;
    font-weight: 800;
    letter-spacing: 1px;
}

.nav-release-title {
    font-size: 0.7rem;
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.nav-timer-box {
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    font-weight: 700;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
    padding: 5px 12px;
    border-radius: 4px;
    min-width: 100px;
    text-align: center;
}

.gallery-section {
    padding: 60px 50px;
    background: transparent;
}

.gallery-container {
    max-width: 1000px;
    margin: 0 auto;
}

.gallery-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 40px;
    padding: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.gallery-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
    width: 100%;
}

.slide {
    min-width: 100%;
    height: 500px;
    padding: 0;
    margin-right: 2px;
    margin-left: 2px;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 25px;
}

.gallery-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
}

.dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #ffffff;
    width: 25px;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .release-section {
        padding: 60px 20px;
    }

    .release-layout {
        flex-direction: column !important;
        text-align: center;
        gap: 30px;
    }

    .desktop-cover {
        width: 100%;
        max-width: 260px;
        height: auto;
        margin: 0 auto;
    }

    .release-details h3 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .countdown-timer {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }

    .presave-btn {
        width: 100%;
        display: flex;
        justify-content: center;
        padding: 18px 0;
    }

    .release-card-desktop {
        padding: 40px 20px;
        border-radius: 30px;
    }
}

.nav-item.disabled{
    opacity: 0.3;            
    cursor: default;
    pointer-events: none;
    border-left-color: #555;
}

.link-button.disabled {
    opacity: 0.3;            
    cursor: default;
    pointer-events: none;
    border-left-color: #555;
}

.spotify-desktop-container {
    max-width: 500px;
    margin: 20px auto;
    text-align: center;
}

.spotify-embed-wrapper {
    margin-bottom: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border-radius: 12px;
}

.about-spotify-split {
    padding: 60px 20px;
    display: flex;
    justify-content: center;
}

.split-container {
    display: flex;
    flex-direction: row;
    /* align-items: stretch helyett flex-start, hogy a tetőhöz igazodjanak */
    align-items: flex-start; 
    gap: 50px;
    max-width: 1100px;
    min-height: 450px;
    padding: 40px;
    background: rgba(18, 18, 18, 0.85);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(140, 106, 68, 0.3);
    overflow: hidden;
}

.about-side {
   flex: 1;
    display: flex;
    flex-direction: column;
    /* justify-content: center helyett flex-start, hogy ne tolja le a szöveget középre */
    justify-content: flex-start; 
    min-height: 352px;
}

.about-side h2 {
    color: #8c6a44;
    letter-spacing: 5px;
    margin-bottom: 50px;
    font-size: 2.5rem;
    font-weight: bold;
    text-transform: uppercase;
    -webkit-font-smoothing: antialiased;
}  

.about-side p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #e0d7cd;
}

.future-text {
    font-weight: bold;
    font-size: 1.3rem !important;
    margin-top: 25px;
    color: #fff !important;
}

.spotify-side {
    flex: 0 0 400px;
    margin-top: 80px;
}

@media (max-width: 900px) {
    .split-container {
        flex-direction: column;
        text-align: center;
    }
    .about-side { text-align: center; }
    .spotify-side { width: 100%; max-width: 400px; }
}

.typewriter-wrapper {
    position: relative;
    width: 100%;
}

.ghost-text {
    visibility: hidden; /* Lefoglalja a helyet, de nem látszik */
    pointer-events: none;
    user-select: none;
    line-height: 1.6;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.typewriter-text {
    position: absolute;
    top: 0;
    left: 0;
    display: inline; 
    width: auto;
    max-width: 100%;
    line-height: 1.6;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    word-wrap: break-word;
}