/* ===== Hero Section ===== */
.hero-section {
    position: relative;
    min-height: 100vh;
    margin-top: calc(-1 * var(--navbar-height));
    overflow-x: hidden;
}

/* ===== Hero Main ===== */
.hero-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 60px;
    min-height: 100vh;
    position: relative;
}

/* Globe */
.hero-globe-section {
    flex: 1;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    padding: 20px;
}

#globe-container {
    width: 600px;
    height: 600px;
    position: relative;
    margin: 0 auto;
}

/* Hexagon Icons */
.hexagon-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.hex-icon {
    position: absolute;
    opacity: 0;
    animation: heroFadeInScale 1s ease forwards;
}

.hex-icon.hex-1 {
    top: 15%;
    left: 35%;
    animation-delay: 1.5s;
}

.hex-icon.hex-2 {
    top: 30%;
    left: 70%;
    animation-delay: 1.7s;
}

.hex-icon.hex-3 {
    top: 55%;
    right: 20%;
    animation-delay: 1.9s;
}

.hex-icon.hex-4 {
    bottom: 25%;
    left: 30%;
    animation-delay: 2.1s;
}

.hex-icon.hex-5 {
    bottom: 35%;
    left: 50%;
    animation-delay: 2.3s;
}

.hexagon {
    width: 60px;
    height: 60px;
    background: rgba(0, 212, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 212, 255, 0.4);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: heroFloat 3s ease-in-out infinite;
}

.hexagon:hover {
    background: rgba(0, 255, 0, 0.2);
    border-color: rgba(0, 255, 0, 0.8);
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.4);
    transform: scale(1.1);
}

.hexagon i {
    font-size: 24px;
    color: var(--primary-color);
}

/* Content */
.hero-content-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 80px;
    position: relative;
}

.hero-content-wrapper {
    animation: heroFadeInRight 1s ease 0.8s both;
    max-width: 600px;
}

.hero-title {
    font-family: var(--font-secondary);
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 30px;
    background: linear-gradient(
        135deg,
        var(--primary-color) 0%,
        var(--secondary-color) 50%,
        var(--tertiary-color) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 4px;
    line-height: 1.2;
    text-transform: uppercase;
    animation: heroFadeInDown 1s ease 0.4s both;
}

.hero-description {
    font-family: var(--font-secondary);
    font-size: 17px;
    line-height: 1.8;
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 2px;
    max-width: 600px;
}

/* Pagination */
.hero-pagination {
    display: flex;
    gap: 12px;
    margin-top: 40px;
    animation: heroFadeInRight 1s ease 1.2s both;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary-color);
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.6);
}

.dot:hover {
    background: rgba(0, 255, 0, 0.6);
}

/* ===== Keyframes ===== */
@keyframes heroFadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroFadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes heroFadeInScale {
    from {
        opacity: 0;
        transform: scale(0.5);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes heroFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* ===== Responsive ===== */
@media (max-width: 1200px) {
    .hero-main {
        flex-direction: column;
        justify-content: center;
        padding: 0 40px;
    }

    .hero-content-section {
        padding-left: 0;
        text-align: center;
        margin-top: 40px;
    }

    .hero-content-wrapper {
        max-width: 100%;
        margin: 0 auto;
    }

    .hero-description {
        max-width: 100%;
    }

    #globe-container {
        width: 400px;
        height: 400px;
    }

    .hero-pagination {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
    }

    .hero-main {
        flex-direction: column;
        justify-content: center;
        padding: 40px 20px;
        height: auto;
        min-height: auto;
        gap: 30px;
    }

    .hero-globe-section {
        height: auto;
        margin-bottom: 0;
        width: 100%;
        padding: 10px;
    }

    .hero-content-section {
        padding-left: 0;
        text-align: center;
    }

    .hero-title {
        font-size: 32px;
        letter-spacing: 2px;
    }

    .hero-description {
        font-size: 14px;
        letter-spacing: 1px;
        max-width: 100%;
    }

    #globe-container {
        width: 320px;
        height: 320px;
    }

    .hexagon-icons {
        display: none;
    }

    .hero-pagination {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-main {
        padding: 30px 16px;
        gap: 20px;
    }

    .hero-globe-section {
        padding: 5px;
    }

    #globe-container {
        width: 280px;
        height: 280px;
    }

    .hero-title {
        font-size: 26px;
        letter-spacing: 1px;
        line-height: 1.3;
    }

    .hero-description {
        font-size: 14px;
        line-height: 1.6;
        letter-spacing: 0.5px;
    }
}
