:root {
    --bg-dark: #0a0c10;
    --bg-card: rgba(255, 255, 255, 0.03);
    --primary-gold: #c29d5b;
    --accent-cyan: #4fc3f7;
    --text-white: #f0f0f0;
    --text-dim: #a0a0a0;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --glass-bg: rgba(255, 255, 255, 0.05);
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 700;
}

/* Navigácia - jednoduchý návrat */
.standalone-nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to bottom, rgba(10,12,16,0.8), transparent);
    backdrop-filter: blur(5px);
}

.back-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.back-link:hover {
    opacity: 1;
}

/* Hero Section */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 120%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    transition: transform 0.1s ease-out;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at center, transparent 20%, var(--bg-dark) 90%);
    z-index: 2;
}

.hero-content {
    text-align: center;
    z-index: 10;
    max-width: 900px;
    padding: 2rem;
}

.hero h1 {
    font-size: clamp(3.5rem, 12vw, 7rem);
    margin-bottom: 1rem;
    color: white;
    text-shadow: 0 10px 30px rgba(0,0,0,0.6);
    text-transform: uppercase;
    letter-spacing: -2px;
}

.hero p {
    font-size: 1.2rem;
    color: var(--primary-gold);
    font-weight: 600;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 3rem;
}

/* Glassmorphism */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

/* Sections */
.section {
    padding: 10rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.section-title {
    margin-bottom: 5rem;
    text-align: center;
}

.section-title h2 {
    font-size: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    padding-bottom: 1.5rem;
    position: relative;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 80px; height: 4px;
    background: var(--primary-gold);
}

/* Grid & Cards */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.card {
    padding: 3rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: default;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.step-num {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: rgba(255,255,255,0.05);
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-weight: 800;
}

.step-intro {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: var(--text-white);
    line-height: 1.5;
}

.step-list {
    list-style: none;
    margin-top: auto;
}

.step-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
    color: var(--text-dim);
    line-height: 1.4;
}

.step-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
}

.card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-gold);
}

.card h3 {
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    text-transform: uppercase;
}

/* Timeline */
.timeline { position: relative; padding: 2rem 0; }
.timeline::before {
    content: ''; position: absolute; left: 50%; top: 0; height: 100%; width: 2px;
    background: linear-gradient(to bottom, transparent, var(--primary-gold), transparent);
    transform: translateX(-50%);
}

.timeline-item { margin-bottom: 6rem; width: 50%; position: relative; padding: 0 4rem; }
.timeline-item:nth-child(even) { margin-left: 50%; }
.timeline-content { padding: 2.5rem; }
.timeline-dot {
    position: absolute; right: -12.5px; top: 2.5rem; width: 25px; height: 25px;
    background: var(--primary-gold); border-radius: 50%; box-shadow: 0 0 20px var(--primary-gold);
    z-index: 5;
}
.timeline-item:nth-child(even) .timeline-dot { left: -12.5px; }

/* Discovery Map */
.map-visual {
    width: 100%; height: 700px; border-radius: 24px; overflow: hidden; position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.map-visual img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.8); }
.poi {
    width: 14px; height: 14px; background: var(--accent-cyan); border-radius: 50%;
    position: absolute; cursor: pointer; box-shadow: 0 0 15px var(--accent-cyan);
}
.poi::after {
    content: ''; position: absolute; width: 100%; height: 100%; background: var(--accent-cyan);
    border-radius: 50%; animation: pulse-web 2s infinite;
}

@keyframes pulse-web {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(3.5); opacity: 0; }
}

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

/* Custom Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: #333; border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary-gold); }

@media (max-width: 768px) {
    .timeline::before { left: 30px; }
    .timeline-item { width: 100%; padding-left: 60px; margin-left: 0 !important; }
    .timeline-dot { left: 17.5px !important; }
    .hero h1 { font-size: 3.5rem; }
}
/* Join Us Section */
.join-us-section {
    padding-bottom: 5rem;
}

.join-card {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    overflow: hidden;
    border: 1px solid rgba(194, 157, 91, 0.3) !important;
}

.join-content {
    padding: 5rem;
}

.join-content h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--primary-gold);
}

.join-content p {
    font-size: 1.1rem;
    color: var(--text-dim);
    margin-bottom: 3rem;
    max-width: 600px;
}

.join-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.step {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.step-icon {
    width: 32px;
    height: 32px;
    background: var(--primary-gold);
    color: var(--bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    flex-shrink: 0;
}

.step p {
    margin-bottom: 0;
    font-size: 1rem;
    color: var(--text-white);
}

.join-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-button {
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border-radius: 4px;
}

.cta-button.primary {
    background: var(--primary-gold);
    color: var(--bg-dark);
}

.cta-button.secondary {
    border: 1px solid var(--primary-gold);
    color: var(--primary-gold);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.cta-button.primary:hover {
    background: #d4b47a;
}

.join-image {
    background: #000;
    position: relative;
}

@media (max-width: 968px) {
    .join-card {
        grid-template-columns: 1fr;
    }
    .join-image {
        height: 300px;
        order: -1;
    }
    .join-content {
        padding: 3rem 2rem;
    }
}

/* Refined Join Us Section */
.join-us-section {
    padding: 15rem 2rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

.join-bg-full {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1;
}

.join-bg-full img {
    width: 100%; height: 100%; object-fit: cover;
    opacity: 0.4;
    filter: blur(2px) brightness(0.7);
}

.join-overlay-gradient {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, var(--bg-dark), transparent 20%, transparent 80%, var(--bg-dark));
    z-index: 2;
}

.join-container-premium {
    position: relative;
    z-index: 10;
    max-width: 1000px;
    width: 100%;
    padding: 6rem;
    text-align: center;
    border: 1px solid rgba(194, 157, 91, 0.2);
    background: rgba(10, 12, 16, 0.6);
    backdrop-filter: blur(15px);
    border-radius: 2px;
}

.section-logo-top-right {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 60px;
    opacity: 0.4;
}

.join-title-premium {
    font-size: 1rem;
    letter-spacing: 5px;
    color: var(--primary-gold);
    text-transform: uppercase;
    margin-bottom: 2rem;
    font-weight: 600;
}

.join-text-premium {
    font-size: 1.8rem;
    font-style: italic;
    line-height: 1.8;
    color: var(--text-white);
    margin-bottom: 4rem;
    font-family: var(--font-heading);
}

.join-actions-premium {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.btn-premium {
    padding: 1.5rem 3.5rem;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: all 0.4s;
    border-radius: 0;
}

.btn-gold {
    background: var(--primary-gold);
    color: var(--bg-dark);
    box-shadow: 0 10px 30px rgba(194, 157, 91, 0.2);
}

.btn-outline {
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--text-white);
}

.btn-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

.btn-gold:hover {
    background: #d4b47a;
}

.btn-outline:hover {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
}

@media (max-width: 768px) {
    .join-container-premium { padding: 3rem 2rem; }
    .join-text-premium { font-size: 1.4rem; }
    .join-actions-premium { gap: 1rem; }
    .btn-premium { width: 100%; }
}

/* Dominant Nav Logo */
.nav-logo {
    height: 60px;
    opacity: 1;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 15px rgba(194,157,91,0.2));
}

.nav-logo-link:hover .nav-logo {
    transform: scale(1.05);
    filter: drop-shadow(0 0 25px rgba(194,157,91,0.4));
}

.standalone-nav {
    padding: 2rem 3rem;
}

@media (max-width: 768px) {
    .nav-logo { height: 40px; }
    .standalone-nav { padding: 1.5rem 2rem; }
}
